Homeomorphisms between quotient spaces #
def
Homeomorph.Quot.congr
{X : Type u_1}
{Y : Type u_2}
[TopologicalSpace X]
[TopologicalSpace Y]
{rX : X → X → Prop}
{rY : Y → Y → Prop}
(e : X ≃ₜ Y)
(eq : ∀ (x₁ x₂ : X), rX x₁ x₂ ↔ rY (e x₁) (e x₂))
:
A homeomorphism e : X ≃ₜ Y generates a homeomorphism between quotient spaces,
if rX x₁ x₂ ↔ rY (e x₁) (e x₂).
Equations
- Homeomorph.Quot.congr e eq = { toEquiv := Quot.congr (↑e) eq, continuous_toFun := ⋯, continuous_invFun := ⋯ }
Instances For
def
Homeomorph.Quot.congrRight
{X : Type u_1}
[TopologicalSpace X]
{r r' : X → X → Prop}
(eq : ∀ (x₁ x₂ : X), r x₁ x₂ ↔ r' x₁ x₂)
:
Quotient spaces for equal relations are homeomorphic.
Equations
Instances For
def
Homeomorph.Quot.congrLeft
{X : Type u_1}
{Y : Type u_2}
[TopologicalSpace X]
[TopologicalSpace Y]
{r : X → X → Prop}
(e : X ≃ₜ Y)
:
A homeomorphism e : X ≃ₜ Y generates an equivalence between the quotient space of X
by a relation rX and the quotient space of Y by the image of this relation under e.
Equations
Instances For
def
Homeomorph.Quotient.congr
{X : Type u_1}
{Y : Type u_2}
[TopologicalSpace X]
[TopologicalSpace Y]
{rX : Setoid X}
{rY : Setoid Y}
(e : X ≃ₜ Y)
(eq : ∀ (x₁ x₂ : X), rX x₁ x₂ ↔ rY (e x₁) (e x₂))
:
A homeomorphism e : X ≃ₜ Y generates a homeomorphism between quotient spaces,
if rX x₁ x₂ ↔ rY (e x₁) (e x₂).
Equations
- Homeomorph.Quotient.congr e eq = Homeomorph.Quot.congr e eq
Instances For
def
Homeomorph.Quotient.congrRight
{X : Type u_1}
[TopologicalSpace X]
{r r' : Setoid X}
(eq : ∀ (x₁ x₂ : X), r x₁ x₂ ↔ r' x₁ x₂)
:
Quotient spaces for equal relations are homeomorphic.
Equations
Instances For
The quotient by the trivial relation is homeomorphic to the original space.
Equations
- Homeomorph.quotientBot = { toEquiv := Setoid.quotientBotEquiv, continuous_toFun := ⋯, continuous_invFun := ⋯ }