Additivity on measurable sets with finite measure #
Let T : Set α → E →L[ℝ] F
be additive for measurable sets with finite measure, in the sense that
for s, t
two such sets, Disjoint s t → T (s ∪ t) = T s + T t
. T
is akin to a bilinear map on
Set α × E
, or a linear map on indicator functions.
This property is named FinMeasAdditive
in this file. We also define DominatedFinMeasAdditive
,
which requires in addition that the norm on every set is less than the measure of the set
(up to a multiplicative constant); in Mathlib.MeasureTheory.Integral.SetToL1
we extend
set functions with this stronger property to integrable (L1) functions.
Main definitions #
FinMeasAdditive μ T
: the property thatT
is additive on measurable sets with finite measure. For two such sets,Disjoint s t → T (s ∪ t) = T s + T t
.DominatedFinMeasAdditive μ T C
:FinMeasAdditive μ T ∧ ∀ s, ‖T s‖ ≤ C * (μ s).toReal
. This is the property needed to perform the extension from indicators to L1.
Implementation notes #
The starting object T : Set α → E →L[ℝ] F
matters only through its restriction on measurable sets
with finite measure. Its value on other sets is ignored.
A set function is FinMeasAdditive
if its value on the union of two disjoint measurable
sets with finite measure is the sum of its values on each set.
Equations
- MeasureTheory.FinMeasAdditive μ T = ∀ (s t : Set α), MeasurableSet s → MeasurableSet t → μ s ≠ ⊤ → μ t ≠ ⊤ → Disjoint s t → T (s ∪ t) = T s + T t
Instances For
A FinMeasAdditive
set function whose norm on every set is less than the measure of the
set (up to a multiplicative constant).
Equations
- MeasureTheory.DominatedFinMeasAdditive μ T C = (MeasureTheory.FinMeasAdditive μ T ∧ ∀ (s : Set α), MeasurableSet s → μ s < ⊤ → ‖T s‖ ≤ C * (μ s).toReal)
Instances For
Extend Set α → (F →L[ℝ] F')
to (α →ₛ F) → F'
.