Documentation

Expdb.Basic.Definitions

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;

def Expdb.IsSeparatedFamily {ι : Type u_1} {α : Type u_2} [PseudoMetricSpace α] (δ : ) (x : ια) :

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
Instances For
    def Expdb.IsSeparated {α : Type u_1} [PseudoMetricSpace α] (δ : ) (W : Finset α) :

    A finite set is δ-separated when distinct elements are at least δ apart.

    Equations
    Instances For
      @[reducible, inline]
      abbrev Expdb.IsOneSeparated {α : Type u_1} [PseudoMetricSpace α] (W : Finset α) :

      A finite set is 1-separated.

      Equations
      Instances For
        def Expdb.IsBoundedFamily {ι : Type u_1} {β : Type u_2} [Norm β] (C : ) (a : ιβ) :

        A family in a normed type is C-bounded when every value has norm at most C.

        Equations
        Instances For
          @[reducible, inline]
          abbrev Expdb.IsOneBounded {ι : Type u_1} {β : Type u_2} [Norm β] (a : ιβ) :

          A family in a normed type is 1-bounded.

          Equations
          Instances For