File tree Expand file tree Collapse file tree
Mathlib/Topology/Compactness Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -929,6 +929,15 @@ theorem Inducing.isCompact_preimage {f : X → Y} (hf : Inducing f) (hf' : IsClo
929929 replace hK := hK.inter_right hf'
930930 rwa [hf.isCompact_iff, image_preimage_eq_inter_range]
931931
932+ lemma Inducing.isCompact_preimage_iff {f : X → Y} (hf : Inducing f) {K : Set Y}
933+ (Kf : K ⊆ range f) : IsCompact (f ⁻¹' K) ↔ IsCompact K := by
934+ rw [hf.isCompact_iff, image_preimage_eq_of_subset Kf]
935+
936+ /-- The preimage of a compact set in the image of an inducing map is compact. -/
937+ lemma Inducing.isCompact_preimage' {f : X → Y} (hf : Inducing f) {K : Set Y}
938+ (hK: IsCompact K) (Kf : K ⊆ range f) : IsCompact (f ⁻¹' K) :=
939+ (hf.isCompact_preimage_iff Kf).2 hK
940+
932941/-- The preimage of a compact set under a closed embedding is a compact set. -/
933942theorem ClosedEmbedding.isCompact_preimage {f : X → Y} (hf : ClosedEmbedding f)
934943 {K : Set Y} (hK : IsCompact K) : IsCompact (f ⁻¹' K) :=
You can’t perform that action at this time.
0 commit comments