Extension of set functions to integrable functions #
This file defines MeasureTheory.setToFun, the function-level version of
MeasureTheory.L1.setToL1. It applies the L¹ extension to an integrable function and is defined
to be zero when the function is not integrable or the target is not complete.
The file proves the core algebraic, congruence, order, indicator, simple-function, and continuity
properties of setToFun, including continuity under convergence in L¹.
Extend T : Set α → E →L[ℝ] F to (α → E) → F (for integrable functions α → E). We set it to
0 if the function is not integrable or if the target space is not complete.
Equations
- MeasureTheory.setToFun μ T hT f = if _hF : CompleteSpace F then if hf : MeasureTheory.Integrable f μ then (MeasureTheory.L1.setToL1 hT) (MeasureTheory.Integrable.toL1 f hf) else 0 else 0
Instances For
setToFun applied to the sum T + T' of two operators is the sum of the corresponding
setToFun. See also setToFun_add_left' for a version varying the reference measures.
Alias of MeasureTheory.setToFun_finsetSum'.
Alias of MeasureTheory.setToFun_finsetSum.
If F i → f in L1, then setToFun μ T hT (F i) → setToFun μ T hT f.