Mathematics.

ordinals and induction

Transfinite Induction

Set Theory30 minDifficulty7 out of 10

You should know: mathematical induction, cardinality

Overview

Transfinite induction extends ordinary mathematical induction from the natural numbers to any well-ordered set, in particular to the ordinal numbers, which continue counting past every finite number (0, 1, 2, ..., then ω, ω+1, ω+2, ..., then ω·2, and on transfinitely). Ordinary induction has two cases — a base case and a successor step — but because ordinals include 'limit' ordinals like ω that are not the successor of any single previous ordinal, transfinite induction needs a THIRD case handling limits, where the property must be shown to hold by combining its truth at all smaller ordinals at once. This extra case is the only real novelty: once you can prove a property holds at 0, passes from any ordinal to its successor, and passes to any limit ordinal from all its predecessors, transfinite induction concludes the property holds for every ordinal whatsoever, or every element of any well-ordered set.

Intuition

Ordinary induction is like a chain of dominoes: knock over domino 0, and rig each domino to knock over the very next one — since every natural number is either 0 or the successor of some other natural number, the chain reaches everything. But the ordinals contain numbers like ω (the first infinite ordinal) that come 'after all the finite ones put together' without being any single one's immediate successor — no domino directly knocks ω over. Transfinite induction handles this by adding a rule for these 'limit points': if ALL the dominoes before a limit point have already fallen, the limit domino falls too, as if it were watching the whole infinite chain behind it rather than just one predecessor. This is exactly analogous to how, in real analysis, a sequence converges at a limit point by 'seeing' the whole tail of the sequence, not just one previous term. With this extra rule added, the induction still reaches every ordinal, however far out the well-order extends.

Formal Definition

Definition

Let P(α) be a property of ordinals. Transfinite induction says: if P(0) holds, and P(α) implies P(α+1) for every ordinal α (successor step), and P(α) holding for all α < λ implies P(λ) for every limit ordinal λ (limit step), then P(α) holds for every ordinal α. The same principle applies verbatim to any well-ordered set (W, <), replacing 'ordinal' by 'element of W.'

P(0)P(0)
Base case: the property holds at the least element
α,  P(α)    P(α+1)\forall \alpha,\; P(\alpha) \implies P(\alpha+1)
Successor step
λ limit,  (β<λ,  P(β))    P(λ)\forall \lambda \text{ limit},\; \big(\forall \beta < \lambda,\; P(\beta)\big) \implies P(\lambda)
Limit step
[P(0)(successor step)(limit step)]    α,  P(α)\Big[P(0) \land (\text{successor step}) \land (\text{limit step})\Big] \implies \forall \alpha,\; P(\alpha)
Conclusion: P holds for every ordinal

Worked Examples

  1. Suppose for contradiction C is a class of ordinals with no least element; define P(α) as 'α ∉ C' and show P holds for all ordinals by transfinite induction, which forces C=∅.

    P(α):αCP(\alpha): \alpha \notin C
  2. Base case: if 0 ∈ C, then 0 would be C's least element (it's the least ordinal overall), contradicting 'no least element.' So 0 ∉ C, i.e. P(0) holds.

    0C    0=minC,  contradiction0 \in C \implies 0 = \min C,\; \text{contradiction}
  3. Inductive step (successor and limit combined): suppose β ∉ C for every β < α. If α ∈ C, then since no ordinal below α is in C, α would itself be the least element of C, a contradiction. So α ∉ C, i.e. P(α) holds.

    (β<α,βC)αC    α=minC(\forall \beta<\alpha,\, \beta\notin C) \land \alpha \in C \implies \alpha = \min C
  4. By transfinite induction, P(α) holds for every ordinal α, i.e. no ordinal is in C, so C = ∅.

    α,  αC    C=\forall \alpha,\; \alpha \notin C \implies C = \emptyset

Answer: Every nonempty class of ordinals has a least element — this is exactly the well-ordering property, proved here via transfinite induction on its contrapositive.

Practice Problems

Difficulty 6/10

What is the extra case that transfinite induction requires beyond ordinary mathematical induction, and why is it necessary?

Difficulty 7/10

Transfinite induction is valid on which kind of structure?

Difficulty 8/10

Suppose you prove P(0) and prove P(α) ⟹ P(α+1) for every ordinal α, but you skip the limit-ordinal case entirely. Explain concretely why you cannot conclude P(ω) holds, using ω as the first infinite ordinal (the order type of 0,1,2,3,...).

Common Mistakes

Common Mistake

Believing the base case and successor step alone suffice for transfinite induction, just as they do for ordinary induction on ℕ.

They suffice only up to but not including the first limit ordinal ω; without an explicit limit-ordinal case, nothing licenses concluding the property at ω or any later limit ordinal (ω·2, ω², etc.).

Common Mistake

Thinking transfinite induction only applies to 'exotic' infinite ordinals and has no bearing on ordinary finite induction.

Ordinary induction on ℕ is literally the special case of transfinite induction where the well-ordered set has no limit ordinals except possibly the induction never needing a limit step at all (ℕ's only 'limit-like' point would be past all naturals, i.e. ω, which is outside ℕ itself) — so ordinary induction is transfinite induction restricted to a well-order with no internal limit points.

Quiz

Transfinite induction differs from ordinary mathematical induction by adding a case for:
Transfinite induction is a valid proof technique on:
In the three-case formulation of transfinite induction, the limit step requires:

Summary

  • Transfinite induction generalizes mathematical induction from ℕ to any well-ordered set, in particular the ordinals.
  • It requires three cases: a base case P(0), a successor step P(α)⟹P(α+1), and a limit step: P holding below λ implies P(λ) for limit ordinals λ.
  • The limit step is the genuinely new ingredient, needed because limit ordinals like ω are not the successor of any single ordinal.
  • Transfinite recursion is the matching definitional counterpart, used e.g. to define ordinal arithmetic (2^α) for all ordinals.
  • The technique underlies proofs of the well-ordering property of the ordinals and many results throughout set theory.

References

  1. BookJech, T. Set Theory, 3rd ed., Ch. 2.