I started reading the book Concrete Mathematics 2nd edition and there is a conversion I don't understand(is in page 11 of the book), it says:
Powers of 2 played an important role in our nding the solution, so it's natural to look at the radix 2 representations of $n$ and $J(n)$. Suppose $n$'s binary expansion is
$n = (b_m b_{m-1} ... b_1 b_0)_2$;
that is,
$n = b_m2^m + b_{m-1}2^{m-1} + · · · + b_{1}2 + b_0;$
So far this part is clear to me, is the classic binary notation: $1\cdot 2^0+0\cdot 2^1+1\cdot 2^2+\cdots$
where each $b_i$ is either $0$ or $1$ and where the leading bit $b_m$ is 1. Recalling that $n = 2^m + l$, we have, successively,
$n = (1 b_{m-1} b_{m-2} ... b_1 b_0)_2 ;$
$l = (0 b_{m-1} b_{m-2} ... b_1 b_0)_2 ;$
$2l = (b_{m-1} b_{m-2} ... b_1 b_0 0)_2 ;$
$2l + 1 = (b_{m-1} b_{m-2} ... b_1 b_0 1)_2 ;$
$J(n) = (b_{m-1} b_{m-2} ... b_1 b_0 b_m)_2 :$
These are the inductions I just don't get, I don't see the explanation to those ones and zero values $n$, $L$, $2L$ and $2L+1$
Is it clearer?