0

If x = 0.999... (a) -> 10x=9.999... -> 10x-x=(9.999...)-(0.999...) -> 9x = 9 -> x = 9/9 = 1 (b)

x = 0.999 (a) = 1 (b) ?

So... what is the right explanation for this occur? I know that exists a tiny error somewhere... I think that the subtraction of the repeating decimal is incorrect, because the principle of infinity. That's it? Am I right?

Carl Mummert
  • 81,604
Marco
  • 123

4 Answers4

2

There is no error in your logic. Infinity does weird things, and one thing it does is that the infinitely long decimal expression $0.999...$ turns out to be equal to 1. The implication is that there are actually many real numbers with two equivalent decimal expressions for them (so $0.5829999... = 0.583$, for example).

There's a Wikipedia article that goes into ridiculously deep detail on the matter.

ConMan
  • 24,300
2

A priori, real numbers have nothing to do with decimals. If you want to see why this is, look up Peano arithmetic and the precise definition of real numbers.

It just so happens that every real number can be written out in decimal form. However, the decimal expansion of a given real number need not be unique. The real numbers corresponding to the decimal forms

$$1.0000 \cdots$$

$$0.9999 \cdots$$

are the same, as you have observed.

D_S
  • 33,891
2

$$\begin{align} x ~=~& 0.\dot{\overline 9}\\[1ex] ~=~& \lim\limits_{n\to\infty}\sum_{k=1}^n \tfrac 9{10^k} \\[2ex] 10 x ~=~& \lim\limits_{n\to\infty}\sum_{k=1}^n \tfrac {9}{10^{k-1}}\\[1ex] ~=~& 9+ \lim\limits_{n\to\infty}\sum_{k=2}^n \tfrac {9}{10^{k-1}}\\[1ex] ~=~& 9+ \lim\limits_{n\to\infty}\sum_{j=1}^{n-1} \tfrac {9}{10^{j}} \tag{$\star$} \\[1ex] ~=~& 9+ x\\[2ex] 9x~=~&9 \\[1ex] x~=~&1 \end{align}$$


$(\star)$: Assuming the limit of $F(n)$ as $n\to\infty$ exists, then $F(n-1)$ has the same limit.

Graham Kemp
  • 129,094
2

I'll recommend you the best article I know in this subject. Fred Richman's: Is $0.999\dots=1$? [MAA: Mathematics Magazine, $12/1999$].

From the beginning: "Arguing whether $0.999\dots=1$ is a popular sport on the newsgroup sci.math. It seems that people are often too quick to dismiss the idea that these numbers might be different."

The article is interesting because it actually discusses why it is and why it couldn't be. What are the needed tools for it to be. Also, there are amazing references.

EDIT: I also recommend Courant's Differential and Integral Calculus (Chapter 1, Section2). There is a great explanation in there which makes the subject appear less magic that it seems.

Red Banana
  • 23,956
  • 20
  • 91
  • 192