Metric separation #
This file defines a few notions of separations of sets in a metric space.
The first notion (Metric.IsSeparated
) is quantitative and about a single set: A set s
is
ε
-separated if its elements are pairwise at distance at least ε
from each other.
The second notion ( Metric.AreSeparated
) is qualitative and about two sets: Two sets s
and t
are separated if the distance between x ∈ s
and y ∈ t
is bounded from below by a positive
constant.
Metric-separated sets #
In this section we define the predicate Metric.IsSeparated
for ε
-separated sets.
A set s
is ε
-separated if its elements are pairwise at distance at least ε
from each
other.
Equations
- Metric.IsSeparated ε s = s.Pairwise fun (x1 x2 : X) => ε < edist x1 x2
Instances For
Alias of Metric.IsSeparated.of_subsingleton
.
Metric separated pairs of sets #
In this section we define the predicate Metric.AreSeparated
. We say that two sets in an
(extended) metric space are metric separated if the (extended) distance between x ∈ s
and
y ∈ t
is bounded from below by a positive constant.
This notion is useful, e.g., to define metric outer measures.
Two sets in an (extended) metric space are called metric separated if the (extended) distance
between x ∈ s
and y ∈ t
is bounded from below by a positive constant.
Instances For
Alias of Metric.AreSeparated
.
Two sets in an (extended) metric space are called metric separated if the (extended) distance
between x ∈ s
and y ∈ t
is bounded from below by a positive constant.
Equations
Instances For
Alias of the reverse direction of Metric.AreSeparated.finite_iUnion_left_iff
.
Alias of the reverse direction of Metric.AreSeparated.finset_iUnion_left_iff
.
Alias of the reverse direction of Metric.AreSeparated.finset_iUnion_right_iff
.