DWG NO. 9.4 — Lesson 4 of 6
Unit 9: Sequences, Series, and Combinatorics · ~25 min
Lesson 9.3 handed you closed-form formulas like Σi = n(n+1)/2 without proof. Checking it for n = 1, 2, 3 builds confidence, but no finite amount of checking proves it holds for every positive integer — there are infinitely many to check. Mathematical induction proves an infinite family of statements with a finite amount of work, by showing each one triggers the next.
Let P(n) be a statement about the positive integer n (for example, "1 + 2 + … + n = n(n+1)/2"). Induction has two parts:
Once both parts are established, P(1) being true forces P(2) true (by the inductive step with k=1), which forces P(3) true (k=2), and so on forever — like a row of dominoes where knocking over the first guarantees every domino after it falls too, because each one is set up to knock over the next.
Base case topples P(1); the inductive step guarantees each P(k) topples P(k+1)