module foundations.fibration where
open import foundations.universe open import foundations.identity-type open import foundations.sigma-type open import foundations.transport
型族B : A → Type ℓ
について、Σ A B
をtotal spaceと見なすことができる。そして、底空間A
への射影fst
はファイブレーションとなる。
private variable ℓ : Level A : Type ℓ B : A → Type ℓ x y : A pathLiftingProperty : ∀ (p : x = y) (v : B x) → Id (Σ A B) (x , v) (y , subst B p v) pathLiftingProperty refl _ = refl