-
Notifications
You must be signed in to change notification settings - Fork 45
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
duality between closure
and interior
#1366
base: master
Are you sure you want to change the base?
Conversation
Qed. | ||
|
||
Lemma interior_closure_idem (A : set T) : | ||
interior (closure (interior (closure A))) = interior (closure A). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quick thought: could the following definition be useful?
Definition idempotent_fun (U : Type) (f : U -> U) := f \o f =1 f.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. Which file should it be put in?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(oh wow, mathcomp's existing idempotent f
predicate means f x x = x
and not f (f x) = f x
. I am always surprised by that one.) mathcomp-extra is a suitable place for this, I think
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ssrfun.v
? so, I guess for us it means mathcomp_extra.v
...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am always surprised by that one.
so maybe we could propose to rename it to idempotent_op
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All looks good. I'm a bit surprised we didn't have some of this fundamental stuff before, so I'm glad to see you adding it.
Don't hesitate to use |
The problem is, I cannot easily input that circle symbol. (Do you know any SKK keystroke for that?) |
|
Motivation for this change
This PR adds some lemmas for the closure and interior operators that
are a basic part of the duality between these. This addition will serve
as an initial step towards the theory of regular open/closed sets.
Lemma
closureC
is modified since its original statement seemed notconforming to the name.
Checklist
CHANGELOG_UNRELEASED.md
Reference: How to document
Reminder to reviewers