The “almost everywhere” filter of co-null sets. #
If μ
is an outer measure or a measure on α
,
then MeasureTheory.ae μ
is the filter of co-null sets: s ∈ ae μ ↔ μ sᶜ = 0
.
In this file we define the filter and prove some basic theorems about it.
Notation #
∀ᵐ x ∂μ, p x
: the predicatep
holds forμ
-a.e. allx
;∃ᶠ x ∂μ, p x
: the predicatep
holds on a set of nonzero measure;f =ᵐ[μ] g
:f x = g x
forμ
-a.e. allx
;f ≤ᵐ[μ] g
:f x ≤ g x
forμ
-a.e. allx
.
Implementation details #
All notation introduced in this file
reducibly unfolds to the corresponding definitions about filters,
so generic lemmas about Filter.Eventually
, Filter.EventuallyEq
etc apply.
However, we restate some lemmas specifically for ae
.
Tags #
outer measure, measure, almost everywhere
The “almost everywhere” filter of co-null sets.
Equations
- MeasureTheory.ae μ = Filter.ofCountableUnion (fun (x : Set α) => μ x = 0) ⋯ ⋯
Instances For
∀ᵐ a ∂μ, p a
means that p a
for a.e. a
, i.e. p
holds true away from a null set.
This is notation for Filter.Eventually p (MeasureTheory.ae μ)
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Pretty printer defined by notation3
command.
Equations
- One or more equations did not get rendered due to their size.
Instances For
∃ᵐ a ∂μ, p a
means that p
holds ∂μ
-frequently,
i.e. p
holds on a set of positive measure.
This is notation for Filter.Frequently p (MeasureTheory.ae μ)
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Pretty printer defined by notation3
command.
Equations
- One or more equations did not get rendered due to their size.
Instances For
f =ᵐ[μ] g
means f
and g
are eventually equal along the a.e. filter,
i.e. f=g
away from a null set.
This is notation for Filter.EventuallyEq (MeasureTheory.ae μ) f g
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
f ≤ᵐ[μ] g
means f
is eventually less than g
along the a.e. filter,
i.e. f ≤ g
away from a null set.
This is notation for Filter.EventuallyLE (MeasureTheory.ae μ) f g
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ⋯ = ⋯
Alias of MeasureTheory.measure_mono_ae
.
If s ⊆ t
modulo a set of measure 0
, then μ s ≤ μ t
.
Alias of MeasureTheory.measure_congr
.
If two sets are equal modulo a set of measure zero, then μ s = μ t
.