Mathematical Induction is a powerful Proof Method(s) used to prove a statement for all natural numbers . It is often compared to the “Domino Effect”: if you can knock down the first domino, and knocking down any domino guarantees the next one falls, then all dominos will fall.


The Principle

To prove that is true (see Universal Quantifier), we must establish two things:

  1. Base Case: Verify that (or the first element ) is true.
  2. Inductive Step: Prove that for any , if is true, then is also true.

If both hold, then is true for all .


Standard Induction Structure

A rigorous induction proof follows this template:

  1. State the Hypothesis: Let be the proposition that [statement].
  2. Base Case: Show that is true.
  3. Inductive Hypothesis: Assume is true for some arbitrary integer .
  4. Inductive Step: Show that must be true, using the assumption from step 3.
  5. Conclusion: By the principle of mathematical induction, is true for all .

Example: Sum of First Integers Theorem:

  • Base Case (): . (True)
  • Inductive Hypothesis: Assume .
  • Inductive Step: We want to show .

Variations

  1. Strong Induction: Assumes the property holds for all values up to , not just . Useful for recursion and number theory.
  2. Well Ordering Principle (WOP): The axiom that every nonempty set of nonnegative integers has a smallest element. It is logically equivalent to Induction.

Common Pitfalls

  • Base Case Omission: Forgetting the base case leads to false proofs.
  • Build-Up Error: Assuming can be built uniquely from .