Skip to content

Commit

Permalink
Composition and left factor for epis/acyclic maps (#909)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdjong authored Nov 9, 2023
1 parent 61a513e commit 82b59b9
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/foundation/epimorphisms.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,25 @@ If the map `f : A → B` is epi, then its codiagonal is an equivalence.
is-epimorphism-is-pushout = is-epimorphism-is-equiv-codiagonal-map
```

### The class of epimorphisms is closed under composition and has the right cancellation property

```agda
module _
{l1 l2 l3 : Level} {A : UU l1} {B : UU l2} {C : UU l3}
(g : B C) (f : A B)
where

is-epimorphism-comp :
is-epimorphism g is-epimorphism f is-epimorphism (g ∘ f)
is-epimorphism-comp eg ef X =
is-emb-comp (precomp f X) (precomp g X) (ef X) (eg X)

is-epimorphism-left-factor :
is-epimorphism (g ∘ f) is-epimorphism f is-epimorphism g
is-epimorphism-left-factor ec ef X =
is-emb-right-factor (precomp f X) (precomp g X) (ef X) (ec X)
```

## See also

- [Acyclic maps](synthetic-homotopy-theory.acyclic-maps.md)
Expand Down
28 changes: 28 additions & 0 deletions src/synthetic-homotopy-theory/acyclic-maps.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,34 @@ module _
( is-acyclic-map-is-epimorphism f e)
```

### The class of acyclic maps is closed under composition and has the right cancellation property

Since the acyclic maps are precisely the epimorphisms this follows from the
corresponding facts about [epimorphisms](foundation.epimorphisms.md).

```agda
module _
{l1 l2 l3 : Level} {A : UU l1} {B : UU l2} {C : UU l3}
(g : B C) (f : A B)
where

is-acyclic-map-comp :
is-acyclic-map g is-acyclic-map f is-acyclic-map (g ∘ f)
is-acyclic-map-comp ag af =
is-acyclic-map-is-epimorphism (g ∘ f)
( is-epimorphism-comp g f
( is-epimorphism-is-acyclic-map g ag)
( is-epimorphism-is-acyclic-map f af))

is-acyclic-map-left-factor :
is-acyclic-map (g ∘ f) is-acyclic-map f is-acyclic-map g
is-acyclic-map-left-factor ac af =
is-acyclic-map-is-epimorphism g
( is-epimorphism-left-factor g f
( is-epimorphism-is-acyclic-map (g ∘ f) ac)
( is-epimorphism-is-acyclic-map f af))
```

## See also

- [Dependent epimorphisms](foundation.dependent-epimorphisms.md)
Expand Down

0 comments on commit 82b59b9

Please sign in to comment.