Unsigned Hahn decomposition theorem #
This file proves the unsigned version of the Hahn decomposition theorem.
Main definitions #
MeasureTheory.IsHahnDecomposition
: characterizes a set whereμ ≤ ν
(and the reverse inequality on the complement),
Main statements #
hahn_decomposition
: Given two finite measuresμ
andν
, there exists a measurable sets
such that any measurable sett
included ins
satisfiesν t ≤ μ t
, and any measurable setu
included in the complement ofs
satisfiesμ u ≤ ν u
.exists_isHahnDecomposition
: reformulation ofhahn_decomposition
using theIsHahnDecomposition
structure which relies on the measure restriction.
Tags #
Hahn decomposition
theorem
MeasureTheory.hahn_decomposition
{α : Type u_1}
{mα : MeasurableSpace α}
(μ ν : Measure α)
[IsFiniteMeasure μ]
[IsFiniteMeasure ν]
:
∃ (s : Set α),
MeasurableSet s ∧ (∀ (t : Set α), MeasurableSet t → t ⊆ s → ν t ≤ μ t) ∧ ∀ (t : Set α), MeasurableSet t → t ⊆ sᶜ → μ t ≤ ν t
Hahn decomposition theorem
structure
MeasureTheory.IsHahnDecomposition
{α : Type u_1}
{mα : MeasurableSpace α}
(μ ν : Measure α)
(s : Set α)
:
A set where μ ≤ ν
(and the reverse inequality on the complement),
defined via measurable set and measure restriction comparisons.
- measurableSet : MeasurableSet s
Instances For
theorem
MeasureTheory.IsHahnDecomposition.compl
{α : Type u_1}
{mα : MeasurableSpace α}
{μ ν : Measure α}
{s : Set α}
(h : IsHahnDecomposition μ ν s)
:
IsHahnDecomposition ν μ sᶜ
theorem
MeasureTheory.exists_isHahnDecomposition
{α : Type u_1}
{mα : MeasurableSpace α}
(μ ν : Measure α)
[IsFiniteMeasure μ]
[IsFiniteMeasure ν]
:
∃ (s : Set α), IsHahnDecomposition μ ν s