Use mathematical induction (and proof by division into cases) to show that any postage of at least 12 cents can be obtained using 3 cent and 7 cent stamps.
So for this I understand that it can be solved using induction without a strong hypothesis.
Base cases:
$$ n = 12 : 3*4 + 7*0$$ $$ n = 13 : 3*2 + 7*1$$ $$ n = 14 : 3*0 + 7*2$$
Induction hypothesis: Assume for some $k>14$ that $k = 3a + 7b$ for $a, b \in Z$.
Induction step: We will show that $k + 1$ can be made up of 3 and 7 cent stamps.
$$k+1 = 3a + 7b + 1$$ $$k+1 = 3a + 7b + 7 -6$$ $$k+1 = 3a - 6 + 7b + 7$$ $$k+1 = 3(a-2) + 7(b+1)$$
So when $a > 2$ we can make $k + 1$ stamps.
Is it at this point that I need to also clarify when $a = 1$ and $a = 0$ that other cases of $k$ will hold as well? Have I already proven my original statement? Or is this covered because I have shown the pattern in the base cases?
Simplest version: [Induction by $n+3$]
It holds for $n=12,13,14$ as you already showed. If it holds for $n$, then $$n=3a+7b$$ $$n+3=3(a+1)+7b$$
Therefore it also holds for $n+3$. So, it holds for all $n\geq12$.
$$ \\ $$
$$ \\ $$
Different version: [Induction by $n+1$]
Assume it holds for $n$, and $a\geq2,b\geq1\text{ or }a\geq0,b\geq2\text{ or }a\geq4,b\geq0$ holds, then $$n=3a+7b\quad (a\geq2,b\geq1\text{ or }a\geq0,b\geq2\text{ or }a\geq4,b\geq0)$$ i) If $a\geq2,b\geq1$, $$n+1=3(a-2)+7(b+1)\quad (a-2\geq0,b+1\geq2)$$ ii) If $a\geq0,b\geq2$, $$n+1=3(a+5)+7(b-2)\quad (a+5\geq4,b-2\geq0)$$ iii) If $a\geq4,b\geq0$, $$n+1=3(a-2)+7(b+1)\quad (a-2\geq2,b+1\geq1)$$
Therefore it also holds for $n+1$ and still $a\geq2,b\geq1\text{ or }a\geq0,b\geq2\text{ or }a\geq4,b\geq0$ holds.
So, it holds for all $n\geq12$.