Skip to content
Part IA Michaelmas, Lent Term

Well-Foundedness

Minimal Elements

Definition

Let \prec be a relation on AA. An element mSAm \in S \subseteq A is minimal in SS if:

¬xS.xm\neg\exists x \in S. x \prec m

No element of SS is strictly below mm.

Distinction: Minimal vs Least

  • Minimal: No element is below mm (local property)
  • Least: mm is below every element of SS

A set can have multiple minimal elements but at most one least element.

Example

On {1,2,3}\{1, 2, 3\} with partial order given by divisibility:

  • Minimal elements of {2,3,4,6}\{2, 3, 4, 6\} are 22 and 33
  • No least element

Well-Founded Relations

Definition

A relation \prec on AA is well-founded if every non-empty subset SAS \subseteq A has a minimal element.

SA.(SmS.¬xS.xm)\forall S \subseteq A. (S \neq \emptyset \Rightarrow \exists m \in S. \neg\exists x \in S. x \prec m)

Equivalent Characterisation

\prec is well-founded iff there is no infinite descending chain:

a0a1a2a_0 \succ a_1 \succ a_2 \succ \cdots

Proof:

()(\Rightarrow): If such a chain exists, the set {a0,a1,a2,}\{a_0, a_1, a_2, \ldots\} has no minimal element.

()(\Leftarrow): If some SS has no minimal element, we can build a descending chain by repeatedly choosing smaller elements.

Examples

Well-Founded

  • << on N\mathbb{N}: Every non-empty subset has a least element (well-order)
  • << on Z\mathbb{Z} restricted to {n:nk}\{n : n \geq k\} for any kk
  • The “proper subterm” relation on finite trees

Not Well-Founded

  • << on Z\mathbb{Z}: {,2,1,0}\{\ldots, -2, -1, 0\} has no minimal element
  • << on Q(0,1)\mathbb{Q} \cap (0, 1): {1/n:n1}\{1/n : n \geq 1\} has no minimal element
  • << on R\mathbb{R}: any unbounded-below subset

Well-Orders

Definition

A well-order is a well-founded total order.

Every non-empty subset has a unique least element.

Examples

  • (N,)(\mathbb{N}, \leq) is a well-order
  • (Z,)(\mathbb{Z}, \leq) is NOT a well-order
  • Any finite totally ordered set is a well-order

Properties

If \prec is a well-order, then:

  1. Every non-empty subset has a unique least element
  2. For each aa, the set {x:xa}\{x : x \prec a\} is well-ordered
  3. Principle of induction applies (see next section)

The Axiom of Foundation

In ZF set theory, the Axiom of Foundation states that \in is well-founded on any set.

This prohibits infinite descending \in-chains: x2x1x0\cdots \in x_2 \in x_1 \in x_0


Summary

  • mm is minimal in SS if no element of SS is below mm
  • \prec is well-founded if every non-empty subset has a minimal element
  • Equivalent: no infinite descending chains
  • << on N\mathbb{N} is well-founded; << on Z\mathbb{Z} or Q\mathbb{Q} is not
  • A well-order is a well-founded total order