Skip to content

Commit e5dfb6b

Browse files
feat(MeasureTheory/LpSpace): add ContinuousMap.memLp (leanprover-community#37560)
Add `ContinuousMap.memLp`: a continuous function on a compact space is in L^p. Upstreamed from the [Carleson](https://github.com/fpvandoorn/carleson) project. Co-authored-by: Leo Diedering <129694072+ldiedering@users.noreply.github.com>
1 parent 3564e95 commit e5dfb6b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Mathlib/MeasureTheory/Function/LpSpace/ContinuousFunctions.lean

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public import Mathlib.Topology.ContinuousMap.Compact
1414
# Continuous functions in Lp space
1515
1616
When `α` is a topological space equipped with a finite Borel measure, there is a bounded linear map
17-
from the normed space of bounded continuous functions (`α →ᵇ E`) to `Lp E p μ`. We construct this
17+
from the normed space of bounded continuous functions (`α →ᵇ E`) to `Lp E p μ`. We construct this
1818
as `BoundedContinuousFunction.toLp`.
1919
2020
-/
@@ -207,4 +207,9 @@ theorem toLp_norm_le :
207207
rw [toLp_norm_eq_toLp_norm_coe]
208208
exact BoundedContinuousFunction.toLp_norm_le μ
209209

210+
lemma memLp (𝕜' : Type*) [NormedField 𝕜'] [NormedSpace 𝕜' E] (f : C(α, E)) :
211+
MemLp f p μ := by
212+
have := Lp.mem_Lp_iff_memLp.mp (Subtype.val_prop (f.toLp p μ 𝕜'))
213+
rwa [coe_toLp, memLp_congr_ae (coeFn_toAEEqFun _ _)] at this
214+
210215
end ContinuousMap

0 commit comments

Comments
 (0)