Zulip Chat Archive

Stream: condensed mathematics

Topic: some pointset topology


Adam Topaz (Oct 18 2021 at 21:43):

In case anyone is bored and wants to tackle some pointset topology, there are three sorry's in the file for_mathlib/Profinite/disjoint_union.lean that are very doable (with no category theory :wink: ):

instance {α : Type*} [fintype α] (X : α  Type*) [ a, topological_space (X a)]
  [ a, compact_space (X a)] : compact_space (Σ a, X a) := sorry

instance {α : Type*} [fintype α] (X : α  Type*) [ a, topological_space (X a)]
  [ a, totally_disconnected_space (X a)] : totally_disconnected_space (Σ a, X a) := sorry

instance {X Y : Type*} [topological_space X] [topological_space Y]
  [totally_disconnected_space X] [totally_disconnected_space Y] :
  totally_disconnected_space (X  Y) := sorry

Yaël Dillies (Oct 18 2021 at 21:44):

That might be a good way to exercise my current Analysis & Topology lectures!

Adam Topaz (Oct 18 2021 at 21:51):

(The fintype assumption can be removed for the second sorry)

Reid Barton (Oct 18 2021 at 22:00):

The first one is basically docs#compact_Union

Yaël Dillies (Oct 22 2021 at 08:08):

May I get write access?

Johan Commelin (Oct 22 2021 at 08:19):

@Yaël Dillies https://github.com/leanprover-community/lean-liquid/invitations

Yaël Dillies (Oct 22 2021 at 08:20):

Thanks!

Yaël Dillies (Oct 22 2021 at 09:23):

Should I push to master or to a branch?

Johan Commelin (Oct 22 2021 at 09:38):

Feel free to push to master directly

Yaël Dillies (Nov 26 2021 at 23:41):

PRed in #10511

Johan Commelin (Nov 27 2021 at 07:01):

merci!


Last updated: Dec 20 2023 at 11:08 UTC