Relations between vector measures #
This file defines absolute continuity and mutual singularity for vector measures and proves their basic compatibility properties with algebraic operations and pushforwards.
Main definitions #
VectorMeasure.AbsolutelyContinuous, writtenv ≪ᵥ w.VectorMeasure.MutuallySingular, writtenv ⟂ᵥ w.
A vector measure v is absolutely continuous with respect to a measure μ if for all sets
s, μ s = 0, we have v s = 0.
Equations
- v.AbsolutelyContinuous w = ∀ ⦃s : Set α⦄, w s = 0 → v s = 0
Instances For
A vector measure v is absolutely continuous with respect to a measure μ if for all sets
s, μ s = 0, we have v s = 0.
Equations
- MeasureTheory.«term_≪ᵥ_» = Lean.ParserDescr.trailingNode `MeasureTheory.«term_≪ᵥ_» 50 50 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " ≪ᵥ ") (Lean.ParserDescr.cat `term 51))
Instances For
Two vector measures v and w are said to be mutually singular if there exists a measurable
set s, such that for all t ⊆ s, v t = 0 and for all t ⊆ sᶜ, w t = 0.
We note that we do not require the measurability of t in the definition since this makes it easier
to use. This is equivalent to the definition which requires measurability. To prove
MutuallySingular with the measurability condition, use
MeasureTheory.VectorMeasure.MutuallySingular.mk.
Equations
- v.MutuallySingular w = ∃ (s : Set α), MeasurableSet s ∧ (∀ t ⊆ s, v t = 0) ∧ ∀ t ⊆ sᶜ, w t = 0
Instances For
Two vector measures v and w are said to be mutually singular if there exists a measurable
set s, such that for all t ⊆ s, v t = 0 and for all t ⊆ sᶜ, w t = 0.
We note that we do not require the measurability of t in the definition since this makes it easier
to use. This is equivalent to the definition which requires measurability. To prove
MutuallySingular with the measurability condition, use
MeasureTheory.VectorMeasure.MutuallySingular.mk.
Equations
- MeasureTheory.«term_⟂ᵥ_» = Lean.ParserDescr.trailingNode `MeasureTheory.«term_⟂ᵥ_» 60 60 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " ⟂ᵥ ") (Lean.ParserDescr.cat `term 61))