Home

断面

module foundations.section where
Imports
open import foundations.universe
open import foundations.sigma-type
open import foundations.homotopy
open import foundations.function
private variable  ℓ′ : Level

HasSection :  {A : Type } {B : Type ℓ′} (f : A  B)  Type (  ℓ′)
HasSection {A = A} {B} f = Σ[ g  (B  A) ] (f  g ~ idFunction B)