My understanding of needing a base case, in general, is that after proving the induction step, we can assert that the proposition is true for all values from the base case.
This question ($∀n ∈ Z, n≥12$) $\implies$ ( $∃x, y ∈N$ such that $n= 4x + 5y$) uses 3 bases cases for its strong induction solution:
Base cases: $n = 12, 13, 14, 15$
Clearly, $12= 4(3) + 5(0)$, so $P(12)$ is true.
Also, $13= 4(2) + 5(1)$, so $P(13)$ is true.
And, $14= 4(1) + 5(2)$, so $P(14)$ is true.
And, $15= 4(0) + 5(3)$, so $P(15)$ is true
Meanwhile I only used base case, $n=12$. Their rationale for providing multiple cases is as follows
If we didn’t prove $P(13), P(14), P(15)$ as base cases, then the inductive step to get $k+1 = 13, 14,15$ will fail, since proving these assume that $P(r)$, for $ r < 12$, to be true, which we didn’t prove. By establishing base cases $n = 12$ to $n = 15$, the inductive step can then work forward from $n ≥ 15$.
The first line starting from "If we..will fail"
already contradicts with my understanding of the base case that I mentioned above as proving base case of $12$ should suffice to prove inductive steps for $k+1=13,14,15$.
The part where they said "since proving..we didn't prove"
doesn't even make sense to me.Why are they talking about $ r < 12$.
And the last sentence says "work forward from n ≥ 15"
confuses me, shouldn't we want it to work from $n ≥ 12$.
My main question is essentially why we do need multiple base cases here? The sub-questions are the 3 paragraphs talking about the solution's rationale for providing multiple cases.
Induction Step(included after a comment by fleabloods):
Note: If the sub-questions should be separately posted, do let me know
P(base case)∧...P(i)
covers theP(base case+3)
etc – Leon May 30 '20 at 05:43