Vitali families #
On a metric space X
with a measure μ
, consider for each x : X
a family of measurable sets with
nonempty interiors, called setsAt x
. This family is a Vitali family if it satisfies the following
property: consider a (possibly non-measurable) set s
, and for any x
in s
a
subfamily f x
of setsAt x
containing sets of arbitrarily small diameter. Then one can extract
a disjoint subfamily covering almost all s
.
Vitali families are provided by covering theorems such as the Besicovitch covering theorem or the Vitali covering theorem. They make it possible to formulate general versions of theorems on differentiations of measure that apply in both contexts.
This file gives the basic definition of Vitali families. More interesting developments of this notion are deferred to other files:
- constructions of specific Vitali families are provided by the Besicovitch covering theorem, in
Besicovitch.vitaliFamily
, and by the Vitali covering theorem, inVitali.vitaliFamily
. - The main theorem on differentiation of measures along a Vitali family is proved in
VitaliFamily.ae_tendsto_rnDeriv
.
Main definitions #
VitaliFamily μ
is a structure made, for eachx : X
, of a family of sets aroundx
, such that one can extract an almost everywhere disjoint covering from any subfamily containing sets of arbitrarily small diameters.
Let v
be such a Vitali family.
v.FineSubfamilyOn
describes the subfamilies ofv
from which one can extract almost everywhere disjoint coverings. This property, calledv.FineSubfamilyOn.exists_disjoint_covering_ae
, is essentially a restatement of the definition of a Vitali family. We also provide an API to use efficiently such a disjoint covering.v.filterAt x
is a filter on sets ofX
, such that convergence with respect to this filter means convergence when sets in the Vitali family shrink towardsx
.
References #
- [Herbert Federer, Geometric Measure Theory, Chapter 2.8][Federer1996] (Vitali families are called Vitali relations there)
On a metric space X
with a measure μ
, consider for each x : X
a family of measurable sets
with nonempty interiors, called setsAt x
. This family is a Vitali family if it satisfies the
following property: consider a (possibly non-measurable) set s
, and for any x
in s
a
subfamily f x
of setsAt x
containing sets of arbitrarily small diameter. Then one can extract
a disjoint subfamily covering almost all s
.
Vitali families are provided by covering theorems such as the Besicovitch covering theorem or the Vitali covering theorem. They make it possible to formulate general versions of theorems on differentiations of measure that apply in both contexts.
Sets of the family "centered" at a given point.
- measurableSet : ∀ (x : X), ∀ s ∈ self.setsAt x, MeasurableSet s
All sets of the family are measurable.
- nonempty_interior : ∀ (x : X), ∀ s ∈ self.setsAt x, (interior s).Nonempty
All sets of the family have nonempty interior.
- nontrivial : ∀ (x : X), ∀ ε > 0, ∃ s ∈ self.setsAt x, s ⊆ Metric.closedBall x ε
For any closed ball around
x
, there exists a set of the family contained in this ball. - covering : ∀ (s : Set X) (f : X → Set (Set X)), (∀ x ∈ s, f x ⊆ self.setsAt x) → (∀ x ∈ s, ∀ ε > 0, ∃ t ∈ f x, t ⊆ Metric.closedBall x ε) → ∃ (t : Set (X × Set X)), (∀ p ∈ t, p.1 ∈ s) ∧ (t.PairwiseDisjoint fun (p : X × Set X) => p.2) ∧ (∀ p ∈ t, p.2 ∈ f p.1) ∧ μ (s \ ⋃ p ∈ t, p.2) = 0
Consider a (possibly non-measurable) set
s
, and for anyx
ins
a subfamilyf x
ofsetsAt x
containing sets of arbitrarily small diameter. Then one can extract a disjoint subfamily covering almost alls
.
Instances For
All sets of the family are measurable.
All sets of the family have nonempty interior.
For any closed ball around x
, there exists a set of the family contained in this ball.
Consider a (possibly non-measurable) set s
,
and for any x
in s
a subfamily f x
of setsAt x
containing sets of arbitrarily small diameter.
Then one can extract a disjoint subfamily covering almost all s
.
A Vitali family for a measure μ
is also a Vitali family for any measure absolutely continuous
with respect to μ
.
Equations
- v.mono ν hν = { setsAt := v.setsAt, measurableSet := ⋯, nonempty_interior := ⋯, nontrivial := ⋯, covering := ⋯ }
Instances For
Given a Vitali family v
for a measure μ
, a family f
is a fine subfamily on a set s
if
every point x
in s
belongs to arbitrarily small sets in v.setsAt x ∩ f x
. This is precisely
the subfamilies for which the Vitali family definition ensures that one can extract a disjoint
covering of almost all s
.
Equations
- v.FineSubfamilyOn f s = ∀ x ∈ s, ∀ ε > 0, ∃ t ∈ v.setsAt x ∩ f x, t ⊆ Metric.closedBall x ε
Instances For
Given h : v.FineSubfamilyOn f s
, then h.index
is a set parametrizing a disjoint
covering of almost every s
.
Equations
- h.index = ⋯.choose
Instances For
Given h : v.FineSubfamilyOn f s
, then h.covering p
is a set in the family,
for p ∈ h.index
, such that these sets form a disjoint covering of almost every s
.
Equations
- _h.covering p = p.2
Instances For
One can enlarge a Vitali family by adding to the sets f x
at x
all sets which are not
contained in a δ
-neighborhood on x
. This does not change the local filter at a point, but it
can be convenient to get a nicer global behavior.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Given a vitali family v
, then v.filterAt x
is the filter on Set X
made of those families
that contain all sets of v.setsAt x
of a sufficiently small diameter. This filter makes it
possible to express limiting behavior when sets in v.setsAt x
shrink to x
.
Equations
- v.filterAt x = (nhds x).smallSets ⊓ Filter.principal (v.setsAt x)
Instances For
Equations
- ⋯ = ⋯