Thread: Why .9r = 1
View Single Post
Old 10-16-2004, 10:04 AM   #16 (permalink)
Rekna
Junkie
 
Quote:
Originally Posted by a-j
Here is another way
.9r = .999999999... = 9*(.1111111111...)
.9r = 9*sum(i=1 to inf, (.1)^i) <= read the sum of i=1 to infinity of (.1)^i

sum(i=1 to inf, (.1)^i) = an infinite geometric sum (.1^0 + .1^1 + .1^2 + .1^3... ) - 1
The sum (.1^0 + .1^1 + .1^2 + .1^3... ) is well known to converge to 1/(1-r) where r = .1, so,
.9r = 9*(1/(1-.1) - 1)
.9r = 9*(1/.9 - 1)
.9r = 9*(1/(9/10) - 1)
.9r = 9*(10/9 - 9/9)
.9r = 9*(1/9)
.9r = 1

Thats the geometric series proof I mentioned
Rekna is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46