Skip to content

Commit

Permalink
feat(topology/separation): an injective map on a compact space is an …
Browse files Browse the repository at this point in the history
…embedding (#6057)
  • Loading branch information
sgouezel committed Feb 7, 2021
1 parent 9411b00 commit 45f9544
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/topology/separation.lean
Expand Up @@ -485,6 +485,14 @@ begin
by rwa [diff_subset_comm], by rwa [diff_subset_comm], by rw [← diff_inter, hO, diff_empty]⟩
end

lemma continuous.is_closed_map [compact_space α] [t2_space β] {f : α → β} (h : continuous f) :
is_closed_map f :=
λ s hs, (hs.compact.image h).is_closed

lemma continuous.closed_embedding [compact_space α] [t2_space β] {f : α → β} (h : continuous f)
(hf : function.injective f) : closed_embedding f :=
closed_embedding_of_continuous_injective_closed h hf h.is_closed_map

section
open finset function
/-- For every finite open cover `Uᵢ` of a compact set, there exists a compact cover `Kᵢ ⊆ Uᵢ`. -/
Expand Down

0 comments on commit 45f9544

Please sign in to comment.