set of limit points is closed#1870
Open
affeldt-aist wants to merge 4 commits intomath-comp:masterfrom
Open
Conversation
d2a6911 to
6db2d0f
Compare
t6s
suggested changes
Mar 9, 2026
Member
t6s
left a comment
There was a problem hiding this comment.
The proved result can be (at least) generalized to T1:
Section limit_point_closed.
Context {T : topologicalType}.
Implicit Types (A : set T) (a : T).
Lemma not_limit_point_set1 A a : ~ limit_point A a ->
exists X : set T, nbhs a X /\ A `&` X `<=` [set a].
Proof.
rewrite /limit_point/=.
move=> /existsNP[] X /not_implyP[] naX /forallNP H.
exists X; split => // x/= [] Ax Xx; have := H x.
by move=> /not_and3P[]// /negP; rewrite negbK => /eqP.
Qed.
Lemma limit_pointPn A a : ~ limit_point A a <->
(exists X : set T, nbhs a X /\ A `&` X `<=` [set a]).
Proof.
split; first exact: not_limit_point_set1.
case=> X [] XaX AXa.
rewrite /limit_point/= -existsNE.
exists X; apply/not_implyP; split => //.
case=> x [] + ? ? => /eqP; apply.
by apply: AXa; split.
Qed.
Lemma limit_point_closed A : accessible_space T -> closed (limit_point A).
Proof.
move=> ?.
rewrite -openC openE/= => a /not_limit_point_set1[]X[].
rewrite nbhsE/= => -[]U oaU UX XAa.
rewrite /interior nbhsE/=.
exists U => // x Ux.
apply/limit_pointPn.
have [xa|xneqa] := eqVneq x a.
exists U; rewrite xa; split; first exact: open_nbhs_nbhs.
by apply: (@subset_trans _ (A `&` X)) => //; exact: setIS.
exists (U `&` [set~ a]); split.
apply: open_nbhs_nbhs; split.
apply: openI; first by case: oaU.
by rewrite openC; exact: accessible_closed_set1.
by split => //; exact/eqP.
apply: (@subset_trans _ (A `&` (X `&` [set~ a]))).
by apply: setIS; apply: setSI.
apply: (@subset_trans _ ([set a] `&` [set~ a])).
by rewrite setIA; apply: setSI.
by rewrite setICr.
Qed.
End limit_point_closed.
Arguments limit_point_closed {T} A.
Member
|
limit_pointsPn can also be like this: |
Member
|
( |
Co-authored-by: Takafumi Saikawa <tscompor@gmail.com>
6db2d0f to
c094586
Compare
Member
Author
Maybe |
This file contains hidden or 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
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
This standard lemma about limit points was missing and was found useful in another development by @IshiguroYoshihiro
Checklist
CHANGELOG_UNRELEASED.md- [ ] added corresponding documentation in the headersReference: How to document
Merge policy
As a rule of thumb:
all compile are preferentially merged into master.
Reminder to reviewers