[Math] Not understanding the multiple base cases in strong induction

discrete mathematicsinduction

I'm going to put out two strong induction questions that seem different in the base cases.

Question 1: Prove that $u_n = 4^n + 6^n$ if $u_0 = 2, u_1 = 6$ and $u_{n+2} = 6u_{n+1} – 8u_{n}$.

I know that we would have to show the base cases $P(0)$ and $P(1)$ are true (which are true by definition of the sequence $u_n$).
This means we had to take two base cases here, since we want to show that $P(k-1), P(k)$ being true implies $P(k+1)$ is true.

Question 2: Every integer greater than $1$ is the product of primes.
For this question they only took one base case, that is, by showing $P(2)$ is true and then assumed true for $P(n)$ for all integers $2\leq n \leq k$. I would have thought that since we want to prove $P(k),P(k-1),\ldots,P(2)$ implies $P(k+1)$ is true, we would need to have $k-1$ amount of base cases… which doesn't make sense anyway….

Why does the first question require taking two base cases whereas the second question only took one base case, even when it's dealing with more than $2$ assumptions (since $k\geq 2$)?

Here is the proof I am looking at for question 2:
http://www.math.ucsd.edu/~benchow/Week2notesmore.pdf

Also, looking at another example: http://www.mathblog.dk/strong-induction/,
the author took 6 base cases which makes sense as in question 1.

Best Answer

Actually, the proof for the first question doesn't really use strong induction, but uses what is sometimes called 'strong weak induction': you make reference to a fixed number of earlier cases (in this case, two) and you know exactly what those previous cases are (in this case, the two previous numbers). In fact, it is those latter cases that determine how many base cases there should be. For example, if your recursive relation was $u_{n+4} = 4u_{n+2} - 2u_n$, then it is clear you need $4$ base cases, for only after those first $4$ can you get the recursion up and running.

The proof for the second question does use a genuine case of strong induction, since you prove $P_{k+1}$ on the basis of all of the $P_1$ through $P_k$ (or, in this case, $P_2$ through $P_k$). So note that there is no longer a fixed number of cases to which we refer back (as it changes for each $k$), and it is also no longer clear which specific cases you use; you simply assume they all hold as the inductive hypothesis.

Now, depending on how you look at it, strong induction can in fact be said to have no 'base' cases at all: you simply show that the claim holds for any $k$ if you assume it holds for all previous ones: do this for any $k$, and you're done! No separate base cases needed. In practice, though, the very first one is a bit of an exception, in that it has no previous ones (in your case, there is no relevant case smaller than $2$, since the claim is about all whole numbers greater than $1$). So this means that you need to prove the case $P_2$ on the basis of nothing, i.e. you simply need to prove the case $P_2$ in and of itself .... which is why this first case is often seen as 'the base case' for strong induction.