Proof by induction
This is a default technique to use when we want to prove that a certain statement holds for infinitely many values of a certain variable. For instance, if we want to find a closed form for , by looking at the pattern, we can see that it should be . But how can we show that this holds for all ? In this case, we can proceed as follows:
-
When , we have that the sum is and the closed form is also . Therefore, the formula is correct.
-
Otherwise, assume that the formula is correct for and we want to argue that it is true for . Indeed, . By the assumption that holds, we can reduce this to . This implies that also holds.
Now let us try to understand what we have done. We prove that holds and that for all . The latter would imply that also holds, and again and so on. This will establish the validity of for all . The statement is called induction hypothesis. Coming up with the right hypothesis to prove is the key.
In the next example, we will see something more surprising. Consider a chessboard in Figure 1 that has one square removed from it. We claim that any such chessboard (with one square removed, regardless of which square) can be covered by non-overlapping L-shapes without a gap.
It would seem like proving this statement requires going over all cases of potential choice of a removed square, and for each such case, show how to cover it with L-shapes. In fact, the easiest way to prove this statement is via mathematical induction! We encourage the students to try proving this fact before reading on.
The following is the induction hypothesis:
: Every chessboard with one square missing can be covered by L-shapes.
Notice that the statement when is trivial (case analysis has only four cases), so we established the validity of . Now assume that we know is true. To prove , consider a chessboard with a missing square. We can cut this board into four equal boards by halving horizontally and vertically. Let be those chessboards of size -by- (corresponding to the top-left, top-right, bottom-left and bottom-right chessboards). Assume, without loss of generality (WLOG), that a missing square is in .1 We invoke the induction hypothesis for and (i) with the lower-left corner missing, (ii) with the upper-right corner missing, and (iii) with the upper-left corner missing. Combining these coverings allows us to cover the whole board .
Let us draw (infinite) lines in the plane in such a way that no two are parallel and no three intersect in a common point. Prove that the plane is divided into exactly parts by these lines.
Let be natural numbers, each of them at least one, and . Prove by induction that .
A straight-line map is a map created by a rectangle, which is partitioned into regions by straight lines, such that each line divides the rectangle into two regions. Prove that such a map can always be colored so that each region is colored red or blue, and that no two bordering regions have the same color. See Figure 2.
This exercise is closely related to the celebrated Four Color Theorem, which says that every map (regardless of how you draw the regions) can be colored by at most four colors.
📄️ Finding the right hypothesis
In many cases, the induction follows immediately from the statement we want to prove, but often it helps to make the induction hypothesis stronger than the targeted statement. This might sound counter-intuitive, so let us try to absorb this idea via a few examples.
📄️ Strong induction
Another way to use a stronger induction hypothesis is called strong induction: To prove $P(k)$, instead of assuming that $P(k-1)$ is true, we assume that $P(1),\ldots, P(k-1)$ are all true and try to derive the validity of $P(k)$.
Footnotes
-
We will very often use this term in this lecture note. ↩