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 predicatepholds forμ-a.e. allx;∃ᶠ x ∂μ, p x: the predicatepholds on a set of nonzero measure;f =ᵐ[μ] g:f x = g xforμ-a.e. allx;f ≤ᵐ[μ] g:f x ≤ g xforμ-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) ⋯ ⋯
Pretty printer defined by notation3 command.
Equations
- One or more equations did not get rendered due to their size.
∀ᵐ 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.
Pretty printer defined by notation3 command.
Equations
- One or more equations did not get rendered due to their size.
∃ᵐ 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.
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.
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.
Alias of MeasureTheory.measure_zero_iff_ae_notMem.
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.