Advertisement
Guest User

Copy and pasted from somewhere

a guest
Mar 23rd, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. The first thing to realize about the system of notation that we use (decimal notation) is that things like the number 357.9 really mean '3*100 + 5*10 + 7*1 + 9/10'. So whenever you write a number in decimal notation and it has more than one digit, you're really implying a sum.
  2.  
  3. So in modern mathematics, the string of symbols 0.9999... = 1 is understood to mean 'the infinite sum 9/10 + 9/100 + 9/1000 + ...'. This in turn is shorthand for 'the limit of the sequence of numbers
  4.  
  5. 9/10,
  6. 9/10 + 9/100,
  7. 9/10 + 9/100 + 9/1000,
  8. ....'
  9. One can show that this limit is 9/10 + 9/100 + 9/1000 ... using Analysis, and a proof really isn't all that hard (we all believe it intuitively anyway); a reference can be found in any of the Analysis texts referenced at the end of this message. Then all we have left to do is show that this sum really does equal 1:
  10.  
  11. Proof: 0.9999... = Sum 9/10^n
  12. (n=1 -> Infinity)
  13.  
  14. = lim sum 9/10^n
  15. (m -> Infinity) (n=1 -> m)
  16.  
  17. = lim .9(1-10^-(m+1))/(1-1/10)
  18. (m -> Infinity)
  19.  
  20. = lim .9(1-10^-(m+1))/(9/10)
  21. (m -> Infinity)
  22.  
  23. = .9/(9/10)
  24.  
  25. = 1
  26.  
  27. Not formal enough? In that case you need to go back to the construction of the number system. After you have constructed the reals (Cauchy sequences are well suited for this case, see [Shapiro75]), you can indeed verify that the preceding proof correctly shows
  28. lim_(m --> oo) sum_(n = 1)^m (9)/(10^n) = 1
  29. 0.9999... = 1
  30.  
  31. Thus x = 0.9999...
  32. 10x = 9.9999...
  33. 10x - x = 9.9999... - 0.9999...
  34. 9x = 9
  35. x = 1.
  36.  
  37. Another informal argument is to notice that all periodic numbers such as 0.9999... = 9/9 = 1 are equal to the digits in the period divided by as many nines as there are in the period. Applying the same argument to 0.46464646... gives us = 46/99.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement