Using induction, prove for every $n \in \mathbb {N}$, there exist a number of $n$ digits $M_n$ = $a_1$, $a_2$,... $a_n$ with $a_i \in \{2,3\}$ such that $2^n$ divides $M_n$.
I understand how induction works, with proving the base step and then assuming the next possible entry after that, but what exactly is the base step in this problem? And after the base step, what would my induction step look like?
So far the only induction problems I've worked are relatively straightforward such as $n! \ge 2^n$ for any $n \ge 4$, so if you can, please try to simplify it down to that level of difficulty.
Thanks, and sorry for not placing the entire formula into the title, it wouldn't fit.
The base step want you to give a one digit number $M_1$ having only 2s and 3s as digits, which is a multiple of $2^1 = 2$. Obviously $$M_1 = 2$$ is the only possible solution.
For the induction step, suppose $M_n$ is a $n$-digit multiple of $2^n$, having only 2s and 3s as digits, say $M_n = k2^n$. Now consider the following two possibilities for $M_{n+1}$: $$ A = 2\cdot 10^{n} + M_n $$ and $$ B = 3 \cdot 10^n + M_n $$ both are multiples of $2^n$, namely $$ A = (2 \cdot 5^n + k)2^n, \qquad B = (3 \cdot 5^n + k)2^n $$ if $2 \cdot 5^n +k$ is even, say $2m = 2\cdot 5^n+k$, then $$ A = 2m \cdot 2^n = m2^{n+1}$$ and we are done with $M_{n+1} = A$, otherwise, as $5^n$ is odd, $$ (2 \cdot 5^n+k) + 5^n = 3 \cdot 5^n + k$$ is even, and we are done with $M_{n+1} = B$.