Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Composition and left factor for epis/acyclic maps #909

Merged
merged 4 commits into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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}
(f : A → B) (g : B → C)
where

is-epimorphism-comp :
is-epimorphism f → is-epimorphism g → is-epimorphism (g ∘ f)
is-epimorphism-comp ef eg X =
is-emb-comp (precomp f X) (precomp g X) (ef X) (eg X)
tomdjong marked this conversation as resolved.
Show resolved Hide resolved

is-epimorphism-left-factor :
is-epimorphism f → is-epimorphism (g ∘ f) → is-epimorphism g
is-epimorphism-left-factor ef ec 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}
(f : A → B) (g : B → C)
where

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

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

## See also

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