How do we find out that in the binary number system, how many different numbers can be represented with a certain number of number-places?
For example, suppose we have 8 number places, i.e. a 1's place, a 2's place, a 4's place, a 8's place, a 16's place, a 32's place, a 64's place and a 128's place. How can I find out how many binary numbers can be represented on this number of number places?
Please explain your answer a bit, and please keep the jargon extremely simple.
$n$ places = $2^n$ possibilities.
Proof by induction: $n=1$ clear, $n \rightarrow n+1$: Suppose the claim was true for an $n \in \mathbb N$. Then the possibilities you can achieve with $n+1$ places are
1.) All the possibilities with $n$ places with an additional $1$ at the beginning
2.) All the possibilities with $n$ places with an additional $0$ at the beginning
Hence, you have twice as many possibilities as with $n$ places, therefore $2 \cdot 2^n = 2^{n+1}$ possibilities.