The filter of small sets #
This file defines the filter of small sets w.r.t. a filter f
, which is the largest filter
containing all powersets of members of f
.
g
converges to f.smallSets
if for all s ∈ f
, eventually we have g x ⊆ s
.
An example usage is that if f : ι → E → ℝ
is a family of nonnegative functions with integral 1,
then saying that fun i ↦ support (f i)
tendsto (𝓝 0).smallSets
is a way of saying that
f
tends to the Dirac delta distribution.
Alias of the reverse direction of Filter.tendsto_image_smallSets
.
Equations
- ⋯ = ⋯
Generalized squeeze theorem (also known as sandwich theorem). If s : α → Set β
is a
family of sets that tends to Filter.smallSets lb
along la
and f : α → β
is a function such
that f x ∈ s x
eventually along la
, then f
tends to lb
along la
.
If s x
is the closed interval [g x, h x]
for some functions g
, h
that tend to the same limit
𝓝 y
, then we obtain the standard squeeze theorem, see
tendsto_of_tendsto_of_tendsto_of_le_of_le'
.
Alias of the reverse direction of Filter.eventually_smallSets_forall
.
Alias of the forward direction of Filter.eventually_smallSets_forall
.