Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Mathlib/MeasureTheory/Function/LpSpace/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,12 @@ instance instModule : Module 𝕜 (Lp E p μ) :=
theorem coeFn_smul (c : 𝕜) (f : Lp E p μ) : ⇑(c • f) =ᵐ[μ] c • ⇑f :=
AEEqFun.coeFn_smul _ _

theorem coeFn_finsetSum_smul {ι : Type*} (s : Finset ι) (c : ι → 𝕜) {h : ι → α → E}
(hmem : ∀ i, MemLp (h i) p μ) :
⇑(∑ i ∈ s, c i • (hmem i).toLp (h i)) =ᵐ[μ] ∑ i ∈ s, c i • h i :=
(coeFn_finsetSum s _).trans <|
eventuallyEq_sum fun i _ ↦ (coeFn_smul _ _).trans ((hmem i).coeFn_toLp.const_smul (c i))

instance instIsCentralScalar [Module 𝕜ᵐᵒᵖ E] [IsBoundedSMul 𝕜ᵐᵒᵖ E] [IsCentralScalar 𝕜 E] :
IsCentralScalar 𝕜 (Lp E p μ) where
op_smul_eq_smul k f := Subtype.ext <| op_smul_eq_smul k (f : α →ₘ[μ] E)
Expand Down
Loading