Definition
A proof schema that establishes a property for all natural numbers by proving a base case (usually for 0 or 1) and an inductive step that shows: if the property holds for an arbitrary n then it holds for n+1.

Principle

Principle
Local-to-global transfer on N: the organizing rule is that verifying a base and a successor closure is sufficient to propagate a property to every natural number via repeated application of the inductive step.

Demonstration

Demonstration
To prove a formula P(n) for all n∈N, show P(0) holds and show that for arbitrary n, P(n) ⇒ P(n+1). For instance, prove by induction that the sum of the first n natural numbers equals n(n+1)/2 by verifying base case n=0 and the algebraic inductive step.

Misapplication

Misapplication
Using ordinary induction when the inductive step relies on assumptions about several smaller values (i.e., applying only P(n)⇒P(n+1) when the correct hypothesis requires knowledge of all k≤n), or failing to establish a valid base case for the intended domain.

Consequence

Consequence
Gives a canonical method to prove infinitely many statements with finite work; underlies recursive definitions, proofs of algorithm correctness on integers, and provides a foundation for arithmetic properties.

Reversal

Reversal
The inversion is to show that even with a base case and a purported inductive step the property may fail if the step or base is flawed; alternatively, omitting the base case or using a nonstandard successor rule breaks the transfer to all naturals.

Boundary

Boundary
Applies to well-ordered successor-based domains like N; it does not directly apply to structures without a clear successor or to proofs that require transfinite or structural induction without appropriate adaptation.

Semantic Tension

Semantic Tension
Tension with strong or structural induction: ordinary induction assumes a one-step successor implication, while strong or structural forms allow premises about all smaller instances or induct on structure rather than numeric successor.

Synthesis

Synthesis
Mathematical induction is the finite two-part verification (base and successor step) that propagates truth across the natural numbers, serving as the primary device for proving arithmetic identities, correctness of integer algorithms, and properties defined recursively.