Principal ordinals #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
We define principal or indecomposable ordinals, and we prove the standard properties about them.
Main definitions and results #
principal
: A principal or indecomposable ordinal under some binary operation. We include 0 and any other typically excluded edge cases for simplicity.unbounded_principal
: Principal ordinals are unbounded.principal_add_iff_zero_or_omega_opow
: The main characterization theorem for additive principal ordinals.principal_mul_iff_le_two_or_omega_opow_opow
: The main characterization theorem for multiplicative principal ordinals.
Todo #
- Prove that exponential principal ordinals are 0, 1, 2, ω, or epsilon numbers, i.e. fixed points
of
λ x, ω ^ x
.
Principal ordinals #
An ordinal o
is said to be principal or indecomposable under an operation when the set of
ordinals less than it is closed under that operation. In standard mathematical usage, this term is
almost exclusively used for additive and multiplicative principal ordinals.
For simplicity, we break usual convention and regard 0 as principal.
Principal ordinals are unbounded #
The least strict upper bound of op
applied to all pairs of ordinals less than o
. This is
essentially a two-argument version of ordinal.blsub
.
Equations
- ordinal.blsub₂ op o = ordinal.lsub (λ (x : (quotient.out o).α × (quotient.out o).α), op (ordinal.typein has_lt.lt x.fst) (ordinal.typein has_lt.lt x.snd))
Additive principal ordinals #
The main characterization theorem for additive principal ordinals.
Multiplicative principal ordinals #
The main characterization theorem for multiplicative principal ordinals.