Skip to main content
fpvandoorn/carleson
Source indexedlemma · leanprover/lean4:v4.32.0

MeasureTheory.sum_sq_eLpNorm_indicator_le_of_pairwiseDisjoint

Carleson.ToMathlib.Misc · Carleson/ToMathlib/Misc.lean:774 to 786

Mathematical statement

Exact Lean statement

lemma sum_sq_eLpNorm_indicator_le_of_pairwiseDisjoint
    {α ι F : Type*} [MeasurableSpace α] [NormedAddCommGroup F] {μ : Measure α}
    {s : Finset ι} {f : α → F} {t : ι → Set α} (meast : ∀ i, MeasurableSet (t i))
    (hpd : PairwiseDisjoint s t) :
    ∑ i ∈ s, eLpNorm ((t i).indicator f) 2 μ ^ 2 ≤ eLpNorm f 2 μ ^ 2

Complete declaration

Lean source

Canonical source
Full Lean sourceLean 4
lemma sum_sq_eLpNorm_indicator_le_of_pairwiseDisjoint    {α ι F : Type*} [MeasurableSpace α] [NormedAddCommGroup F] {μ : Measure α}    {s : Finset ι} {f : α  F} {t : ι  Set α} (meast :  i, MeasurableSet (t i))    (hpd : PairwiseDisjoint s t) :    ∑ i  s, eLpNorm ((t i).indicator f) 2 μ ^ 2  eLpNorm f 2 μ ^ 2 := by  simp_rw [sq_eLpNorm_two]  conv_lhs =>    enter [2, i, 2, x]    rw [enorm_indicator_eq_indicator_enorm, sq,  inter_indicator_mul, inter_self]    enter [2, y]; rw [ sq]  conv_lhs => enter [2, i]; rw [lintegral_indicator (meast i)]  rw [ lintegral_biUnion_finset hpd fun _ _  meast _]  exact setLIntegral_le_lintegral _ _