Reference image containing the statement
Can someone please explain the below text and what it means in simple words? From what I understood it means that if x=m/2^n and if m is odd then x can be represented in binary in two ways? But how is that possible. I tried with 1/2 but how can 0.5 be represented as 0.1 and 0.0111?
Note that the $1$s go on forever. They don't stop after the first three. This is the binary version of the infamous fact that $$ 0.999\cdots = 1 $$ in decimal. (This equation has its own Wikipedia page.)
I cannot see what equation $(2)$ is in your book, but here's a definition of binary representations which is likely equivalent:
For your example, $x = \frac12$, the $0.1$ representation is short for $0.1000\cdots$. The infinite sum is then $$ \sum_{n = 1}^\infty \frac{a_n}{2^n} = \frac12 + 0 + 0 + 0 +\cdots = \frac12. $$ But for the other representation, $0.0111\cdots$, the sum is $$ \sum_{n = 1}^\infty \frac{a_n}{2^n} = 0 + \frac14 + \frac18 + \frac1{16} + \cdots. $$ This is a geometric series which evaluates to = $1/2$, as desired.