[Merged by Bors] - feat(MeasureTheory): integral is monotone/convex if the integrand is monotone/convex#24341
Closed
[Merged by Bors] - feat(MeasureTheory): integral is monotone/convex if the integrand is monotone/convex#24341
Conversation
PR summary 4b70dd6b74Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
j-loreaux
approved these changes
May 6, 2025
Collaborator
j-loreaux
left a comment
There was a problem hiding this comment.
To make the fun_prop calls you need to add this variant next to Integrable.smul:
@[fun_prop]
theorem Integrable.fun_smul {α β : Type*} {m : MeasurableSpace α} {μ : Measure α}
[NormedAddCommGroup β] {𝕜 : Type u_6} [NormedAddCommGroup 𝕜] [SMulZeroClass 𝕜 β]
[IsBoundedSMul 𝕜 β] (c : 𝕜) {f : α → β} (hf : Integrable f μ) :
Integrable (fun x ↦ c • f x) μ :=
hf.smul cbors d+
Contributor
|
✌️ dupuisf can now approve this pull request. To approve and merge a pull request, simply reply with |
Contributor
Author
|
bors r+ |
mathlib-bors bot
pushed a commit
that referenced
this pull request
May 7, 2025
…monotone/convex (#24341) This PR shows that the function `fun b => ∫ x, f x b ∂μ` is monotone/antitone/convex/concave whenever the integrand `f x` is monotone/antitone/convex/concave ae. This will be needed to show that various functions are operator monotone or convex.
Contributor
|
Pull request successfully merged into master. Build succeeded: |
riccardobrasca
pushed a commit
that referenced
this pull request
May 7, 2025
…monotone/convex (#24341) This PR shows that the function `fun b => ∫ x, f x b ∂μ` is monotone/antitone/convex/concave whenever the integrand `f x` is monotone/antitone/convex/concave ae. This will be needed to show that various functions are operator monotone or convex.
tannerduve
pushed a commit
that referenced
this pull request
May 13, 2025
…monotone/convex (#24341) This PR shows that the function `fun b => ∫ x, f x b ∂μ` is monotone/antitone/convex/concave whenever the integrand `f x` is monotone/antitone/convex/concave ae. This will be needed to show that various functions are operator monotone or convex.
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.
This PR shows that the function
fun b => ∫ x, f x b ∂μis monotone/antitone/convex/concave whenever the integrandf xis monotone/antitone/convex/concave ae.This will be needed to show that various functions are operator monotone or convex.