module Data.Fin.Closure where

Closure of finite sets🔗

In this module, we prove that the finite sets are closed under “typal arithmetic”: The initial and terminal objects are finite (they have 1 and 0 elements respectively), products of finite sets are finite, coproducts of finite sets are finite, and functions between finite sets are finite. Moreover, these operations all correspond to arithmetic operations on the natural number indices: etc.

Zero, one, successors🔗

The finite set is an initial object, and the finite set is a terminal object:

Finite-zero-is-initial : Fin 0 ≃ ⊥
Finite-zero-is-initial .fst ()
Finite-zero-is-initial .snd .is-eqv ()

Finite-one-is-contr : is-contr (Fin 1)
Finite-one-is-contr .centre = fzero
Finite-one-is-contr .paths fzero = refl

The successor operation on indices corresponds to taking coproducts with the unit set.

Finite-successor : Fin (suc n) ≃ (⊀ ⊎ Fin n)
Finite-successor {n} = Iso→Equiv (f , iso g f-g g-f) where
  f : Fin (suc n) → ⊀ ⊎ Fin n
  f fzero = inl tt
  f (fsuc x) = inr x

  g : ⊀ ⊎ Fin n → Fin (suc n)
  g (inr x) = fsuc x
  g (inl _) = fzero

  f-g : is-right-inverse g f
  f-g (inr _) = refl
  f-g (inl _) = refl

  g-f : is-left-inverse g f
  g-f fzero = refl
  g-f (fsuc x) = refl

Addition🔗

For binary coproducts, we prove the correspondence with addition in steps, to make the proof clearer:

Finite-coproduct : (Fin n ⊎ Fin m) ≃ Fin (n + m)
Finite-coproduct {zero} {m}  =
  (Fin 0 ⊎ Fin m) ≃⟹ ⊎-apl Finite-zero-is-initial ⟩≃
  (⊥ ⊎ Fin m)     ≃⟹ ⊎-zerol ⟩≃
  Fin m           ≃∎
Finite-coproduct {suc n} {m} =
  (Fin (suc n) ⊎ Fin m) ≃⟹ ⊎-apl Finite-successor ⟩≃
  ((⊀ ⊎ Fin n) ⊎ Fin m) ≃⟹ ⊎-assoc ⟩≃
  (⊀ ⊎ (Fin n ⊎ Fin m)) ≃⟹ ⊎-apr (Finite-coproduct {n} {m}) ⟩≃
  (⊀ ⊎ Fin (n + m))     ≃⟹ Finite-successor e⁻¹ ⟩≃
  Fin (suc (n + m))     ≃∎

Sums🔗

We also have a correspondence between “coproducts” and “addition” in the iterated case: If you have a family of finite types (represented by a map to their cardinalities), the dependent sum of that family is equivalent to the iterated binary sum of the cardinalities:

sum : ∀ n → (Fin n → Nat) → Nat
sum zero f = zero
sum (suc n) f = f fzero + sum n (f ∘ fsuc)

Finite-sum : (B : Fin n → Nat) → Σ (Fin _) (Fin ∘ B) ≃ Fin (sum n B)
Finite-sum {zero} B .fst ()
Finite-sum {zero} B .snd .is-eqv ()
Finite-sum {suc n} B =
  Σ (Fin (suc n)) (Fin ∘ B)              ≃⟹ Fin-suc-Σ ⟩≃
  Fin (B 0) ⊎ Σ (Fin n) (Fin ∘ B ∘ fsuc) ≃⟹ ⊎-apr (Finite-sum (B ∘ fsuc)) ⟩≃
  Fin (B 0) ⊎ Fin (sum n (B ∘ fsuc))     ≃⟹ Finite-coproduct ⟩≃
  Fin (sum (suc n) B)                    ≃∎

Multiplication🔗

Recall (from middle school) that the product is the same thing as summing together copies of the number Correspondingly, we can use the theorem above for general sums to establish the case of binary products:

Finite-multiply : (Fin n × Fin m) ≃ Fin (n * m)
Finite-multiply {n} {m} =
  (Fin n × Fin m)       ≃⟹ Finite-sum (λ _ → m) ⟩≃
  Fin (sum n (λ _ → m)) ≃⟹ cast (sum≡* n m) , cast-is-equiv _ ⟩≃
  Fin (n * m)           ≃∎
  where
    sum≡* : ∀ n m → sum n (λ _ → m) ≡ n * m
    sum≡* zero m = refl
    sum≡* (suc n) m = ap (m +_) (sum≡* n m)

Products🔗

Similarly to the case for sums, the cardinality of a dependent product of finite sets is the product of the cardinalities:

product : ∀ n → (Fin n → Nat) → Nat
product zero f = 1
product (suc n) f = f fzero * product n (f ∘ fsuc)

Finite-product : (B : Fin n → Nat) → (∀ x → Fin (B x)) ≃ Fin (product n B)
Finite-product {zero} B .fst _ = fzero
Finite-product {zero} B .snd = is-iso→is-equiv λ where
  .is-iso.inv _ ()
  .is-iso.rinv fzero → refl
  .is-iso.linv _ → funext λ ()
Finite-product {suc n} B =
  (∀ x → Fin (B x))                          ≃⟹ Fin-suc-Π ⟩≃
  Fin (B fzero) × (∀ x → Fin (B (fsuc x)))   ≃⟹ Σ-ap-snd (λ _ → Finite-product (B ∘ fsuc)) ⟩≃
  Fin (B fzero) × Fin (product n (B ∘ fsuc)) ≃⟹ Finite-multiply ⟩≃
  Fin (B fzero * product n (B ∘ fsuc))       ≃∎

Decidable subsets🔗

Given a decidable predicate on we can compute such that is equivalent to the subset of on which the predicate holds: a decidable proposition is finite (it has either or elements), so we can reuse our proof that finite sums of finite types are finite.

Dec→Fin
  : ∀ {ℓ} {A : Type ℓ} → is-prop A → Dec A
  → Σ Nat λ n → Fin n ≃ A
Dec→Fin ap (no ¬a) .fst = 0
Dec→Fin ap (no ¬a) .snd =
  is-empty→≃ (Finite-zero-is-initial .fst) ¬a
Dec→Fin ap (yes a) .fst = 1
Dec→Fin ap (yes a) .snd =
  is-contr→≃ Finite-one-is-contr (is-prop∙→is-contr ap a)

Finite-subset
  : ∀ {n} (P : Fin n → Type ℓ)
  → ⩃ ∀ {x} → H-Level (P x) 1 ⩄
  → ⩃ dec : ∀ {x} → Dec (P x) ⩄
  → Σ Nat λ s → Fin s ≃ Σ (Fin n) P
Finite-subset {n = n} P ⩃ dec = dec ⩄ =
  sum n ns , Finite-sum ns e⁻¹ ∙e Σ-ap-snd es
  where
    ns : Fin n → Nat
    ns i = Dec→Fin (hlevel 1) dec .fst
    es : (i : Fin n) → Fin (ns i) ≃ P i
    es i = Dec→Fin (hlevel 1) dec .snd

Decidable quotients🔗

As a first step towards coequalisers, we show that the quotient of a finite set by a decidable congruence is finite.

Finite-quotient
  : ∀ {n ℓ} (R : Congruence (Fin n) ℓ) (open Congruence R)
  → ⊃ _ : ∀ {x y} → Dec (x ∌ y) ⩄
  → Σ Nat λ q → Fin q ≃ Fin n / _∌_

This amounts to counting the number of equivalence classes of We proceed by induction on the base case is trivial.

Finite-quotient {zero} R .fst = 0
Finite-quotient {zero} R .snd .fst ()
Finite-quotient {zero} R .snd .snd .is-eqv = elim! λ ()

For the induction step, we restrict along the successor map to get a congruence on whose quotient is finite.

Finite-quotient {suc n} {ℓ} R = go where
  module R = Congruence R

  R₁ : Congruence (Fin n) ℓ
  R₁ = Congruence-pullback fsuc R
  module R₁ = Congruence R₁

  n/R₁ : Σ Nat λ q → Fin q ≃ Fin n / R₁._∌_
  n/R₁ = Finite-quotient {n} R₁

In order to compute the size of the quotient we decide whether is related by to any using the omniscience of finite sets.

  go
    : ⊃ Dec (Σ (Fin n) (λ i → fzero R.∌ fsuc i)) ⩄
    → Σ Nat (λ q → Fin q ≃ Fin (suc n) / R._∌_)

If so, lives in the same equivalence class as and the size of the quotient remains unchanged.

  go ⩃ yes (i , r) ⩄ .fst = n/R₁ .fst
  go ⩃ yes (i , r) ⩄ .snd = n/R₁ .snd ∙e Iso→Equiv is where
    is : Iso (Fin n / R₁._∌_) (Fin (suc n) / R._∌_)
    is .fst = Coeq-rec (λ x → inc (fsuc x)) λ (x , y , s) → quot s
    is .snd .inv = Coeq-rec
      (λ where fzero → inc i
               (fsuc x) → inc x)
      (λ where (fzero , fzero , s) → refl
               (fzero , fsuc y , s) → quot (R.symᶜ r R.∙ᶜ s)
               (fsuc x , fzero , s) → quot (s R.∙ᶜ r)
               (fsuc x , fsuc y , s) → quot s)
    is .snd .rinv = elim! λ where
      fzero → quot (R.symᶜ r)
      (fsuc x) → refl
    is .snd .linv = elim! λ _ → refl

Otherwise, creates a new equivalence class for itself.

  go ⊃ no ¬r ⩄ .fst = suc (n/R₁ .fst)
  go ⊃ no ¬r ⩄ .snd = Finite-successor ∙e ⊎-apr (n/R₁ .snd) ∙e Iso→Equiv is where
    to : Fin (suc n) → ⊀ ⊎ (Fin n / R₁._∌_)
    to fzero = inl _
    to (fsuc x) = inr (inc x)

    is : Iso (⊀ ⊎ (Fin n / R₁._∌_)) (Fin (suc n) / R._∌_)
    is .fst (inl tt) = inc 0
    is .fst (inr x) = Coeq-rec (λ x → inc (fsuc x)) (λ (x , y , s) → quot s) x
    is .snd .inv = Coeq-rec to λ where
      (fzero , fzero , s) → refl
      (fzero , fsuc y , s) → absurd (¬r (y , s))
      (fsuc x , fzero , s) → absurd (¬r (x , R.symᶜ s))
      (fsuc x , fsuc y , s) → ap inr (quot s)
    is .snd .rinv = elim! go' where
      go' : ∀ x → is .fst (to x) ≡ inc x
      go' fzero = refl
      go' (fsuc _) = refl
    is .snd .linv (inl tt) = refl
    is .snd .linv (inr x) = elim x where
      elim : ∀ x → is .snd .inv (is .fst (inr x)) ≡ inr x
      elim = elim! λ _ → refl

Coequalisers🔗

Given two functions we can compute such that is equivalent to the coequaliser of and We start by expressing the coequaliser as the quotient of by the congruence generated by the relation so that we can apply the result above. Since this relation is clearly decidable by the omniscience of all that remains is to show that the closure of a decidable relation on a finite set is decidable.

instance
  Closure-Fin-Dec
    : ∀ {n ℓ} {R : Fin n → Fin n → Type ℓ}
    → ⩃ ∀ {x y} → Dec (R x y) ⩄
    → ∀ {x y} → Dec (Closure R x y)

This amounts to writing a (verified!) pathfinding algorithm: given we need to decide whether there is a path between and in the undirected graph whose edges are given by

We proceed by induction on the base case is trivial, so we are left with the inductive case The simplest1 way forward is to find a decidable congruence that is equivalent to the closure

We start by defining the restriction of along the successor map written as well as the symmetric closure of written

  Closure-Fin-Dec {suc n} {R = R} {x} {y} = R*-dec where
    open Congruence
    module R = Congruence (Closure-congruence R)

    R₁ : Fin n → Fin n → Type _
    R₁ x y = R (fsuc x) (fsuc y)
    module R₁ = Congruence (Closure-congruence R₁)

    R₁→R : ∀ {x y} → Closure R₁ x y → Closure R (fsuc x) (fsuc y)
    R₁→R = Closure-rec-congruence R₁
      (Congruence-pullback fsuc (Closure-congruence R)) inc

    Rˢ : Fin (suc n) → Fin (suc n) → Type _
    Rˢ x y = R x y ⊎ R y x

    Rˢ→R : ∀ {x y} → Rˢ x y → Closure R x y
    Rˢ→R = [ inc , R.symᶜ ∘ inc ]

We build by cases. is trivial, since the closure is reflexive.

    D : Fin (suc n) → Fin (suc n) → Type _
    D fzero fzero = Lift _ ⊀

For we use the omniscience of to search for an such that and Here we rely on the closure of being decidable by the induction hypothesis. The case is symmetric.

    D fzero (fsuc y) = Σ[ x ∈ Fin n ] Rˢ 0 (fsuc x) × Closure R₁ x y
    D (fsuc x) fzero = Σ[ y ∈ Fin n ] Closure R₁ x y × Rˢ (fsuc y) 0

Finally, in order to decide whether and are related by we have two possibilities: either there is a path from to in which we can find using the induction hypothesis, or there are are paths from to and from to in which we can find using the previous two cases.

    D (fsuc x) (fsuc y) = Closure R₁ x y ⊎ D (fsuc x) 0 × D 0 (fsuc y)

Proving that (the propositional truncation of) is a decidable congruence is tedious but not difficult.

    D-cong : Congruence (Fin (suc n)) _
    instance D-Dec : ∀ {x y} → Dec (D x y)
    D-refl : ∀ x → D x x
    D-refl fzero = _
    D-refl (fsuc x) = inl R₁.reflᶜ

    D-trans : ∀ x y z → D x y → D y z → D x z
    D-trans fzero fzero z _ d = d
    D-trans fzero (fsuc y) fzero _ _ = _
    D-trans fzero (fsuc y) (fsuc z) (y' , ry , cy) (inl c) = y' , ry , cy R₁.∙ᶜ c
    D-trans fzero (fsuc y) (fsuc z) _ (inr (_ , dz)) = dz
    D-trans (fsuc x) fzero fzero d _ = d
    D-trans (fsuc x) fzero (fsuc z) dx dy = inr (dx , dy)
    D-trans (fsuc x) (fsuc y) fzero (inl c) (y' , cy , ry) = y' , c R₁.∙ᶜ cy , ry
    D-trans (fsuc x) (fsuc y) fzero (inr (dx , _)) _ = dx
    D-trans (fsuc x) (fsuc y) (fsuc z) (inl c) (inl d) = inl (c R₁.∙ᶜ d)
    D-trans (fsuc x) (fsuc y) (fsuc z) (inl c) (inr ((y' , cy , ry) , dz)) =
        inr ((y' , c R₁.∙ᶜ cy , ry) , dz)
    D-trans (fsuc x) (fsuc y) (fsuc z) (inr (dx , (y' , ry , cy))) (inl c) =
        inr (dx , y' , ry , cy R₁.∙ᶜ c)
    D-trans (fsuc x) (fsuc y) (fsuc z) (inr (dx , dy)) (inr (dy' , dz)) =
        inr (dx , dz)

    D-sym : ∀ x y → D x y → D y x
    D-sym fzero fzero _ = _
    D-sym fzero (fsuc y) (y' , r , c) = y' , R₁.symᶜ c , ⊎-comm .fst r
    D-sym (fsuc x) fzero (x' , c , r) = x' , ⊎-comm .fst r , R₁.symᶜ c
    D-sym (fsuc x) (fsuc y) (inl r) = inl (R₁.symᶜ r)
    D-sym (fsuc x) (fsuc y) (inr (dx , dy)) =
      inr (D-sym fzero (fsuc y) dy , D-sym (fsuc x) fzero dx)

    D-cong ._∌_ x y = ∥ D x y ∥
    D-cong .has-is-prop _ _ = hlevel 1
    D-cong .reflᶜ {x} = inc (D-refl x)
    D-cong ._∙ᶜ_ {x} {y} {z} = ∥-∥-map₂ (D-trans x y z)
    D-cong .symᶜ {x} {y} = map (D-sym x y)

    {-# INCOHERENT D-Dec #-}
    D-Dec {fzero} {fzero} = auto
    D-Dec {fzero} {fsuc y} = auto
    D-Dec {fsuc x} {fzero} = auto
    D-Dec {fsuc x} {fsuc y} = auto

To complete the proof, we show that is indeed equivalent to it suffices to show that lies between and

    R→D : ∀ {x y} → R x y → D x y
    R→D {fzero} {fzero} _ = _
    R→D {fzero} {fsuc y} r = y , inl r , R₁.reflᶜ
    R→D {fsuc x} {fzero} r = x , R₁.reflᶜ , inl r
    R→D {fsuc x} {fsuc y} r = inl (inc r)

    D→R* : ∀ {x y} → D x y → Closure R x y
    D→R* {fzero} {fzero} _ = R.reflᶜ
    D→R* {fzero} {fsuc y} (y' , r , c) = Rˢ→R r R.∙ᶜ R₁→R c
    D→R* {fsuc x} {fzero} (x' , c , r) = R₁→R c R.∙ᶜ Rˢ→R r
    D→R* {fsuc x} {fsuc y} (inl r) = R₁→R r
    D→R* {fsuc x} {fsuc y} (inr (dx , dy)) = D→R* dx R.∙ᶜ D→R* {fzero} dy

    R*→D : ∀ {x y} → Closure R x y → ∥ D x y ∥
    R*→D = Closure-rec-congruence R D-cong (inc ∘ R→D)

    R*-dec : Dec (Closure R x y)
    R*-dec = invmap (rec! D→R*) R*→D (holds? ∥ D x y ∥)

We can finally assemble the pieces together: given the coequaliser of and is equivalent to the quotient of by the decidable relation induced by and and hence by its congruence closure But we know that quotients of finite sets by decidable congruences are finite, and we just proved that the closure of a decidable relation on a finite set is decidable, so we’re done.

Finite-coequaliser
  : ∀ {n m} (f g : Fin m → Fin n)
  → Σ Nat λ q → Fin q ≃ Coeq f g
Finite-coequaliser {n} f g
  = n/R .fst
  , n/R .snd
    ∙e Closure-quotient R e⁻¹
    ∙e Coeq≃quotient f g e⁻¹
  where
    R = span→R f g

    n/R : Σ Nat λ q → Fin q ≃ Fin n / Closure R
    n/R = Finite-quotient (Closure-congruence R)

  1. In terms of ease of implementation; the complexity of the resulting algorithm is catastrophic.↩