Bands
Content created by Fredrik Bakke, Jonathan Prieto-Cubides and Egbert Rijke.
Created on 2022-05-18.
Last modified on 2023-08-23.
module foundation.bands where
Imports
open import foundation.set-truncations open import foundation.universe-levels open import foundation-core.equivalences
Idea
A band from to is an element of the set-truncation of the type of equivalences from to .
Definition
band : {l1 l2 : Level} → UU l1 → UU l2 → UU (l1 ⊔ l2) band A B = type-trunc-Set (A ≃ B) unit-band : {l1 l2 : Level} {A : UU l1} {B : UU l2} → (A ≃ B) → band A B unit-band = unit-trunc-Set refl-band : {l : Level} (A : UU l) → band A A refl-band A = unit-band id-equiv
Recent changes
- 2023-08-23. Fredrik Bakke. Pre-commit fixes and some miscellaneous changes (#705).
- 2023-06-08. Fredrik Bakke. Remove empty
foundation
modules and replace them by their core counterparts (#644). - 2023-03-14. Fredrik Bakke. Remove all unused imports (#502).
- 2023-03-13. Jonathan Prieto-Cubides. More maintenance (#506).
- 2023-03-07. Fredrik Bakke. Add blank lines between
<details>
tags and markdown syntax (#490).