Skip to content

Instantly share code, notes, and snippets.

@oneandoneis2
Created April 20, 2017 17:18
Show Gist options
  • Save oneandoneis2/40b164e6da1a7f449660630c914aab9b to your computer and use it in GitHub Desktop.
Save oneandoneis2/40b164e6da1a7f449660630c914aab9b to your computer and use it in GitHub Desktop.
On the matter of "1 + 1/2 + 1/4 + 1/8..." really is the same as "two"
So, let's assign the answer (whatever it is) to x:
x = 1+ 1/2 + 1/4 + 1/8 + ...
Now let's take away one
x - 1 = 1/2 + 1/4 + 1/8 + ...
Now let's double both sides
2x - 2 = 1 + 1/2 + 1/4 + 1/8 + ...
Hey, that sequence on the right looks familiar! Let's substitute!
2x - 2 = x
And now add 2
2x = x + 2
And now subtract x
x = 2
QED
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment