Let $P(n)$ be any collection of $n$ coins that can be obtained using a combination of $3$ cent and $5$ cent coins. Use strong mathematical induction to prove that $P(n)$ is true for all integers $n \ge 14$.
Basis: $P(14), P(15), P(16)$ can be made up of $5$ cents and $3$ cents.
Inductive Step: $P(14)$ through $P(k)$ are true
$P(k + 1): k + 1 = (k + 1 – 3) + 3$ where if $k \ge 16$, then $(k + 1 – 3) \ge 14$ so $k + 1 \ge 17$, so $P(k + 1)$ is true by hypothesis.
If this makes sense, why do we need to show the basis steps explicitly? Aren't we assuming them to be true in the inductive step?