Cat.Groupoid

1Lab

  • GroupoidsπŸ”—


This page was written by AmΓ©lia Liao, NaΓ―m Favier and Reed Mullanix

back to index
open import Cat.Prelude

import Cat.Reasoning
module Cat.Groupoid where

GroupoidsπŸ”—

A category C is a (pre)groupoid if every morphism of C is invertible.

is-pregroupoid : βˆ€ {o β„“} β†’ Precategory o β„“ β†’ Type (o βŠ” β„“)
is-pregroupoid C = βˆ€ {x y} (f : Hom x y) β†’ is-invertible f
  where open Cat.Reasoning C