This question is similar to this question, but they are not the same, so please don't mark it as duplicate.
I am currently reading the Book of proof. There's an example problem on page 188, illustrating the method called Strong induction. The outline for proof by strong induction as follows:
Proposition The statements $S_{1}, S_{2}, S_{3}, S_{4}$,... are all true.
Proof. (Strong induction)
(1) Prove the first statement $S_{1}$. (Or the first several $S_{n}$, if needed.)
(2) Given any integer $k\ge{1}$, prove ($S_{1}\land S_{2}\land S_{3}\land S_{k})\implies S_{k+1}$.
The main difference between strong induction and normal mathematical induction is that is not only uses the item $S_{k}$ to prove that $S_{k+1}$, but it also uses the previous $m$ items ($m\le{k}$).
Then he uses strong induction to prove that $12\mid n^4-n^2$ for any $n\in\mathbb{Z}$.
The proof as follows:
- Say $S_{n}: 12\mid n^4-n^2$
- He prove that $S_{n}$ is true for $S_{1}$ to $S_{6}$
- for $k\ge{6}$, assume $12\mid m^4-m^2$ for $1\le{m}\le{k}$.($S_{1}...S_{k}$ is true). We want to infer from $12\mid (k-5)^4-(k-5)^2$ to $12\mid (k+1)^4-(k+1)^2$. He set $k-5=l$ and $l^4-l^2=12a$,then $k+1=l+6$. Substitute $l+6$ into the $(k+1)^4-(k+1)^2$, and he finally reach $12(a+2l^3+18l^2+71l+105)$, successfully prove the proposition.
For the proof, he just said that:
In particular, if $S_{1}$ through $S_{k}$ are true, then $S_{k-5}$ is true, provided $k-5\ge{1}$. We will show $S_{k-5}\implies S_{k+1}$ instead of $S_{k}\implies S_{k+1}$. But as $k-5\ge{1}$, we have $k\ge{6}$. Then our basic steps must check that $S_{1}$ to $S_{6}$ are all true.
My question is: Why does he choose to use the first 6 items as the base to prove the following proposition. In other words, why choosing $S_{k-5}\implies S_{k+1}$ instead of $S_{k-2}\implies S_{k+1}$. I tried it, but failed with some coefficients not a multiple of 12. Are there any internal mathematical theorem here?
I don't know how to deal with the problem when I first came across this, and I saw him choosing the first 6 items as a group, and finally reached the conclusion that $n^4-n^2$ is a multiple of 12. His inference just looks like magic! I wonder if it comes from purely mathematical intuition or some intrinsic number theory theorem. There's no illustration on how he came across this idea from the textbook, so I am reaching out for help here.
\mid). Edit: ah, @JohnOmielan beat me to it. – J.G. Sep 14 '24 at 06:19