More Examples of Induction
Learning objectives
- Apply induction to divisibility and inequality statements
- Prove the geometric-sum and sum-of-squares identities by induction
- Recognise the algebraic patterns used in the inductive step
- Choose a starting index that makes the proof work
Induction is more than a summation trick. Once the principle is in your hands, the same two-step ritual proves divisibility theorems, polynomial inequalities, geometric-series formulas, and product identities. The hard part is no longer the logic — that's settled by §6.1 — but the algebra: how do you reshape until the inductive hypothesis can be plugged in? This section is a tour of the algebraic moves that show up over and over: factoring out a common piece, peeling off the last term, bounding a sum by its largest summand. Walk through each example with pen in hand and the pattern starts to feel mechanical.
Divisibility by induction
To prove for all , assume and arrange so a multiple of pops out. The most common move is to write . Example: prove for every .
Base (): , divisible by 3.
Step: assume for some integer . Then , which is divisible by 3.
Inequality by induction
Bernoulli's inequality: for and , . (The boundary case holds because the left side is and the right side is .)
Base (): .
Step: assume . Multiply both sides by the non-negative quantity :
The last step uses .
The geometric sum
For and , .
Base (): left side ; right side .
Step: assume . Add to both sides:
That is the formula at .
Pause and think: in the divisibility example above we wrote — a tiny algebraic move that unlocks the whole step. What if we had used instead? Would the proof still go through? Try it.
Try it
- Predict using the closed form . Then verify by computing in your head or on paper.
- Before checking: is for every ? Test by hand. Then sketch the induction.
- Bernoulli check: at and , compute to four decimals. Is it at least ?
- Geometric sum at : predict at using the closed form, then add the terms by hand.
A trap to watch for
The most seductive mistake in induction proofs is the "all horses are the same colour" fallacy. The argument runs: base case — one horse is obviously the same colour as itself. Inductive step — given any group of horses, remove one to get a group of which by hypothesis are all the same colour; remove a different one to get another group of same-coloured horses; the overlap forces the whole to share a colour. The conclusion is absurd. Where is the bug? The inductive step silently assumes the two sub-groups overlap, i.e., that . The implication is the link that breaks. Moral: when the inductive step relies on a structural assumption (overlap, splitting, non-degeneracy), check that the assumption holds at the very first transition out of the base case.
What you now know
You can pick the right algebraic move in an induction proof: factor for divisibility, multiply for inequalities, add the next term for sums. You've seen Bernoulli's inequality and the geometric-sum formula and you understand why subtle assumptions inside the inductive step (like the overlap in the horse-colour fallacy) must be verified at the first transition. Next we'll see how induction extends naturally to recursive definitions, where a function's value at is computed from earlier values.
References
- Velleman, D. J. (2019). How to Prove It: A Structured Approach (3rd ed.). Cambridge University Press, §6.2.
- Graham, R. L., Knuth, D. E., Patashnik, O. (1994). Concrete Mathematics (2nd ed.). Addison-Wesley, §1.2–1.4.
- Cormen, T. H., Leiserson, C. E., Rivest, R. L., Stein, C. (2009). Introduction to Algorithms (3rd ed.). MIT Press, app. A.
- Wilf, H. S. (1994). generatingfunctionology. Academic Press, ch. 1.
- Aigner, M., Ziegler, G. M. (2018). Proofs from THE BOOK (6th ed.). Springer.