7

I've come across this problem: $$ S=\sum_{i=0}^{\infty}2^i \\ S= 1+ 2\sum_{i=0}^{\infty}2^i \\ S=1+2S \\ S=-1 $$ I know that you cannot rearrange this series because it is not absolutely convergent, but that seems to only happen from step 3 to 4 and maybe from step 1 to 2, but i am not sure about this. What might be happening from step 1 to 2 is that the distributive law doesn't hold for infinite series like this, but I'm not sure. I found this about it, that leads me to believe otherwise though. So the stuff that happens from step 3 to 4 is definitely wrong, but i want to know, whether the steps before it are allowed or not.

Blue
  • 75,673
Deedit
  • 73
  • What does it mean to multiply a divergent series by 2? – Mark Saving Dec 17 '21 at 19:41
  • You have $\infty = 1+\infty$, does it imply that $\infty = -1$? – Mario G Dec 17 '21 at 19:42
  • 6
    You can’t use this to prove the series converges, but you can use it to prove “If this series converges, then it’s value is $-1.$” Another way to see that, informallly, is that $1+S=2S$ if $S=\pm\infty.$ So you can’t do the last step if you don’t know the series converges. – Thomas Andrews Dec 17 '21 at 19:43
  • 4
    Do you know $p$-adic numbers? Your series converges in the field of $2$-adic numbers and indeed the sum is equal to $-1$. – WhatsUp Dec 17 '21 at 19:47
  • You may indeed write anything you want. Whether it’s true, or even meaningful, is another question. – Lubin Dec 17 '21 at 20:32

3 Answers3

4

Actually, this is a perfectly valid proof that if this series converges, then its value must be $-1$. (As also pointed out by Thomas Andrews in the comments.)

It turns out, however, that the premise "this series converges" is false. Therefore, the truth of this statement turns out to not be very useful.

  • 1
    Well, in one contexts - $2$-adic numbers - it does converge (and to $-1.$) But yes, in the real numbers, it doesn’t converge. – Thomas Andrews Dec 17 '21 at 19:57
3

As Mark raised in the comments, doing any sort of arithmetic with divergent series is meaningless, we often do arithmetic with limits and then justify why it was fine after the fact by showing they were convergent, another example of this going wrong:
$$\lim_{n\to\infty} 1 = \lim_{n\to\infty} n\cdot\frac{1}{n}=\lim_{n\to\infty} n\lim_{n\to\infty} \frac{1}{n}=\lim_{n\to\infty} n \cdot 0=0$$ Which is obviously false, and the problem is that $n$ is divergent.

razivo
  • 2,205
2

In mathematics, it is not whether something is allowed or not. Rather, everything is based on logic and logically precise definitions.

$\sum_{k=0}^∞ f(k)$ is defined as $\lim_{n\overset{∈ℕ}→∞} \sum_{k=0}^n f(k)$. If the limit exists, then the sum exists (and is said to converge). Otherwise the sum is also undefined (and is said to diverge). Of course, you also need the precise definition of the limit. With that and the basic properties of limits (which you also need to know), it is obvious that $\sum_{k=0}^∞ (c·f(k)) = c·\sum_{k=0}^∞ f(k)$ (or both sides are undefined) for any constant $c$, because $\lim_{n\overset{∈ℕ}→∞} \sum_{k=0}^n (c·f(k)) = \lim_{n\overset{∈ℕ}→∞} \big( c · \sum_{k=0}^n f(k) \big) = c · \lim_{n\overset{∈ℕ}→∞} \sum_{k=0}^n f(k)$. Make sure you understand that this works because scaling commutes with a finite summation and with limits.

Thus if you use "$E=F$" to denote that either $E$ and $F$ are the same object or that both $E,F$ are undefined (and you understood what I said above), then all the steps except the last one are in fact okay. However, it is best to restrict even those steps to the case where the equalities are between well-defined objects, unless you are absolutely certain of what you are doing. This is because any undefined values propagate and do not satisfy the basic arithmetic properties. In particular, if $S$ is undefined then $S-S$ is not $0$ but rather is also undefined. This also explains why at the end you cannot get from $S = 1+2S$ to $0 = 1+S$.

Once you fully grasp the above explanation, it may be of interest to you to know that in (advanced) real analysis we frequently use the affinely extended reals which is essentially $ℝ$ with positive and negative infinity added. Some arithmetic operations on the extended reals are still undefined in some cases, such as $(∞-∞)$. But there are significant advantages especially once you go on to measure theory. For instance, every infinite sum of non-negative terms now has a value, which may be $∞$. In this setting, all the steps except the last are actually correct and the expressions involved are actually well-defined.

The bottom-line is that you must be absolutely clear about what you mean by any expression that you write, otherwise it may very well be meaningless.

user21820
  • 57,693
  • 9
  • 98
  • 256