Ordinal arithmetic #
Ordinals have an addition (corresponding to disjoint union) that turns them into an additive monoid, and a multiplication (corresponding to the lexicographic order on the product) that turns them into a monoid. One can also define correspondingly a subtraction, a division, a successor function, a power function and a logarithm function.
We also define limit ordinals and prove the basic induction principle on ordinals separating
successor ordinals and limit ordinals, in limitRecOn
.
Main definitions and results #
o₁ + o₂
is the order on the disjoint union ofo₁
ando₂
obtained by declaring that every element ofo₁
is smaller than every element ofo₂
.o₁ - o₂
is the unique ordinalo
such thato₂ + o = o₁
, wheno₂ ≤ o₁
.o₁ * o₂
is the lexicographic order ono₂ × o₁
.o₁ / o₂
is the ordinalo
such thato₁ = o₂ * o + o'
witho' < o₂
. We also define the divisibility predicate, and a modulo operation.Order.succ o = o + 1
is the successor ofo
.pred o
if the predecessor ofo
. Ifo
is not a successor, we setpred o = o
.
We discuss the properties of casts of natural numbers of and of ω
with respect to these
operations.
Some properties of the operations are also used to discuss general tools on ordinals:
IsLimit o
: an ordinal is a limit ordinal if it is neither0
nor a successor.limitRecOn
is the main induction principle of ordinals: if one can prove a property by induction at successor ordinals and at limit ordinals, then it holds for all ordinals.IsNormal
: a functionf : Ordinal → Ordinal
satisfiesIsNormal
if it is strictly increasing and order-continuous, i.e., the imagef o
of a limit ordinalo
is the sup off a
fora < o
.enumOrd
: enumerates an unbounded set of ordinals by the ordinals themselves.sup
,lsub
: the supremum / least strict upper bound of an indexed family of ordinals inType u
, as an ordinal inType u
.bsup
,blsub
: the supremum / least strict upper bound of a set of ordinals indexed by ordinals less than a given ordinalo
.
Various other basic arithmetic results are given in Principal.lean
instead.
Further properties of addition on ordinals #
Equations
Equations
Equations
Equations
The predecessor of an ordinal #
The ordinal predecessor of o
is o'
if o = succ o'
,
and o
otherwise.
Equations
- Ordinal.pred o = if h : ∃ (a : Ordinal.{u_4}), o = Order.succ a then Classical.choose h else o
Instances For
Limit ordinals #
A limit ordinal is an ordinal which is not zero and not a successor.
Equations
- Ordinal.IsLimit o = (o ≠ 0 ∧ ∀ a < o, Order.succ a < o)
Instances For
Main induction principle of ordinals: if one can prove a property by induction at successor ordinals and at limit ordinals, then it holds for all ordinals.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Normal ordinal functions #
A normal ordinal function is a strictly increasing function which is
order-continuous, i.e., the image f o
of a limit ordinal o
is the sup of f a
for
a < o
.
Equations
- Ordinal.IsNormal f = ((∀ (o : Ordinal.{u_4}), f o < f (Order.succ o)) ∧ ∀ (o : Ordinal.{u_4}), Ordinal.IsLimit o → ∀ (a : Ordinal.{u_5}), f o ≤ a ↔ ∀ b < o, f b ≤ a)
Instances For
Alias of Ordinal.add_isLimit
.
Subtraction on ordinals #
The set in the definition of subtraction is nonempty.
a - b
is the unique ordinal satisfying b + (a - b) = a
when b ≤ a
.
Equations
- Ordinal.sub = { sub := fun (a b : Ordinal.{u_4}) => sInf {o : Ordinal.{u_4} | a ≤ b + o} }
Multiplication of ordinals #
The multiplication of ordinals o₁
and o₂
is the (well founded) lexicographic order on
o₂ × o₁
.
Equations
Equations
Equations
Equations
Division on ordinals #
The set in the definition of division is nonempty.
a / b
is the unique ordinal o
satisfying a = b * o + o'
with o' < b
.
Equations
- Ordinal.div = { div := fun (a b : Ordinal.{u_4}) => if _h : b = 0 then 0 else sInf {o : Ordinal.{u_4} | a < b * Order.succ o} }
Equations
a % b
is the unique ordinal o'
satisfying
a = b * o + o'
with o' < b
.
Equations
- Ordinal.mod = { mod := fun (a b : Ordinal.{u_4}) => a - b * (a / b) }
Families of ordinals #
There are two kinds of indexed families that naturally arise when dealing with ordinals: those indexed by some type in the appropriate universe, and those indexed by ordinals less than another. The following API allows one to convert from one kind of family to the other.
In many cases, this makes it easy to prove claims about one kind of family via the corresponding claim on the other.
Converts a family indexed by a Type u
to one indexed by an Ordinal.{u}
using a specified
well-ordering.
Equations
- Ordinal.bfamilyOfFamily' r f a ha = f (Ordinal.enum r a ha)
Instances For
Converts a family indexed by a Type u
to one indexed by an Ordinal.{u}
using a well-ordering
given by the axiom of choice.
Equations
- Ordinal.bfamilyOfFamily = Ordinal.bfamilyOfFamily' WellOrderingRel
Instances For
Converts a family indexed by an Ordinal.{u}
to one indexed by a Type u
using a specified
well-ordering.
Equations
- Ordinal.familyOfBFamily' r ho f i = f (Ordinal.typein r i) ⋯
Instances For
Converts a family indexed by an Ordinal.{u}
to one indexed by a Type u
using a well-ordering
given by the axiom of choice.
Equations
- Ordinal.familyOfBFamily o f = Ordinal.familyOfBFamily' (fun (x x_1 : (Quotient.out o).α) => x < x_1) ⋯ f
Instances For
The range of a family indexed by ordinals.
Equations
- Ordinal.brange o f = {a : α | ∃ (i : Ordinal.{u_4}) (hi : i < o), f i hi = a}
Instances For
Supremum of a family of ordinals #
The range of an indexed ordinal function, whose outputs live in a higher universe than the
inputs, is always bounded above. See Ordinal.lsub
for an explicit bound.
The supremum of a family of ordinals indexed by the set of ordinals less than some
o : Ordinal.{u}
. This is a special case of sup
over the family provided by
familyOfBFamily
.
Equations
- Ordinal.bsup o f = Ordinal.sup (Ordinal.familyOfBFamily o f)
Instances For
The least strict upper bound of a family of ordinals.
Equations
- Ordinal.lsub f = Ordinal.sup (Order.succ ∘ f)
Instances For
The least strict upper bound of a family of ordinals indexed by the set of ordinals less than
some o : Ordinal.{u}
.
This is to lsub
as bsup
is to sup
.
Equations
- Ordinal.blsub o f = Ordinal.bsup o fun (a : Ordinal.{u}) (ha : a < o) => Order.succ (f a ha)
Instances For
A two-argument version of Ordinal.blsub
.
We don't develop a full API for this, since it's only used in a handful of existence results.
Equations
- Ordinal.blsub₂ o₁ o₂ op = Ordinal.lsub fun (x : (Quotient.out o₁).α × (Quotient.out o₂).α) => op ⋯ ⋯
Instances For
Minimum excluded ordinals #
The minimum excluded ordinal in a family of ordinals.
Equations
- Ordinal.mex f = sInf (Set.range f)ᶜ
Instances For
The minimum excluded ordinal of a family of ordinals indexed by the set of ordinals less than
some o : Ordinal.{u}
. This is a special case of mex
over the family provided by
familyOfBFamily
.
This is to mex
as bsup
is to sup
.
Equations
- Ordinal.bmex o f = Ordinal.mex (Ordinal.familyOfBFamily o f)
Instances For
Results about injectivity and surjectivity #
The type of ordinals in universe u
is not Small.{u}
. This is the type-theoretic analog of
the Burali-Forti paradox.
Enumerating unbounded sets of ordinals with ordinals #
Enumerator function for an unbounded set of ordinals.
Equations
- Ordinal.enumOrd S = WellFounded.fix Ordinal.lt_wf fun (o : Ordinal.{u}) (f : (y : Ordinal.{u}) → y < o → Ordinal.{u}) => sInf (S ∩ Set.Ici (Ordinal.blsub o f))
Instances For
The equation that characterizes enumOrd
definitionally. This isn't the nicest expression to
work with, so consider using enumOrd_def
instead.
The set in enumOrd_def'
is nonempty.
A more workable definition for enumOrd
.
The set in enumOrd_def
is nonempty.
An order isomorphism between an unbounded set of ordinals and the ordinals.
Equations
- Ordinal.enumOrdOrderIso hS = StrictMono.orderIsoOfSurjective (fun (o : Ordinal.{u}) => { val := Ordinal.enumOrd S o, property := ⋯ }) ⋯ ⋯
Instances For
A characterization of enumOrd
: it is the unique strict monotonic function with range S
.
Casting naturals into ordinals, compatibility with operations #
Alias of Nat.cast_le
, specialized to Ordinal
-
Alias of Nat.cast_inj
, specialized to Ordinal
-
Alias of Nat.cast_lt
, specialized to Ordinal
-
Alias of Nat.cast_eq_zero
, specialized to Ordinal
-
Alias of Nat.cast_eq_zero
, specialized to Ordinal
-
Alias of Nat.cast_pos'
, specialized to Ordinal
-
Properties of omega
#
The rank of an element a
accessible under a relation r
is defined inductively as the
smallest ordinal greater than the ranks of all elements below it (i.e. elements b
such that
r b a
).
Equations
- Acc.rank h = Acc.recOn h fun (a : α) (_h : ∀ (y : α), r y a → Acc r y) (ih : (y : α) → r y a → Ordinal.{u}) => Ordinal.sup fun (b : { b : α // r b a }) => Order.succ (ih ↑b ⋯)
Instances For
The rank of an element a
under a well-founded relation r
is defined inductively as the
smallest ordinal greater than the ranks of all elements below it (i.e. elements b
such that
r b a
).
Equations
- WellFounded.rank hwf a = Acc.rank ⋯