3.04 Mathematical Induction - An Introduction
3.04 Mathematical Induction - An Introduction
More generally, we can use mathematical induction to prove that a propositional function P (n) is true for all integers n ≥ 1 .
The basis step is also called the anchor step or the initial step. This proof technique is valid because of the next theorem.
If S ⊆ N such that
1 ∈ S , and
k ∈ S ⇒ k+1 ∈ S ,
then S = N .
Remark
Here is a sketch of the proof. From (i), we know that 1 ∈ S . It then follows from (ii) that 2 ∈ S . Applying (ii) again, we
find that 3 ∈ S . Likewise, 4 ∈ S , then 5 ∈ S , and so on. Since this argument can go on indefinitely, we find that S = N .
There is a subtle problem with this argument. It is unclear why “and so on” will work. After all, what does “and so on” or
“continue in this manner” really mean? Can it really continue indefinitely? The trouble is, we do not have a formal
definition of the natural numbers. It turns out that we cannot completely prove the principle of mathematical induction with
just the usual properties for addition and multiplication. Consequently, we will take the theorem as an axiom without giving
any formal proof.
Although we cannot provide a satisfactory proof of the principle of mathematical induction, we can use it to justify the validity of
the mathematical induction. Let S be the set of integers n for which a propositional function P (n) is true. The basis step of
mathematical induction verifies that 1 ∈ S . The inductive step shows that k ∈ S implies k + 1 ∈ S . Therefore, the principle of
mathematical induction proves that S = N . It follows that P (n) is true for all integers n ≥ 1 .
The basis step and the inductive step, together, prove that
P (1) ⇒ P (2) ⇒ P (3) ⇒ ⋯ . (3.4.2)
Therefore, P (n) is true for all integers n ≥ 1 . Compare induction to falling dominoes. When the first domino falls, it knocks down
the next domino. The second domino in turn knocks down the third domino. Eventually, all the dominoes will be knocked down.
But it will not happen unless these conditions are met:
The first domino must fall to start the motion. If it does not fall, no chain reaction will occur. This is the basis step.
The distance between adjacent dominoes must be set up correctly. Otherwise, a certain domino may fall down without knocking
over the next. Then the chain reaction will stop, and will never be completed. Maintaining the right inter-domino distance
ensures that P (k) ⇒ P (k + 1) for each integer k ≥ 1 .
To prove the implication
P (k) ⇒ P (k + 1) (3.4.3)
3.4.1 https://math.libretexts.org/@go/page/8397
in the inductive step, we need to carry out two steps: assuming that P (k) is true, then using it to prove P (k + 1) is also true. So we
can refine an induction proof into a 3-step procedure:
Verify that P (1) is true.
Assume that P (k) is true for some integer k ≥ 1 .
Show that P (k + 1) is also true.
The second step, the assumption that P (k) is true, is sometimes referred to as the inductive hypothesis or induction hypothesis.
This is how a mathematical induction proof may look:
The idea behind mathematical induction is rather simple. However, it must be delivered with precision.
Be sure to say “Assume the identity holds for some integer k ≥ 1 .” Do not say “Assume it holds for all integers k ≥ 1 .” If we
already know the result holds for all k ≥ 1 , then there is no need to prove anything at all.
Be sure to specify the requirement k ≥ 1 . This ensures that the chain reaction of the falling dominoes starts with the first one.
Do not say “let n = k ” or “let n = k + 1 .” The point is, you are not assigning the value of k and k + 1 to n . Rather, you are
assuming that the statement is true when n equals k , and using it to show that the statement also holds when n equals k + 1 .
Example 3.4.1
Discussion
In the basis step, it would be easier to check the two sides of the equation separately. The inductive step is the key step in
any induction proof, and the last part, the part that proves P (k + 1) is true, is the most difficult part of the entire proof. In
this regard, it is helpful to write out exactly what the inductive hypothesis proclaims, and what we really want to prove. In
this problem, the inductive hypothesis claims that
k(k + 1)
1 +2 +3 +⋯ +k = . (3.4.5)
2
We want to prove that P (k + 1) is also true. What does P (k + 1) really mean? It says
(k + 1)(k + 2)
1 + 2 + 3 + ⋯ + (k + 1) = . (3.4.6)
2
Compare the left-hand sides of these two equations. The first one is the sum of k quantities, and the second is the sum of
k + 1 quantities, and the extra quantity is the last number k + 1 . The sum of the first k terms is precisely what we have on
1 + 2 + 3 + ⋯ + (k + 1) = 1 + 2 + ⋯ + k + (k + 1), (3.4.7)
1 + 2 + 3 + ⋯ + (k + 1) = [1 + 2 + ⋯ + k] + (k + 1), (3.4.8)
k(k+1)
so that 1 +2 +⋯ +k can be replaced by 2
, according to the inductive hypothesis. With additional algebraic
(k+1)(k+2)
manipulation, we try to show that the sum does equal to 2
.
We proceed by induction on n . When n = 1 , the left-hand side of the identity reduces to 1, and the right-hand side
becomes = 1 ; hence, the identity holds when n = 1 . Assume it holds when n = k for some integer k ≥ 1 ; that is,
1⋅2
assume that
k(k + 1)
1 +2 +3 +⋯ +k = (3.4.9)
2
for some integer k ≥ 1 . We want to show that it also holds when n = k + 1 . In other words, we want to show that
3.4.2 https://math.libretexts.org/@go/page/8397
(k + 1)(k + 2)
1 + 2 + 3 + ⋯ + (k + 1) = . (3.4.10)
2
k(k + 1)
= + (k + 1)
2
k
= (k + 1) ( + 1)
2
k+2
= (k + 1) ⋅ .
2
Therefore, the identity also holds when n = k + 1 . This completes the induction.
We can use the summation notation (also called the sigma notation) to abbreviate a sum. For example, the sum in the last example
can be written as
n
∑ i. (3.4.11)
i=1
The letter i is the index of summation. By putting i = 1 under ∑ and n above, we declare that the sum starts with i = 1 , and
ranges through i = 2 , i = 3 , and so on, until i = n . The quantity that follows ∑ describes the pattern of the terms that we are
adding in the summation. Accordingly,
10
2 2 2 2 2
∑i =1 +2 +3 + ⋯ + 10 . (3.4.12)
i=1
i=1
ai . Observe that
k+1 k
∑ ai = ( ∑ ai ) + ak+1 , (3.4.13)
i=1 i=1
Example 3.4.2
Answer
We proceed by induction on n . When n = 1 , the left-hand side reduces to 1 = 1 , and the right-hand side becomes 2
= 1 ; hence, the identity holds when n = 1 . Assume it holds when n = k for some integer k ≥ 1 ; that is, assume that
1⋅2⋅3
k
k(k + 1)(2k + 1)
2
∑i = (3.4.15)
6
i=1
for some integer k ≥ 1 . We want to show that it still holds when n = k + 1 . In other words, we want to show that
k+1
(k + 1)(k + 2)[2(k + 1) + 1] (k + 1)(k + 2)(2k + 3)
2
∑i = = . (3.4.16)
6 6
i=1
3.4.3 https://math.libretexts.org/@go/page/8397
k+1 k
2 2 2
∑i = ( ∑ i ) + (k + 1 )
i=1 i=1
k(k + 1)(2k + 1)
2
= + (k + 1 )
6
1
[3pt] = (k + 1)[k(2k + 1) + 6(k + 1)]
6
1 2
[3pt] = (k + 1)(2 k + 7k + 6)
6
1
[3pt] = (k + 1)(k + 2)(2k + 3).
6
Therefore, the identity also holds when n = k + 1 . This completes the induction.
Example 3.4.3
Answer
Proceed by induction on n . When n = 1 , the left-hand side reduces to 3 + (3 + 5) = 11 , and the right-hand side becomes
= 11 ; hence, the identity holds when n = 1 . Assume it holds when n = k for some integer k ≥ 1 ; that is, assume that
2⋅11
k
(k + 1)(5k + 6)
3 + ∑(3 + 5i) = (3.4.18)
2
i=1
for some integer k ≥ 1 . We want to show that it still holds when n = k + 1 . In other words, we want to show that
k+1
[(k + 1) + 1] [5(k + 1) + 6] (k + 2)(5k + 11)
3 + ∑(3 + 5i) = = . (3.4.19)
2 2
i=1
i=1 i=1
(k + 1)(5k + 6)
= + 5k + 8
2
1
[3pt] = [(k + 1)(5k + 6) + 2(5k + 8)]
2
1 2
[3pt] = (5 k + 21k + 22)
2
1
[3pt] = (k + 2)(5k + 11).
2
It is time for you to write your own induction proof. Prove that
n(n + 1)(n + 2)
1 ⋅ 2 + 2 ⋅ 3 + 3 ⋅ 4 + ⋯ + n(n + 1) = (3.4.20)
3
3.4.4 https://math.libretexts.org/@go/page/8397
We give you a hand on this one, after which, you will be on your own. We lay out the template, all you need to do is fill in the
blanks.
Answer
for some integer k ≥ 1 . We want to show that it also holds when n = k + 1 ; that is, we want to show that
It follows from the inductive hypothesis that
= +
[6pt] = +
[6pt] = .
exercise 3.4.2
exercise 3.4.3
All three steps in an induction proof must be completed; otherwise, the proof may not be correct.
Example 3.4.4
n 1 2 3 4 5 6 7 8 9
(3.4.25)
2
n + n + 11 13 17 23 31 41 53 67 83 101
Nonetheless, when n = 10 , n 2
+ n + 11 = 121 is composite. So \(P(9) \nRightarrow P(10)\). The inductive step breaks down
when k = 9 .
Example 3.4.5
for all n ∈ N . Assume P (k) is true for some integer k ≥ 1 ; that is, assume 3k + 2 = 3q for some integer q. Then
3(k + 1) + 2 = 3k + 3 + 2 = 3 + 3q = 3(1 + q). (3.4.27)
Therefore, 3(k + 1) + 2 can be written in the same form. This proves that P (k + 1) is also true. Does it follow that P (n) is
true for all integers n ≥ 1 ? We know that 3n + 2 cannot be written as a multiple of 3. What is the problem?
3.4.5 https://math.libretexts.org/@go/page/8397
Solution
The problem is: we need P (k) to be true for at least one value of k so as to start the sequence of implications
The induction fails because we have not established the basis step. In fact, P (1) is false. Since the first domino does not
fall, we cannot even start the chain reaction.
Remark
Thus far, we have learned how to use mathematical induction to prove identities. In general, we can use mathematical induction to
prove a statement about n . This statement can take the form of an identity, an inequality, or simply a verbal statement about n . We
shall learn more about mathematical induction in the next few sections.
Exercise 3.4.1
Exercise 3.4.2
Use induction to prove that the following identity holds for all integers n ≥ 1 :
2
1 + 3 + 5 + ⋯ + (2n − 1) = n . (3.4.30)
Exercise 3.4.3
Exercise 3.4.4
3.4.6 https://math.libretexts.org/@go/page/8397
Exercise 3.4.5
∑ i ⋅ i! = (n + 1)! − 1. (3.4.33)
i=1
Exercise 3.4.6
Exercise 3.4.7
Evaluate \dd ∑
n
i=1
1
i(i+1)
for a few values of n . What do you think the result should be? Use induction to prove your
conjecture.
Exercise 3.4.8
3 2 2
∑(2i − 1 ) = n (2 n − 1) (3.4.35)
i=1
Exercise 3.4.9
Exercise 3.4.10
This page titled 3.4: Mathematical Induction - An Introduction is shared under a CC BY-NC-SA license and was authored, remixed, and/or
curated by Harris Kwong (OpenSUNY) .
3.4.7 https://math.libretexts.org/@go/page/8397