Families of equivalences
Content created by Egbert Rijke and Raymond Baker.
Created on 2023-11-24.
Last modified on 2023-12-05.
module foundation.families-of-equivalences where open import foundation-core.families-of-equivalences public
Imports
open import foundation.equivalences open import foundation.universe-levels open import foundation-core.propositions
Idea
A family of equivalences is a family
eᵢ : A i ≃ B i
of equivalences. Families of equivalences are also called fiberwise equivalences.
Properties
Being a fiberwise equivalence is a proposition
module _ {l1 l2 l3 : Level} {A : UU l1} {B : A → UU l2} {C : A → UU l3} where is-property-is-fiberwise-equiv : (f : (a : A) → B a → C a) → is-prop (is-fiberwise-equiv f) is-property-is-fiberwise-equiv f = is-prop-Π (λ a → is-property-is-equiv (f a))
See also
- In Functoriality of dependent pair types we show that a family of maps is a fiberwise equivalence if and only if it induces an equivalence on total spaces.
Recent changes
- 2023-12-05. Raymond Baker and Egbert Rijke. Universal property of fibers (#944).
- 2023-11-24. Egbert Rijke. Refactor precomposition (#937).