Home

両側可逆写像

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

biinv :  {A : Type } {B : Type ℓ′}  (A  B)  Type (  ℓ′)
biinv f = HasRetraction f × HasSection f
_≃_ : Type   Type ℓ′  Type (  ℓ′)
A  B = Σ (A  B) biinv