+---+ +---+---+---+---+---+ +---+---+---+---+---+
| 0 | | 0 | 1 | 1 | 1 | 1 | | 1 | 0 | 0 | 0 | 0 | = 0.5_{10}
+---+ +---+---+---+---+---+ +---+---+---+---+---+
It's not always easy to recognize powers of $2$ as we did with $0.5$. As such, when we get a fraction in base $10$ and want to find its binary representation, we could use a fraction multiplication trick. It goes as follows: (1) multiply the fraction by $2$, and discard any integer parts (2) in each step, before discarding it, take note of the integer part of the number: whether it is $0$ or $1$, (3) repeat steps (1) and (2) until the fraction is empty (the fraction part is only zeros.) We will use this method for the next examples.