Mathematical Induction
Context: FIT1058_MOC, FIT2014_MOC Β· proves via base case + step Β· a proof technique driven by Modus Ponens Β· powers loop/recursion analysis
Quick Revision
- π― Objective: prove β discharge basis + step .
- π¦ Core Components: Basis β | Hypothesis β assume | Step β derive .
- β‘ Key Constraint: both obligations mandatory β no basis βΉ chain never starts; no step βΉ dominoes donβt propagate.
π Core
1. The Principle (Domino Cascade)
- Claim shape β β a universal over a well-ordered domain.
- Two obligations β basis + step .
- Engine β Modus Ponens fires along the integers:
2. Anatomy of the Step
- Inductive hypothesis β assume for arbitrary .
- Obligation β derive from β not re-assert it.
- Re-indexing β with shifted basis is the same proof.
3. Variants & Assumptions
- Strong induction β assume β derive .
- Shifted basis β start at or β proves .
- Assumption β domain well-ordered (); a precise per- statement.
4. Stating the Hypothesis Correctly (FIT2014)
- β Correct opening β βLet . Assume is true.β β announces as arbitrary, subject only to the stated condition.
- β βAssume for all , β β assumes the very conclusion (circular).
- β βAssume for some , β β assumes only what the base case already gives.
- Test the step at its smallest β a step valid βfor large β but failing at the first link proves nothing β the classic faulty inductions are catalogued in Proof Critique (Good, Bad and Ugly Proofs).
- Worked application β the extended De Morgan law is proved by induction on : basis ; step regroups , applies two-variable De Morgan, then the inductive hypothesis.
Key identities:
βοΈ Core Decision Matrix
| Obligation | Role | Omitting it |
|---|---|---|
| Basis | knocks over first domino | chain never starts |
| Step | each domino topples next | truth canβt propagate |
| Hypothesis | assumed inside the step | (not a separate obligation) |
When It Flips: basis + step together are equivalent to the well-ordering of β neither alone proves anything. Application: the nested loop
for i=1..N, for j=i+1..Nruns times, an Arithmetic Series proved by this very formula.
π Exam Execution Trace
Manual Execution Trace
Discharging both obligations for :
| Step / State | Stage | Statement to establish | Discharged? |
|---|---|---|---|
| 0 (Init) | claim | β | |
| 1 | Basis | β | |
| 2 | Hypothesis | assume | assumed |
| 3 | Step | β |
β οΈ Common Mistakes
- π‘ Induction is deductive, not empirical β the basis + implication force for every with zero error; statistical βinductionβ from sampled data is probabilistic and cannot be a proof step.
π§ Active Recall
State the two obligations of an induction proof and why both are necessary (domino analogy).
- Hint: Start the chain and propagate it.
Answer
- Short answer: Prove basis and step for arbitrary .
- Why: Dominoes β basis knocks over the first, step topples each next; Modus Ponens cascades over all . No basis βΉ nothing starts; no step βΉ chain stalls.
Prove by induction.
- Hint: Add to the hypothesis.
Answer
- Short answer: Basis ; step .
- Why: Factor out β , the formula at .
Why is "mathematical induction" deductive rather than the empirical "induction" of data science?
- Hint: Certainty vs probability.
Answer
- Short answer: Base case + logically force for every with certainty.
- Why: Opposite epistemics β empirical induction generalises from samples (probabilistic, error-prone) and cannot be a proof step.