Skip to content
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

display for open? #2

Draft
wants to merge 9 commits into
base: product_embedding
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@
+ lemma `fsumEFin`
- in `lebesgue_measure.v`:
+ definition `ErealGenInftyO.R` and lemma `ErealGenInftyO.measurableE`
- in `classical_sets.v`:
+ lemma `preimage_range`
- in `topology.v`
+ definition `separates_points_from_closed`, `join_product`
+ lemma `hausdorff_accessible`
+ lemmas `weak_sep_cvg`, `weak_sep_nbhsE`, `weak_sep_openE`,
`join_product_continuous`, `join_product_open`, `join_product_inj`,
`join_product_weak`

### Changed
- in `topology.v`
Expand Down
3 changes: 3 additions & 0 deletions classical/classical_sets.v
Original file line number Diff line number Diff line change
Expand Up @@ -1226,6 +1226,9 @@ Proof. by case=> [t ?]; exists (f t). Qed.
Lemma preimage_image f A : A `<=` f @^-1` (f @` A).
Proof. by move=> a Aa; exists a. Qed.

Lemma preimage_range {A B : Type} (f : A -> B) : f @^-1` (range f) = [set: A].
Proof. by rewrite eqEsubset; split=> x // _; exists x. Qed.

Lemma image_preimage_subset f Y : f @` (f @^-1` Y) `<=` Y.
Proof. by move=> _ [t /= Yft <-]. Qed.

Expand Down
Loading