-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
defn: absoluteness of split coequalisers
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
```agda | ||
open import Cat.Prelude | ||
|
||
import Cat.Diagram.Coequaliser.Split as SplitCoeq | ||
import Cat.Reasoning | ||
import Cat.Functor.Reasoning | ||
|
||
module Cat.Diagram.Coequaliser.Split.Properties where | ||
``` | ||
|
||
# Properties of split coequalizers | ||
|
||
This module proves some general properties of [split coequalisers]. | ||
|
||
[split coequalisers]: Cat.Diagram.Coequaliser.Split.html | ||
|
||
## Absoluteness | ||
|
||
The property of being a split coequaliser is a purely diagrammatic one, which has | ||
the lovely property of being preserved by _all_ functors. We call such colimits | ||
absolute. | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
```agda | ||
module _ {o o′ ℓ ℓ′} | ||
{C : Precategory o ℓ} {D : Precategory o′ ℓ′} | ||
(F : Functor C D) where | ||
``` | ||
<!-- | ||
```agda | ||
private | ||
module C = Cat.Reasoning C | ||
module D = Cat.Reasoning D | ||
open Cat.Functor.Reasoning F | ||
open SplitCoeq | ||
variable | ||
A B E : C.Ob | ||
f g e s t : C.Hom A B | ||
``` | ||
--> | ||
|
||
The proof follows the fact that functors preserve diagrams, and reduces to a bit | ||
of symbol shuffling. | ||
|
||
```agda | ||
is-split-coequaliser-absolute | ||
: is-split-coequaliser C f g e s t | ||
→ is-split-coequaliser D (F₁ f) (F₁ g) (F₁ e) (F₁ s) (F₁ t) | ||
is-split-coequaliser-absolute | ||
{f = f} {g = g} {e = e} {s = s} {t = t} split-coeq = F-split-coeq | ||
where | ||
open is-split-coequaliser split-coeq | ||
|
||
F-split-coeq : is-split-coequaliser D _ _ _ _ _ | ||
F-split-coeq .coequal = weave coequal | ||
F-split-coeq .rep-section = annihilate rep-section | ||
F-split-coeq .witness-section = annihilate witness-section | ||
F-split-coeq .commute = weave commute | ||
``` |
absolute