File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed
Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,25 @@ public import Mathlib.Topology.Sets.Compacts
1111# Vietoris topology
1212
1313This file defines the Vietoris topology on the types of compact subsets and nonempty compact subsets
14- of a topological space.
14+ of a topological space. The Vietoris topology is generated by sets of the form
15+ $\{ K \mid K \subseteq U\} $ and $\{ K \mid K \cap U \ne \emptyset\} $, where $U$ is an open subset of
16+ the underlying space.
17+
18+ ## Implementation notes
19+
20+ Rather than defining the topology directly on `TopologicalSpace.Compacts α`, we first define
21+ `TopologicalSpace.vietoris α` on `Set α`, then we take the subspace topology on
22+ `TopologicalSpace.Compacts α` and `TopologicalSpace.NonemptyCompacts α`. This approach will
23+ let us reuse several results if a type of closed sets equipped with the Vietoris topology is
24+ defined in the future.
25+
26+ Note that we do not equip `TopologicalSpace.Closeds α` with the Vietoris topology. When `α` is a
27+ metric space, `TopologicalSpace.Closeds α` is equipped with the Hausdorff metric, which is generally
28+ incompatible with the Vietoris topology.
29+
30+ ## References
31+
32+ * [ Ernest Michael, *Topologies on spaces of subsets* ] [michael1951 ]
1533 -/
1634
1735@[expose] public section
Original file line number Diff line number Diff line change @@ -3521,6 +3521,17 @@ @Book{ meyntweedie1993
35213521 language = { English}
35223522}
35233523
3524+ @Article { michael1951 ,
3525+ author = { Michael, Ernest} ,
3526+ title = { Topologies on spaces of subsets} ,
3527+ year = { 1951} ,
3528+ journal = { Trans. Amer. Math. Soc.} ,
3529+ volume = { 71} ,
3530+ pages = { 152-182} ,
3531+ doi = { 10.1090/S0002-9947-1951-0042109-4} ,
3532+ url = { https://doi.org/10.1090/S0002-9947-1951-0042109-4}
3533+ }
3534+
35243535@Article { Milla_2018 ,
35253536 author = { Milla, Lorenz} ,
35263537 title = { A detailed proof of the {C}hudnovsky formula with means of
You can’t perform that action at this time.
0 commit comments