1 − 1 + 1 − 1 + · · · = 1/2 ???

It’s called Grandi’s series and Numberphile posted a video on it today. Mind blown and I’m not entirely convinced. First he shows how the infinite series can be shown to be equal to 0. Then he shows how it’s equal to 1. And he finishes up by showing how the best answer is 1/2 and leads into a description of Thomson’s lamp. As an engineer, this seemed the most intuitive to me.

That series is divergent so there’s no one particular sum which we can say is any better an answer than another one. The 1/2 answer is called the Cesaro sum which, as you note, is just one possible way of doing it.

An interesting variant would be if you took the series:

1 - 1 + 1 - 1 + 1 - 1 + 1 - 1 + 1 - 1 + 1 - 1 + 1 …

and added parentheses as follows:

1 - (1 + 1) - (1 + 1) - (1 + 1) - (1 + 1) - (1 + 1) - (1 + 1) …

or:

1 - 2 - 2 - 2 - 2 - 2 - 2 …

so the series works out to negative infinity

Thanks. So basically, there is no one true answer. It’s been a long time since I studied infinite series (way back in second semester calculus) but I remember that it’s hard to draw definitive conclusions from divergent series.

In case it needs to be pointed out, this isn’t in any sense equivalent to the original series, since (by the distributive law) - (1 + 1) would be equivalent to - 1 - 1, not - 1 + 1.

As you know, the series 1 + r + r[sup]2[/sup] + r[sup]3[/sup] + … is equal to 1/(1 - r) when |r| < 1. Through the magic of complex analysis, we can say in a very reasonable sense that that formula holds for any r other than one. If you plug in -1, you get 1/2. The same logic shows that 1 + 2 + 4 + 8 + 16 + … = -1.

Since we’re already in Mundane instead of GQ, and since the topic is improper summations, perhaps I can hijack to publish (for the first time ever!) my “Proof” of the Collatz Conjecture. :smiley: :smack: :confused:
Let me stipulate up-front that I’m sure the proof is invalid, though less sure precisely why.

The Collatz function operates on odd integers (2x+1) but I’ve represented each such with (x) to work with all integers, rather than just the odds. Thus the sequence
   11 → (34 -->) 17 → (52 → 26 -->) 13 → (40 → 20 → 10 -->) 5 → (16 → 8 → 4 → 2) 1 → 1
becomes
   5 → 8 → 6 → 2 → 0 → 0

We work with multisets (bundles), with “+” denoting multiset union. B(x) denotes the multiset of integers that map to x, or 4x+1, or 16x+5, or …
Because our x=2 corresponds with ordinary 5, B(2) contains all integers that “arrive” at any of 5, 21, 85, …

Define B(x) as follows
   If x is a positive integer, then
     B(x) = {x} + B((2x-1)/3) + B(4x/3) + B(4x+2)
   If x is not a positive integer, then
     B(x) = null-set
We shall prove B(2) = {1,2,3,4,…} = 1 and claim that this is equivalent to the Collatz Conjecture.

Consider the B(x) equations, for x >= 1:
  B(1) = {1} + B(6)
  B(2) = {2} + B(1) + B(10)
  B(3) = {3} + B(4) + B(14)
  B(4) = {4} + B(18)
  B(5) = {5} + B(3) + B(22)
  B(6) = {6} + B(8) + B(26)

Sum all these equations to get
   sum (B(x)) = {1,2,3,…} + sum (B(x) except B(2))
It is easily verified that the right side of this sum contains exactly one instance of each B(x) on the left-side except B(2). Subtract “sum B except B(2)” from each side to get
   B(2) = {1,2,3,…}

Q.E.D.