File tree Expand file tree Collapse file tree
Mathlib/Topology/MetricSpace Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ public import Mathlib.Topology.EMetricSpace.Defs
1414This file defines a few notions of separations of sets in a metric space.
1515
1616
17- The first notion (`Metric.IsSeparated`) is quantitative and about a single set: A set `s` is
18- `ε`-separated if its elements are pairwise at distance at least `ε` from each other.
17+ The first notion (`Metric.IsSeparated`) is quantitative and describes a single set: a set `s` is
18+ `ε`-separated if the distance between any two distinct elements is strictly greater than `ε`
1919
2020The second notion (`Metric.AreSeparated`) is qualitative and about two sets: Two sets `s` and `t`
2121are separated if the distance between `x ∈ s` and `y ∈ t` is bounded from below by a positive
@@ -38,8 +38,8 @@ variable {X : Type*} [PseudoEMetricSpace X] {s t : Set X} {ε δ : ℝ≥0∞} {
3838In this section we define the predicate `Metric.IsSeparated` for `ε`-separated sets.
3939-/
4040
41- /-- A set `s` is `ε`-separated if its elements are pairwise at distance at least `ε` from each
42- other . -/
41+ /-- A set `s` is `ε`-separated if the extended distance between any two distinct
42+ elements is strictly greater than `ε` . -/
4343def IsSeparated (ε : ℝ≥0 ∞) (s : Set X) : Prop := s.Pairwise (ε < edist · ·)
4444
4545lemma isSeparated_iff_setRelIsSeparated :
You can’t perform that action at this time.
0 commit comments