Skip to content

Commit

Permalink
Acyclic types are closed under retracts (#908)
Browse files Browse the repository at this point in the history
Tiny PR
  • Loading branch information
tomdjong authored Nov 8, 2023
1 parent a0503d1 commit 61a513e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/synthetic-homotopy-theory/acyclic-types.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module synthetic-homotopy-theory.acyclic-types where
open import foundation.contractible-types
open import foundation.equivalences
open import foundation.propositions
open import foundation.retractions
open import foundation.universe-levels

open import synthetic-homotopy-theory.functoriality-suspensions
Expand Down Expand Up @@ -54,6 +55,18 @@ is-acyclic-equiv' :
is-acyclic-equiv' e = is-acyclic-equiv (inv-equiv e)
```

### Acyclic types are closed under retracts

```agda
module _
{l1 l2 : Level} {A : UU l1} {B : UU l2}
where

is-acyclic-retract-of : A retract-of B is-acyclic B is-acyclic A
is-acyclic-retract-of R ac =
is-contr-retract-of (suspension B) (retract-of-suspension-retract-of R) ac
```

## See also

### Table of files related to cyclic types, groups, and rings
Expand Down

0 comments on commit 61a513e

Please sign in to comment.