-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Hölder triples and multiplication of MeasureTheory.Lp
functions
#21583
base: master
Are you sure you want to change the base?
Conversation
PR summary 495856e5d3Import changes for modified filesNo significant changes to the import graph Import changes for all files
|
Can you show the relationship to conjugate exponents? |
|
This PR/issue depends on: |
This introduces a class
ENNReal.HolderTriple
which takes argumentsr p q : ℝ≥0∞
and simply requires1 / r = 1 / p + 1 / q
, andr
is marked as asemiOutParam
(not anoutParam
because this could cause issues for two values ofr
that are propositionally but not definitionally equal).This class allows us to define an
HMul
instance forMeasureTheory.Lp
, and then proves various facts about it. This culminates in the natural continuous linear map fromMeasureTheory.Lp 𝕜 p μ
toNormedSpace.Dual 𝕜 (MeasureTheory.Lp 𝕜 q μ)
. Of course, this can be upgraded to a linear isometry equivalence, but that requires significantly more work.Note: this makes the second example (the first being matrices) of a true heterogeneous multiplication occurring in practice. Right now, none of our distributivity lemmas can be stated for heterogeneous multiplication. Moreover, we can't have
IsScalarTower
orSMulCommClass
instances for these.Maybe we should consider having heterogeneous variants of these classes?
HolderTriple
#21792This PR can be split once the design decisions are approved.