Proof by Mathematical Induction
Learning objectives
- State the principle of mathematical induction precisely
- Identify the base case and inductive step of an induction proof
- Write a complete induction proof for a summation identity
- Recognise when induction is the right tool
Why do we need a special proof technique for "all natural numbers"? Because the natural numbers are infinite: you cannot check one by one. Mathematical induction turns that infinite checklist into two finite tasks. Picture an unending row of dominoes. Show the first domino falls. Show that whenever one domino falls it knocks over the next. Together, every domino falls — no matter how far down the line you look. The principle is so basic that programmers, combinatorialists, and theorem provers reach for it before any other tool. Whenever a statement is indexed by and one case clearly leads to the next, induction is the natural weapon.
The principle, stated precisely
Mathematical induction proves by establishing two facts:
- Base case: is true.
- Inductive step: for every , if is true, then is true.
The assumption " is true" inside the inductive step is the inductive hypothesis. You are not assuming what you want to prove; you are proving the implication . The principle is justified by the well-ordering principle: every non-empty subset of has a least element. If some failed, the smallest such would either contradict the base case or contradict the inductive step.
The domino model
The two halves are necessary and sufficient. Knock down the first domino and the cascade begins. Place the dominoes close enough together (the inductive step) and the cascade never stops. Remove either ingredient and the chain breaks. The widget below makes this concrete: you can toggle the base case off, snap any link, and watch where the cascade halts.
A worked example
Prove that for all .
Base (): .
Inductive step: fix and assume (inductive hypothesis). Add to both sides:
That is the formula with . By induction the identity holds for every .
Pause and think: in the inductive step you write "assume ." A beginner often objects — aren't we just assuming what we want? Why is that not circular? (Hint: look carefully at what is being proved — an implication, not the conclusion standing alone.)
Try it
- Before stepping the widget: predict the value of at using the closed form. Now step the widget to and check.
- Toggle the base case off in the widget, press play, and confirm the cascade never starts. Use this to explain in one sentence why the base case is essential.
- Break the link at . Predict how many dominoes fall before play. Run it and count.
- Write out, on paper, the base case for at . Verify by hand.
A trap to watch for
Three induction traps catch almost every beginner. (1) Forgetting the base case. If the inductive step works but was never checked, the chain has no first domino. The classic counterexample: "all positive integers are greater than ." The inductive step is correct, yet the conclusion is absurd. (2) Assuming to prove — the dreaded circular argument. You may only assume . (3) Reading as " and are both true." The inductive step is a conditional, not a joint assertion. Spot the conditional and you keep the proof rigorous.
What you now know
You can state the principle of mathematical induction, identify the base case and inductive step of any induction proof, and write a complete induction proof for a simple summation identity. In the next section you will see induction applied beyond summations — to divisibility, inequalities, and product formulas — and in §6.4 you will meet a sharper version, strong induction, that lets you reach back to all previous cases at once.
References
- Velleman, D. J. (2019). How to Prove It: A Structured Approach (3rd ed.). Cambridge University Press, §6.1.
- Knuth, D. E. (1997). The Art of Computer Programming, Vol. 1: Fundamental Algorithms (3rd ed.). Addison-Wesley, §1.2.1.
- Graham, R. L., Knuth, D. E., Patashnik, O. (1994). Concrete Mathematics (2nd ed.). Addison-Wesley, ch. 1.
- Hammack, R. H. (2018). Book of Proof (3rd ed.). Virginia Commonwealth University, ch. 10.
- Aigner, M., Ziegler, G. M. (2018). Proofs from THE BOOK (6th ed.). Springer.