Jordan decomposition #
This file proves the existence and uniqueness of the Jordan decomposition for signed measures.
The Jordan decomposition theorem states that, given a signed measure s
, there exists a
unique pair of mutually singular measures μ
and ν
, such that s = μ - ν
.
The Jordan decomposition theorem for measures is a corollary of the Hahn decomposition theorem and is useful for the Lebesgue decomposition theorem.
Main definitions #
MeasureTheory.JordanDecomposition
: a Jordan decomposition of a measurable space is a pair of mutually singular finite measures. We sayj
is a Jordan decomposition of a signed measures
ifs = j.posPart - j.negPart
.MeasureTheory.SignedMeasure.toJordanDecomposition
: the Jordan decomposition of a signed measure.MeasureTheory.SignedMeasure.toJordanDecompositionEquiv
: is theEquiv
betweenMeasureTheory.SignedMeasure
andMeasureTheory.JordanDecomposition
formed byMeasureTheory.SignedMeasure.toJordanDecomposition
.
Main results #
MeasureTheory.SignedMeasure.toSignedMeasure_toJordanDecomposition
: the Jordan decomposition theorem.MeasureTheory.JordanDecomposition.toSignedMeasure_injective
: the Jordan decomposition of a signed measure is unique.
Tags #
Jordan decomposition theorem
A Jordan decomposition of a measurable space is a pair of mutually singular, finite measures.
- posPart : MeasureTheory.Measure α
- negPart : MeasureTheory.Measure α
- posPart_finite : MeasureTheory.IsFiniteMeasure self.posPart
- negPart_finite : MeasureTheory.IsFiniteMeasure self.negPart
- mutuallySingular : self.posPart.MutuallySingular self.negPart
Instances For
Equations
- MeasureTheory.JordanDecomposition.instZero = { zero := MeasureTheory.JordanDecomposition.mk 0 0 ⋯ }
Equations
- MeasureTheory.JordanDecomposition.instInhabited = { default := 0 }
Equations
- MeasureTheory.JordanDecomposition.instInvolutiveNeg = InvolutiveNeg.mk ⋯
Equations
- One or more equations did not get rendered due to their size.
The signed measure associated with a Jordan decomposition.
Instances For
A Jordan decomposition provides a Hahn decomposition.
Given a signed measure s
, s.toJordanDecomposition
is the Jordan decomposition j
,
such that s = j.toSignedMeasure
. This property is known as the Jordan decomposition
theorem, and is shown by
MeasureTheory.SignedMeasure.toSignedMeasure_toJordanDecomposition
.
Equations
- s.toJordanDecomposition = MeasureTheory.JordanDecomposition.mk (s.toMeasureOfZeroLE ⋯.choose ⋯ ⋯) (s.toMeasureOfLEZero ⋯.chooseᶜ ⋯ ⋯) ⋯
Instances For
The Jordan decomposition theorem: Given a signed measure s
, there exists a pair of
mutually singular measures μ
and ν
such that s = μ - ν
. In this case, the measures μ
and ν
are given by s.toJordanDecomposition.posPart
and
s.toJordanDecomposition.negPart
respectively.
Note that we use MeasureTheory.JordanDecomposition.toSignedMeasure
to represent the
signed measure corresponding to
s.toJordanDecomposition.posPart - s.toJordanDecomposition.negPart
.
A subset v
of a null-set w
has zero measure if w
is a subset of a positive set u
.
A subset v
of a null-set w
has zero measure if w
is a subset of a negative set u
.
If the symmetric difference of two positive sets is a null-set, then so are the differences between the two sets.
If the symmetric difference of two negative sets is a null-set, then so are the differences between the two sets.
The Jordan decomposition of a signed measure is unique.
MeasureTheory.SignedMeasure.toJordanDecomposition
and
MeasureTheory.JordanDecomposition.toSignedMeasure
form an Equiv
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The total variation of a signed measure.