Theory
Mathematical induction is a proof technique used to prove that a sequence of statements
S1,S2,S3,… is true for all positive integers. It consists of two steps:
- Base Case: Prove that S1 is true.
- Inductive Step: Assume Sk is true (the inductive hypothesis) and prove that Sk+1 is true.
Exercises
Exercise 1
Question
Use mathematical induction to prove that
12+22+32+⋯+n2=6n(n+1)(2n+1)for all positive integers n.
Show solution ↓Hide solution ↑
Solution
Base Case: For n=1,
12=61(2)(3)=1.Thus, the base case holds.
Inductive Hypothesis: Assume
12+22+⋯+k2=6k(k+1)(2k+1).Inductive Step: Then
12+⋯+k2+(k+1)2=6k(k+1)(2k+1)+(k+1)2=(k+1)[6k(2k+1)+6(k+1)]=6(k+1)(2k2+7k+6)=6(k+1)(k+2)(2k+3).Hence, the formula holds for k+1.
Exercise 2
Question
Prove that
1+3+5+⋯+(2n−1)=n2.Show solution ↓Hide solution ↑
Solution
Base Case: For n=1,
1=12.Inductive Hypothesis: Assume
1+3+⋯+(2k−1)=k2.Inductive Step:
k2+(2k+1)=(k+1)2.Thus, the statement holds for all n.
Exercise 3
Question
Prove that
21+22+23+⋯+2n=2n+1−2for all n∈N.
Show solution ↓Hide solution ↑
Solution
Base Case: For n=1,
2=22−2.Inductive Hypothesis: Assume
21+⋯+2k=2k+1−2.Inductive Step:
21+⋯+2k+2k+1=(2k+1−2)+2k+1=2k+2−2.
Exercise 4
Question
Show that
1+2+3+⋯+n=2n(n+1).Show solution ↓Hide solution ↑
Solution
Base Case: For n=1,
1=21(2).Inductive Hypothesis: Assume
1+2+⋯+k=2k(k+1).Inductive Step:
2k(k+1)+(k+1)=2(k+1)(k+2).
Exercise 5
Question
Show that 5∣(n5−n) for all non-negative integers n.
Show solution ↓Hide solution ↑
Solution
Base Case: For n=0,
05−0=0,which is divisible by 5.
Inductive Hypothesis: Assume 5∣(k5−k).
Inductive Step:
(k+1)5−(k+1)=k5+5k4+10k3+10k2+5k+1−k−1=(k5−k)+5(k4+2k3+2k2+k).Both terms are divisible by 5, so the result follows.
Exercise 6
Question
For all integers n≥4, prove that
n!>2n.Show solution ↓Hide solution ↑
Solution
Base Case: For n=4,
4!=24>16=24.Inductive Hypothesis: Assume k!>2k for some k≥4.
Inductive Step:
(k+1)!=(k+1)k!>(k+1)2k>2⋅2k=2k+1,since k+1≥5>2. Hence, the inequality holds for all n≥4.