Mathematical Induction Explained
■ The Idea
Mathematical induction is a way of proving that a statement is true for all natural numbers (1, 2, 3, …).
Think of it like knocking over dominoes:
1. Base case – Show that the first domino falls (the statement is true for the first number, usually n=1).
2. Inductive step – Show that if one domino falls, it knocks over the next (if the statement is true for n=k,
then it must also be true for n=k+1).
If both are true, then all the dominoes fall → the statement is true for all n.
■ Example
Let’s prove: 1 + 2 + 3 + ... + n = n(n+1)/2
Step 1: Base case (n=1)
Left side: 1 | Right side: (1(1+1))/2 = 1 ■ Works!
Step 2: Inductive step
Assume it’s true for n=k: 1 + 2 + ... + k = k(k+1)/2. Now prove for n=k+1: 1 + 2 + ... + k + (k+1) =
[k(k+1)/2] + (k+1) = (k(k+1) + 2(k+1)) / 2 = (k+1)(k+2)/2 That’s exactly the formula with n=k+1. ■
■ Summary
- Base case: Check the first number. - Inductive step: Assume true for n=k, prove true for n=k+1. -
Therefore, true for all n.