Methods of Proof · Topic 3 of 5
3. Proof by Induction
Theory
Proof by induction establishes a statement for all positive integers in three parts:
- Base case: show is true.
- Inductive step: assume is true (the inductive hypothesis), and use it to prove .
- Conclusion: state that, by induction, holds for all .
The Golden Rule: you must actually use the inductive hypothesis when proving — that is the heart of the method — and never skip the base case or the concluding statement.
⚠️ Common Examiner Traps
- Missing the base case: without the induction has no foundation.
- Not using the hypothesis: the working must build on the assumed .
- No conclusion: finish with the “therefore true for all ” statement to earn the final mark.
Worked examples
Example 1
Prove by induction that for all positive integers .
Base case: for , the left side is and the right side is . True.
Inductive step: assume the result holds for , i.e. . Then:
Conclusion: this is the formula with , so if it holds for it holds for . Since it holds for , by induction it holds for all .
Example 2
Prove by induction that is divisible by for all positive integers .
Base case: for , , which is divisible by . True.
Inductive step: assume is divisible by , so for some integer . Then:
Conclusion: this is a multiple of , so the result holds for . Since it holds for , by induction is divisible by for all .