How to show that every number between 0 and 1 has a unique binary representation, with infinite digits after the dot?
I can use induction to prove that for any integer $m \geq 1$, there exists $n \in \mathbb N \cup\{0\}$, such that, $$m = \sum_{k=0}^n a_k2^k$$ where $a_k \in\{0,1\}$
This will define which bits in my binary representation are '0' and which are '1'. For example, $9 = 2^3 + 2^0$ so its binary representation is: $1001$.
But, what to do with fractions like: $x=0.635$. How do I calculate the binary representation of this and how do I show it is unique (when using infinite-after-the-dot representationa)?
Thanks
edit: Thank you for your corrections and comments. I corrected: $m \geq 1$, and every fraction $x \in (0,1]$ has a unique binary representation with infinite digits after the dot. So, for example, using basis 10, $1=0.9999999.....$. Also note that my original claim is for every integer $m \geq 1$ So this one is correct I think