What is the sum of 0.1+ 0.01+ 0.002+ 0.0003+ 0.00005+ 0.000008+ ..., where each term is the n-th Fibonacci number, shifted n places to the right (that is, divided by 10^n)?
(In reply to
Puzzle Solution: Method I by K Sengupta)
Let S = 0.1+ 0.01+ 0.002+ 0.0003+ 0.00005+ 0.000008+ ...
Then,
1000*S = 112 + 0.3 + 0.05 + 0.008 + 0.0013 + ......
20*S = 2 + 0.2 + 0.03 + 0.005 + 0.0008 + ......
or, (1000*S - 20*S) = 110 + (0.1+ 0.01+ 0.002+ 0.0003+ 0.00005+.....)
or, 980*S = 110 + S
or, 979*S = 110
or, S = 110/979 = 10/89
Edited on May 1, 2008, 6:31 am