-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clopen Sets #797
Closed
Closed
Clopen Sets #797
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Would it be better to have a definition of Definition local_base (T : topologicalType) (x : T) (B : set (set T)) :=
B `<=` nbhs x /\ (forall V, nbhs x V -> exists2 A, B A & A `<=` V).
Definition topological_base (T : topologicalType) (B : set (set T)) :=
B `<=` open /\ forall x, exists2 C, C `<=` B & local_base x C.
Definition second_countable' (T : topologicalType) := exists2 B : set (set T),
countable B & topological_base B.
Lemma second_countableP (T : topologicalType) :
second_countable T <-> second_countable' T.
Proof.
split=> [[B [cB Bopen h]]|].
exists B => //; split => // x.
have {}h := h x.
have @h' : forall V : {V : set T & nbhs x V}, {A : set T | [/\ B A, nbhs x A & A `<=` projT1 V]}.
move=> [V Vx]; apply: cid.
by move: (h V Vx) => [W [BW xW WV]]; exists W.
exists [set V | exists W (xW : nbhs x W), sval (h' (existT _ _ xW)) = V].
by move=> _ /= [W [xW /=]] <-; case: cid => // ? [].
split.
by move=> _ /= [W [xW] <-]; case: cid => ? [].
move=> V xV; exists (projT1 (h' (existT _ _ xV))).
by exists V, xV.
by move=> y/=; rewrite /sval/=; case: cid => W [BW xW WV Wy]; exact: WV.
move=> [B cB [Bopen h]]; exists B; split => // x V xV.
have [C CB [Cx h']] := h x.
have [A CA AV] := h' _ xV.
by exists A; split => //; [exact: CB|exact: Cx].
Qed. |
Need to make things more friendly for working with subsets. |
This was referenced Feb 3, 2023
I will treat all the 2nd countability stuff mentioned here in a separate diff. In the meanwhile, stuff on clopen and connectedness is simpler, and now presented without the 2nd countability stuff in #840 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation for this change
Being totally disconnected is a key feature of cantor space theory. The cantor space is the unique space (up to homeomorphism) that is "metrizable + compact + perfect + totally disconnected". Turns out proving this with clopen sets is much easier than dealing with arbitrary separations.
This PR defines clopen, totally disconnected, and second-countable, and proves a handful of basics facts. The main results are
As a side note, this is also step one for proving Stone Representation Theorem. Although I'm not pursuing this angle right now.
Things done/to do
CHANGELOG_UNRELEASED.md
(do not edit former entries, only append new ones, be careful:
merge and rebase have a tendency to mess up
CHANGELOG_UNRELEASED.md
)Automatic note to reviewers
Read this Checklist and put a milestone if possible.