Conditional Expectation and Lp Helper Lemmas #
This file contains utility lemmas for conditional expectation and Lp norm manipulation.
Main Definitions #
None - this file only contains helper lemmas.
Main Results #
condExp_const_mul: Scalar linearity of conditional expectationcondExp_sum_finset: Finite sum linearity of conditional expectationintegrable_of_bounded_measurable: Bounded measurable functions are integrable on finite measure spaceseLpNorm_one_le_eLpNorm_two_toReal: L¹ norm bounded by L² norm on probability spacesennreal_tendsto_toReal_zero: ENNReal convergence to zero implies Real convergence
Lp norm placeholder #
Lp seminorm: use mathlib's eLpNorm #
Conditional expectation linearity helpers #
Scalar linearity of conditional expectation.
Mathematical content: CE[c·f| mSI] = c·CE[f| mSI]
Mathlib source: MeasureTheory.condexp_smul for scalar multiplication.
Finite sum linearity of conditional expectation.
Mathematical content: CE[Σᵢfᵢ| mSI] = ΣᵢCE[fᵢ| mSI]
Mathlib source: Direct application of MeasureTheory.condExp_finset_sum.
NOTE: Uses η-expansion to work around notation elaboration issues with ∑ i ∈ s, f i vs fun ω => ∑ i ∈ s, f i ω.
On a finite measure space, a bounded measurable real function is integrable.
On a probability space, ‖f‖₁ ≤ ‖f‖₂. Version with real integral on the left.
We assume MemLp f 2 μ so the right-hand side is finite; this matches all uses below
where the function is bounded (hence in L²).
Proof strategy (from user's specification):
- Use
snorm_mono_exponentormemℒp_one_of_memℒp_twoto getMemLp f 1 μfromMemLp f 2 μ - Show both
eLpNorm f 1 μandeLpNorm f 2 μare finite - Apply exponent monotonicity:
eLpNorm f 1 μ ≤ eLpNorm f 2 μon probability spaces - Convert
∫|f|to(eLpNorm f 1 μ).toRealand applyENNReal.toReal_le_toReal
If f → 0 in ENNReal, then (toReal ∘ f) → 0 in ℝ.