feat: locallyIntegrableOn_smul_iff#39217
Open
grunweg wants to merge 5 commits into
Open
Conversation
PR summary 578f407c34Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
locallyIntegrableOn_smul_iff
grunweg
commented
May 11, 2026
grunweg
commented
May 11, 2026
Co-authored-by: Michael Rothgang <rothgang@math.uni-bonn.de>
Contributor
Author
|
Updated the proofs with the new strategy (thanks for the suggestion). This is ready for another look! |
ADedecker
reviewed
May 11, 2026
Comment on lines
+217
to
+220
| @[simp] theorem locallyIntegrableOn_neg_iff {f : X → E} : | ||
| LocallyIntegrableOn (-f) s μ ↔ LocallyIntegrableOn f s μ := by | ||
| unfold LocallyIntegrableOn | ||
| simp_rw [MeasureTheory.integrableAtFilter_neg_iff] |
Member
There was a problem hiding this comment.
Could we have this for LocallyIntegrable as well?
Comment on lines
+227
to
+232
| -- TODO: generalise this to ENormed spaces, once there are suitable typeclasses | ||
| @[simp] theorem locallyIntegrableOn_smul_iff {𝕜 : Type*} [NormedField 𝕜] [NormedSpace 𝕜 E] | ||
| {f : X → E} (c : 𝕜) : | ||
| LocallyIntegrableOn (c • f) s μ ↔ c = 0 ∨ LocallyIntegrableOn f s μ := by | ||
| unfold LocallyIntegrableOn | ||
| grind [integrableAtFilter_smul_iff] |
| -- TODO: generalise this to ENormed spaces, once there are suitable typeclasses | ||
| protected theorem LocallyIntegrableOn.smul {𝕜 : Type*} [NormedField 𝕜] [NormedSpace 𝕜 E] | ||
| {f : X → E} (hf : LocallyIntegrableOn f s μ) (c : 𝕜) : | ||
| LocallyIntegrableOn (c • f) s μ := fun x hx ↦ (hf x hx).smul c |
Member
There was a problem hiding this comment.
Suggested change
| LocallyIntegrableOn (c • f) s μ := fun x hx ↦ (hf x hx).smul c | |
| LocallyIntegrableOn (c • f) s μ := fun x hx ↦ (hf x hx).smul c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
From Sobolev spaces. Written by (some unspecified subset of) Floris, Filippo and me.