Ordinals.Exponentiation
Tom de Jong, Nicolai Kraus, Fredrik Nordvall Forsberg, Chuangjie Xu,
November 2023 — January 2025
With additions in April 2025, notably (9) below.
{-# OPTIONS --safe --without-K #-}
module Ordinals.Exponentiation.index where
OVERVIEW
========
1. Specification of ordinal exponentiation.
2. An abstract construction of ordinal exponentiation using suprema of
ordinals.
3. A concrete construction of ordinal exponentiation using decreasing lists.
4. Direct proofs of a few properties of the concrete construction of
exponentiation, including that the construction meets the specification.
5. Relating the abstract and concrete constructions with an equivalence for
base ordinals with a trichotomous least element.
6. Properties of both the abstract and concrete constructions (via transport
and the above equivalence).
7. Auxiliary result that an ordinal α has a trichotomous least element if and
only if it can be decomposed as 𝟙ₒ +ₒ α' for a necessarily unique ordinal α'.
8. Constructive taboos involving ordinal exponentiation.
9. An implementation of Robin Grayson's variant of the decreasing list
construction of exponentials and a proof that it is not, in general, an
ordinal.
10. Miscellaneous properties of exponentiation.
import Ordinals.Exponentiation.Specification
import Ordinals.Exponentiation.Supremum
import Ordinals.Exponentiation.DecreasingList
import Ordinals.Exponentiation.DecreasingListProperties-Concrete
import Ordinals.Exponentiation.RelatingConstructions
import Ordinals.Exponentiation.PropertiesViaTransport
import Ordinals.Exponentiation.TrichotomousLeastElement
import Ordinals.Exponentiation.Taboos
import Ordinals.Exponentiation.Grayson
import Ordinals.Exponentiation.Miscellaneous
The following file acts as an index for the paper "Ordinal Exponentiation in
Homotopy Type Theory".
import Ordinals.Exponentiation.Paper
And the following file acts as an index for the paper "Constructive Ordinal
Exponentiation".
import Ordinals.Exponentiation.PaperJournal