Mathematical Induction
Mathematical induction is a proof technique which allows us to prove that a certain statement holds for every integer in some subset of . It is most commonly used to prove statements about the natural numbers, although it can be a powerful tool for much more.
Proof by Induction
A proof by induction looks very much like a domino. Essentially, it boils down to two things:
- Base case - we find some integer for which the statement is true;
- Inductive step - we prove that for every integer , if the statement is true for , then is also true for . The assumption that holds for is often called the induction hypothesis.
We can imagine the proof as an infinite chain of dominoes. The inductive step is like proving that if we can push any domino, it will fall in just the right way so as to push the domino to its right. Then, the base case is just the proof that there is indeed at least one piece of domino we can actually push - once we push this piece, all the pieces to its right will fall thanks to the inductive step.
Tip: The Principle of Mathematical Induction
The principle of mathematical induction can be summarized as follows:
If there exists some for which is true and if implies for all , then is true for all .
Essentially, if we manage to prove the inductive step and find a base case, then we would have proven that holds for all integers greater than or equal to .
Example: Proof of the Sum of the First Natural Numbers
We want to prove that the sum of the first natural numbers is equal to :
Proof:
Base case: We begin with the base case. Let’s see if the formula holds for :
Okay, we have found a base case. This means that we have found a piece of domino which we have enough force to push. Now, we need to show that all dominoes are placed at just the right distance so that if we push one piece, then all pieces to its right will fall, i.e. we need to prove our inductive step.
Inductive step: We assume that the sum of the first (greater than or equal to because we have already shown this is true for as was our base case) natural numbers is , i.e.
and want to show that the sum of the first natural numbers is , i.e.
Alright, observe that contains which is the sum of the first natural numbers. According to our assumption, . Therefore, we can rewrite as
which is exactly what we wanted to prove in the inductive step.
Now we are done. The inductive step shows us that if the we can prove the formula for some specific , then the formula will also be true for . However, the proof never actually refers to a specific , so if the formula is true for , then it will also be true for and so on. In the base case, however, we found a specific for which the formula is indeed true, namely . Since the formula holds for , the inductive step tells us it also holds for . Since it holds for , the inductive step tells it holds for and so on. Therefore, we have proven the formula for all .