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

[Merged by Bors] - feat(topology/continuous_function): Any T0 space embeds in a product of copies of the Sierpinski space #14036

Closed
wants to merge 30 commits into from

Conversation

isadofschi
Copy link
Collaborator

@isadofschi isadofschi commented May 8, 2022

Any T0 space embeds in a product of copies of the Sierpinski space


  • I'm not sure where this should go.

Open in Gitpod

@isadofschi isadofschi added the WIP Work in progress label May 8, 2022
@isadofschi isadofschi added awaiting-review The author would like community review of the PR and removed WIP Work in progress labels May 9, 2022
@urkud urkud added awaiting-author A reviewer has asked the author a question or requested changes and removed awaiting-review The author would like community review of the PR labels Jun 9, 2022
@isadofschi isadofschi added awaiting-review The author would like community review of the PR and removed awaiting-author A reviewer has asked the author a question or requested changes labels Jun 11, 2022
Comment on lines 25 to 35
lemma eq_induced_by_maps_to_sierpinski (X : Type*) [t : topological_space X] :
t = ⨅ (u : opens X), topological_space.induced (λ x, x ∈ u) sierpinski_space :=
le_antisymm
(le_infi_iff.2 (λ u, continuous.le_induced $ is_open_iff_continuous_mem.1 u.2))
(is_open_implies_is_open_iff.mp $ λ u h,
begin
apply is_open_implies_is_open_iff.mpr _ u _,
{ exact topological_space.induced (λ (x : X), x ∈ u) sierpinski_space },
{ exact infi_le_of_le ⟨u,h⟩ (le_refl _) },
{ exact is_open_induced_iff'.mpr ⟨{true}, ⟨is_open_singleton_true, by simp [set.preimage]⟩⟩ },
end)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you mind writing this lemma in this way? I think it would be easier to maintain, and I for one find it easier to follow.

Suggested change
lemma eq_induced_by_maps_to_sierpinski (X : Type*) [t : topological_space X] :
t = ⨅ (u : opens X), topological_space.induced (λ x, x ∈ u) sierpinski_space :=
le_antisymm
(le_infi_iff.2 (λ u, continuous.le_induced $ is_open_iff_continuous_mem.1 u.2))
(is_open_implies_is_open_iff.mp $ λ u h,
begin
apply is_open_implies_is_open_iff.mpr _ u _,
{ exact topological_space.induced (λ (x : X), x ∈ u) sierpinski_space },
{ exact infi_le_of_le ⟨u,h⟩ (le_refl _) },
{ exact is_open_induced_iff'.mpr ⟨{true}, ⟨is_open_singleton_true, by simp [set.preimage]⟩⟩ },
end)
lemma eq_induced_by_maps_to_sierpinski (X : Type*) [t : topological_space X] :
t = ⨅ (u : opens X), sierpinski_space.induced (∈ u) :=
begin
apply le_antisymm,
{ rw [le_infi_iff],
exact λ u, continuous.le_induced (is_open_iff_continuous_mem.mp u.2) },
{ intros u h,
rw ← generate_from_Union_is_open,
apply is_open_generate_from_of_mem,
simp only [set.mem_Union, set.mem_set_of_eq, is_open_induced_iff'],
exact ⟨⟨u, h⟩, {true}, is_open_singleton_true, by simp [set.preimage]⟩ },
end

You can write (λ x, x ∈ u) instead of (∈ u) if you want -- this is just a common way to write the predicate.

This depends on the following missing lemma (it should go in topology/sets/opens.lean before or after mem_coe):

@[simp] lemma topological_space.opens.mem_mk {x : α} {U : set α} {h : is_open U} :
  @has_mem.mem _ _ opens.has_mem x ⟨U, h⟩ ↔ x ∈ U := iff.rfl

src/topology/sets/opens.lean Outdated Show resolved Hide resolved
isadofschi and others added 2 commits July 2, 2022 09:58
Co-authored-by: Kyle Miller <kmill31415@gmail.com>
@kmill
Copy link
Collaborator

kmill commented Jul 8, 2022

Thanks!

bors r+

@github-actions github-actions bot added ready-to-merge All that is left is for bors to build and merge this PR. (Remember you need to say `bors r+`.) and removed awaiting-review The author would like community review of the PR labels Jul 8, 2022
bors bot pushed a commit that referenced this pull request Jul 8, 2022
…of copies of the Sierpinski space (#14036)

Any T0 space embeds in a product of copies of the Sierpinski space



Co-authored-by: Iván Sadofschi Costa <isadofschi@users.noreply.github.com>
@bors
Copy link

bors bot commented Jul 8, 2022

Pull request successfully merged into master.

Build succeeded:

@bors bors bot changed the title feat(topology/continuous_function): Any T0 space embeds in a product of copies of the Sierpinski space [Merged by Bors] - feat(topology/continuous_function): Any T0 space embeds in a product of copies of the Sierpinski space Jul 8, 2022
@bors bors bot closed this Jul 8, 2022
@bors bors bot deleted the t0-embeds-in-product-of-sierpinski-spaces branch July 8, 2022 05:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ready-to-merge All that is left is for bors to build and merge this PR. (Remember you need to say `bors r+`.)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants