I'm looking for a solid explanation to grow in intuition for strong induction after having a decent foundation in ordinary induction. For example, The proof by induction for "Prove by induction for each $n \in \mathbb{N}$, $3$ divides $4^n$" is as follows.
We proceed by induction.
For $n \in \mathbb{N}$ let $P(n)$ be the statement $3|4^n-1$.
Basis: $n = 1$, $P(1)$ means $3|4^1-1$ which is logically equivalent to $3|3$, which is true.
Inductive Step: Let $n \in \mathbb{N}$ and $P(n)$ be true.
[We want to show that $3|4^{n+1} - 1$ is true.]
Now:
$4^n+1 - 1$
$= 4\cdot 4^n - 1$
$= (3+1)4^n - 1$
$= (3\cdot 4^n)+(4^n-1)$ [Inductive Hypothesis]
Since $3\cdot 4^n$ is divisible by $3$ [it has a factor of $3$] and $4^n-1$ is divisible by $3$ [by the inductive hypothesis] then their sum is also divisible by $3$. Thus, $P(n+1)$ is true.
Thus, since the base case and inductive step are true, $P(n)$ is true i.e. $\forall n \in \mathbb{N}: 3|4^n-1$.
I know the principle of strong mathematical induction can be explained in a similar way that the ordinary principle of mathematical induction is explained. How can I "piggyback" off of this simple example to connect the dots to strong induction.
Would the first step be to define a new sentence, say $Q(n)$, as $P(1),P(2),\ldots,P(n)$ are all true?
Your explanation makes a lot of sense. I was under the impression we could expand ordinary induction proofs to a strong induction proof but, as you said, without the proper proposition that doesn't work.
I'm going to tinker with that proof to get a more tangible understanding of what you're talking about. Thanks for informative reply.
– kr1tzy Mar 29 '17 at 04:31