Skip to content

Commit 00335dd

Browse files
committed
feat: multiplying by a constant on the right preserves integrability (#27948)
1 parent 1ac26b4 commit 00335dd

File tree

1 file changed

+4
-0
lines changed
  • Mathlib/MeasureTheory/Function/LpSeminorm

1 file changed

+4
-0
lines changed

Mathlib/MeasureTheory/Function/LpSeminorm/Basic.lean

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1401,6 +1401,10 @@ theorem MemLp.const_mul {f : α → 𝕜} (hf : MemLp f p μ) (c : 𝕜) : MemLp
14011401
@[deprecated (since := "2025-02-21")]
14021402
alias Memℒp.const_mul := MemLp.const_mul
14031403

1404+
theorem MemLp.mul_const {f : α → 𝕜} (hf : MemLp f p μ) (c : 𝕜) :
1405+
MemLp (fun x => f x * c) p μ :=
1406+
hf.const_smul (MulOpposite.op c)
1407+
14041408
end IsBoundedSMul
14051409

14061410
section ENormSMulClass

0 commit comments

Comments
 (0)