module Cat.Diagram.Zero where
Zero objects🔗
In some categories, Initial
and
Terminal
objects coincide. When
this occurs, we call the object a zero object.
record is-zero (ob : Ob) : Type (o ⊔ h) where
field
: is-initial C ob
has-is-initial : is-terminal C ob
has-is-terminal
record Zero : Type (o ⊔ h) where
field
: Ob
∅ : is-zero ∅
has-is-zero
open is-zero has-is-zero public
: Terminal C
terminal = record { top = ∅ ; has⊤ = has-is-terminal }
terminal
: Initial C
initial = record { bot = ∅ ; has⊥ = has-is-initial }
initial
open Terminal terminal public hiding (top)
open Initial initial public hiding (bot)
A curious fact about zero objects is that their existence implies that every hom set is inhabited!
: ∀ {x y} → Hom x y
zero→ = ¡ ∘ !
zero→
: ∀ {x y z} → (f : Hom y z) → f ∘ zero→ {x} {y} ≡ zero→
zero-∘l = pulll (sym (¡-unique (f ∘ ¡)))
zero-∘l f
: ∀ {x y z} → (f : Hom x y) → zero→ {y} {z} ∘ f ≡ zero→
zero-∘r = pullr (sym (!-unique (! ∘ f)))
zero-∘r f
: ∀ {x y z} → (f : Hom y z) → (g : Hom x y) → f ∘ zero→ ≡ zero→ ∘ g
zero-comm = zero-∘l f ∙ sym (zero-∘r g)
zero-comm f g
: ∀ {x y z} → (f : Hom y z) → (g : Hom x y) → zero→ ∘ f ≡ g ∘ zero→
zero-comm-sym = zero-∘r f ∙ sym (zero-∘l g) zero-comm-sym f g
Intuition🔗
Most categories that have zero objects have enough structure to rule out totally trivial structures like the empty set, but not enough structure to cause the initial and terminal objects to “separate”. The canonical example here is the category of groups: the unit rules out a completely trivial group, yet there’s nothing else that would require the initial object to have any more structure.
Another point of interest is that any category with zero objects is
canonically enriched in pointed sets: the zero→
morphism from earlier acts as the
designated basepoint for each of the hom sets.