Andromeda
Note

Mathematical Induction

Definition

Mathematical Induction is a proof technique used to establish that a statement P(n)P(n) is true for all natural numbers nn (or starting from some integer n0n_0).

  • How to read: “The proposition P of n.”
  • Meaning: A proposition depending on the natural number nn—the claim you want to prove holds for every nn in the target range.

Why It Matters

Mathematical induction is the ‘domino effect’ of logic; it allows us to prove that a statement is true for an infinite set of cases, providing a level of certainty that is impossible to achieve through observation alone.

Core Concepts

The proof consists of two mandatory steps:

  1. Base Case (Condition I): Show that P(1)P(1) is true.

    • How to read: “The base case P of one is true.”
    • Meaning: Verify the claim for the starting value; the first domino falls.
  2. Inductive Step (Condition II): Show that if P(k)P(k) is true (Inductive Hypothesis), then P(k+1)P(k+1) must also be true.

    • How to read: “If P of k is true, then P of k plus one is true.”
    • Meaning: Assume the claim for some kk; prove it for the next integer—each falling domino knocks over the next.

If both hold, P(n)P(n) is true for all n1n \geq 1.

  • How to read: “The proposition P of n is true for all n greater than or equal to one.”
  • Meaning: The two steps together guarantee the statement for every natural number from the base onward.

Connected Concepts