Mathematical induction allows us to prove that every nonnegative integer satisfies a certain property. In this chapter, we will use mathematical induction to prove several mathematical claims. When we reach the next several chapters on programming logic, we will see that mathematical induction is very similar to the process of proving correctness for programs with loops.
Domino effect
To prove that a property
Base case. We must prove that
is true for the smallest possible value of . Usually this is or , but occasionally we will define a property for all values greater than or equal to 2, or some bigger number.Inductive step. We assume the inductive hypothesis – that
holds for some arbitrary nonnegative integer . Then, we must show that the property still holds for . In other words, we must prove that – that IF holds for some arbitrary nonnegative integer , THEN holds as well.
How do these two steps prove anything at all? Suppose we are proving that a property holds for all positive integers
Think of mathematical inductive like a line of dominoes. The “base case” tells us that the first domino will fall, and the “inductive step” tells us that if one domino falls, then the one right after it will fall as well. From these two pieces, we can conclude that the entire line of dominoes will fall (i.e., that the property will hold for the entire set of numbers).
Summation property
There is a well-known formula for adding all positive integers up to some bound,
To see how this works, suppose
Suppose instead that
First induction proof
Let
We wish to use mathematical induction to prove that
We will refer to
Base case
We must prove that
We have that
Inductive step
We assume the inductive hypothesis - that
Thus
We conclude that for all positive integers
Inductive step explanation
In line 2 of the proof above we saw that
From lines 5 to 7, we did algebraic manipulations to combine our terms and work towards the form of