feat: a sequential and countably compact space is sequentially compact#36385
feat: a sequential and countably compact space is sequentially compact#36385CoolRmal wants to merge 41 commits intoleanprover-community:masterfrom
Conversation
PR summary 20c47e339cImport changes for modified filesNo significant changes to the import graph Import changes for all files
|
scholzhannah
left a comment
There was a problem hiding this comment.
Thanks for your PR! I have some style comments.
|
This pull request has conflicts, please merge |
|
-awaiting-author |
| theorem Topology.IsEmbedding.isCountablyCompact_iff {f : E → F} (hf : IsEmbedding f) : | ||
| IsCountablyCompact A ↔ IsCountablyCompact (f '' A) := |
There was a problem hiding this comment.
This theorem is probably the wrong way around since I think you will most of the time want to rewrite from right to left. I think if you switch the order, you could make this a simp-lemma.
There was a problem hiding this comment.
I am not sure about whether we should switch the order and make them simp lemmas. These lemmas are analogues of Topology.IsEmbedding.isCompact_iff, Subtype.isCompact_iff, etc. and they are not simp lemmas.
| theorem Subtype.isCountablyCompact_iff {p : E → Prop} {A : Set { x // p x }} : | ||
| IsCountablyCompact A ↔ IsCountablyCompact ((↑) '' A : Set E) := | ||
| IsEmbedding.subtypeVal.isCountablyCompact_iff | ||
|
|
||
| theorem isCountablyCompact_iff_isCountablyCompact_univ : | ||
| IsCountablyCompact A ↔ IsCountablyCompact (univ : Set A) := by | ||
| rw [Subtype.isCountablyCompact_iff, image_univ, Subtype.range_coe] |
There was a problem hiding this comment.
The same thing as above applies to these two theorems.
| theorem Topology.IsEmbedding.isSeqCompact_iff {f : E → F} (hf : IsEmbedding f) : | ||
| IsSeqCompact A ↔ IsSeqCompact (f '' A) where |
|
-awaiting-author |
|
This pull request has conflicts, please merge |
The main result proved in this PR is that a sequential and countably compact space is sequentially compact. We also prove some lemmas:
fis an embedding, thenAis sequentially compact ifff '' Ais sequentially compact. This result is then used to show the equivalence ofIsSeqCompact AandSeqCompactSpace A.fis inducing, thenAis countably compact ifff '' Ais countably compact. This result is then used to show the equivalence ofIsCountablyCompact AandCountablyCompactSpace A.fconverges andgis another function such thatg x ∈ closure {f x}for allx, thengalso converges.