Skip to content

Commit

Permalink
feat: homeomorphisms preserve local compactness (#11901)
Browse files Browse the repository at this point in the history
Add a theorem `Homeomorph.locallyCompactSpace` that if the codomain of a homeomorphism is a locally compact space, then the domain is also a locally compact space.
  • Loading branch information
smmercuri committed Apr 6, 2024
1 parent 3f22805 commit ee6db57
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Mathlib/Topology/Homeomorph.lean
Expand Up @@ -467,6 +467,13 @@ theorem locallyConnectedSpace [i : LocallyConnectedSpace Y] (h : X ≃ₜ Y) :
refine locallyConnectedSpace_of_connected_bases _ _ this fun _ _ hs ↦ ?_
exact hs.2.2.2.image _ h.symm.continuous.continuousOn

/-- The codomain of a homeomorphism is a locally compact space if and only if
the domain is a locally compact space. -/
theorem locallyCompactSpace_iff (h : X ≃ₜ Y) :
LocallyCompactSpace X ↔ LocallyCompactSpace Y := by
exact ⟨fun _ => h.symm.openEmbedding.locallyCompactSpace,
fun _ => h.closedEmbedding.locallyCompactSpace⟩

/-- If a bijective map `e : X ≃ Y` is continuous and open, then it is a homeomorphism. -/
def homeomorphOfContinuousOpen (e : X ≃ Y) (h₁ : Continuous e) (h₂ : IsOpenMap e) : X ≃ₜ Y where
continuous_toFun := h₁
Expand Down

0 comments on commit ee6db57

Please sign in to comment.