module Data.Int.Universal where
Universal property of the integers🔗
We define and prove a type-theoretic universal property of the integers, which characterises them as the initial pointed set equipped with an auto-equivalence, in much the same way that the natural numbers are characterised as being the initial pointed type equipped with an endomorphism.
record Integers (ℤ : Type) : Typeω where
no-eta-equality
field
: is-set ℤ
ℤ-is-set : ℤ
point : ℤ ≃ ℤ rotate
We start by giving a mapping-out property: If is any other type with and then there is a map which sends our point (which may as well be called zero) to and commutes with our equivalence. Note that commuting with the equivalence implies commuting with its inverse, too.
: ∀ {ℓ} {X : Type ℓ} → X → X ≃ X → ℤ → X
map-out : ∀ {ℓ} {X : Type ℓ} (p : X) (r : X ≃ X) → map-out p r point ≡ p
map-out-point
map-out-rotate: ∀ {ℓ} {X : Type ℓ} (p : X) (r : X ≃ X) (i : ℤ)
→ map-out p r (rotate .fst i) ≡ r .fst (map-out p r i)
We obtain a sort of initiality by requiring that map-out
be unique among functions with
these properties.
map-out-unique: ∀ {ℓ} {X : Type ℓ} (f : ℤ → X) {p : X} {r : X ≃ X}
→ f point ≡ p
→ (∀ x → f (rotate .fst x) ≡ r .fst (f x))
→ ∀ x → f x ≡ map-out p r x
By a standard categorical argument, existence and uniqueness together give us an induction principle for the integers: to construct a section of a type family it is enough to give an element of and a family of equivalences
: ∀ z → map-out point rotate z ≡ z
ℤ-η = sym (map-out-unique id refl (λ _ → refl) z)
ℤ-η z
induction: ∀ {ℓ} {P : ℤ → Type ℓ}
→ P point
→ (∀ z → P z ≃ P (rotate .fst z))
→ ∀ z → P z
{P = P} pp pr = section where
induction : ℤ → Σ ℤ P
tot = map-out (point , pp) (Σ-ap rotate pr)
tot
: ∀ z → tot z .fst ≡ map-out point rotate z
is-section = map-out-unique (fst ∘ tot)
is-section (ap fst (map-out-point _ _))
(λ z → ap fst (map-out-rotate _ _ z))
: ∀ z → P z
section = subst P (is-section z ∙ ℤ-η z) (tot z .snd) section z
We now prove that the integers are a set of integers. This isn’t as tautological as it sounds, sadly, because our integers were designed to be convenient for algebra, and this specific universal property is rather divorced from algebra. Fortunately, it’s still not too hard, so join me.
open Integers
: Integers HIT.Int
HIT-Int-integers = r where
HIT-Int-integers module map-out {ℓ} {X : Type ℓ} (l : X ≃ X) where
We start by making a simple observation: Exponentiation commutes with difference, where by exponentiation we mean iterated composition of equivalences. That is: if is an integer expressed as a formal difference of naturals then we can compute the power as the difference of equivalences
: Nat → X ≃ X
n-power = (λ x → x) , id-equiv
n-power zero (suc x) = n-power x ∙e l
n-power
private
: ∀ m n x
lemma → (n-power n e⁻¹) .fst (n-power m .fst x)
(n-power n e⁻¹) .fst (Equiv.from (l) (l .fst (n-power m .fst x)))
≡ = ap ((n-power n e⁻¹) .fst) (sym (Equiv.η l _))
lemma m n x
: HIT.Int → X ≃ X
go (HIT.diff x y) = n-power x ∙e (n-power y e⁻¹)
go (HIT.quot m n i) = Σ-prop-path!
go {x = n-power m ∙e (n-power n e⁻¹)}
{y = n-power (suc m) ∙e (n-power (suc n) e⁻¹)}
(funext (lemma m n)) i
To show that this computation respects the quotient, we must calculate that is which follows almost immediately from the properties of equivalences, cancelling the critical pair in the middle.
: Integers HIT.Int
r .ℤ-is-set = hlevel 2
r .point = 0
r .rotate = HIT.sucℤ , HIT.sucℤ-is-equiv
r .map-out point rot int = map-out.go rot int .fst point
r .map-out-point p _ = refl
r .map-out-rotate p rot i = map-out.map-suc rot i _ r
Using elimination by sign, we can divide the proof of uniqueness to the case where is a positive natural number, where is a negated natural number, and when is zero. The case is one of the assumptions, the other cases follow by induction (on naturals).
.map-out-unique {X = X} f {point} {rot} path htpy =
r .Int-elim-by-sign (λ z → f z ≡ r .map-out _ _ z) unique-pos unique-neg path
HITwhere abstract
: ∀ k → f (HIT.diff k 0) ≡ map-out.n-power rot k .fst point
unique-pos = path
unique-pos zero (suc k) = htpy (HIT.diff k 0) ∙ ap (rot .fst) (unique-pos k)
unique-pos
: ∀ k → f (HIT.diff 0 k) ≡ Equiv.from (map-out.n-power rot k) point
unique-neg = path
unique-neg zero (suc k) =
unique-neg (Equiv.η rot _)
sym (Equiv.from rot) (
·· ap (htpy (HIT.diff 0 (suc k)))
sym (sym (HIT.quot 0 k))
·· ap f )
·· unique-neg k(map-out.negatives⁻¹ rot k _) ·· sym
Inductive integers are integers🔗
In the 1Lab, we have another implementation of the integers, in
addition to the ones defined by quotient, which we have already
characterised as satisfying the universal property, above. These are the
inductive integers: defined as a particular binary coproduct of
natural numbers. To avoid the problem of having “two zeroes”, one of the
summands is tagged “negative successor,” rather than “successor”, so
that negsuc 0
indicates the number
We have already proven that the inductive integers have a successor equivalence: What we now do is prove this equivalence is universal.
: Integers Ind.Int
Int-integers = r where
Int-integers module map-out {ℓ} {X : Type ℓ} (l : X ≃ X) where
: Nat → X ≃ X
pos = _ , id-equiv
pos zero (suc x) = pos x ∙e l
pos
: Nat → X ≃ X
neg = l e⁻¹
neg zero (suc x) = neg x ∙e (l e⁻¹)
neg
to : Ind.Int → X ≃ X
to (Ind.pos x) = pos x
to (Ind.negsuc x) = neg x
: Integers Ind.Int
r .ℤ-is-set = Discrete→is-set Ind.Discrete-Int
r .point = Ind.pos 0
r .rotate = Ind.suc-equiv
r .map-out p e i = map-out.to e i .fst p
r .map-out-point p _ = refl
r .map-out-rotate p e = go where
r : ∀ x → r .map-out p e (r .rotate .fst x)
go .fst (r .map-out p e x)
≡ e (Ind.pos x) = refl
go (Ind.negsuc zero) = sym (Equiv.ε e _)
go (Ind.negsuc (suc x)) = sym (Equiv.ε e _)
go .map-out-unique f {p} {rot} fz fr = go where
r : ∀ n → f (Ind.pos n) ≡ map-out.pos rot n .fst p
pos = fz
pos zero (suc n) = fr (Ind.pos n) ∙ ap (rot .fst) (pos n)
pos
: ∀ n → f (Ind.predℤ n) ≡ Equiv.from rot (f n)
map-pred = sym (Equiv.η rot _)
map-pred n (Equiv.from rot) (sym (fr _))
·· ap (Equiv.from rot ∘ f) (Ind.suc-predℤ n)
·· ap
: ∀ n → f (Ind.negsuc n) ≡ map-out.neg rot n .fst p
neg = map-pred (Ind.pos 0) ∙ ap (Equiv.from rot) fz
neg zero (suc n) = map-pred (Ind.negsuc n) ∙ ap (Equiv.from rot) (neg n)
neg
: ∀ i → f i ≡ r .map-out _ _ i
go (Ind.pos x) = pos x
go (Ind.negsuc x) = neg x go