Basic definitions #
This module contains the definitions mentioned in Chapter 2 of the ANTEDB blueprint.
When a blueprint convention already has a standard Mathlib representation,
prefer using that representation directly, for example:
-the notation e(θ) is 𝐞 θ after open scoped FourierTransform;
-for indicator functions, use Set.indicator;
-for suprema and infima, including those of empty sets, use Mathlib's sSup and sInf;
-for finite cardinalities use Finset.card;
A family in a pseudo-metric space is δ-separated when distinct indices have values at
least δ apart. This uses a non-strict inequality, unlike Metric.IsSeparated.
Equations
- Expdb.IsSeparatedFamily δ x = Pairwise fun (i j : ι) => δ ≤ dist (x i) (x j)
Instances For
A finite set is δ-separated when distinct elements are at least δ apart.
Equations
- Expdb.IsSeparated δ W = Expdb.IsSeparatedFamily δ fun (t : ↥W) => ↑t
Instances For
A finite set is 1-separated.
Equations
Instances For
A family in a normed type is 1-bounded.