Skip to content

feat: Hölder framework for lp spaces#35197

Open
j-loreaux wants to merge 12 commits into
leanprover-community:masterfrom
j-loreaux:lpHolder
Open

feat: Hölder framework for lp spaces#35197
j-loreaux wants to merge 12 commits into
leanprover-community:masterfrom
j-loreaux:lpHolder

Conversation

@j-loreaux
Copy link
Copy Markdown
Contributor

@j-loreaux j-loreaux commented Feb 12, 2026

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Feb 12, 2026

PR summary 6cc078933b

Import changes for modified files

No significant changes to the import graph

Import changes for all files
Files Import difference
Mathlib.Analysis.Normed.Lp.lpHolder (new file) 1863

Declarations diff

+ add_apply
+ bilin_of_top_left
+ bilin_of_top_right
+ bilin_of_zero_left
+ bilin_of_zero_right
+ dualPairing
+ dualPairing_apply
+ holderL
+ holder_gen_bound
+ holder_top_left_bound
+ holder_top_right_bound
+ holderₗ
+ mapCLM
+ neg_apply
+ norm_dualPairing
+ norm_holderL_le
+ norm_mapCLM_le
+ norm_postcomp_le
+ norm_tsumCLM
+ nsmul_apply
+ sub_apply
+ unique
+ zero_apply
+ zsmul_apply
++ holder
- PreLp.unique

You can run this locally as follows
## summary with just the declaration names:
./scripts/pr_summary/declarations_diff.sh <optional_commit>

## more verbose report:
./scripts/pr_summary/declarations_diff.sh long <optional_commit>

The doc-module for scripts/pr_summary/declarations_diff.sh contains some details about this script.


No changes to technical debt.

This script lives in the mathlib-ci repository. To run it locally, from your mathlib4 directory:

git clone https://github.com/leanprover-community/mathlib-ci.git ../mathlib-ci
../mathlib-ci/scripts/reporting/technical-debt-metrics.sh pr_summary
  • The relative value is the weighted sum of the differences with weight given by the inverse of the current value of the statistic.
  • The absolute value is the relative value divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).

@mathlib-dependent-issues mathlib-dependent-issues Bot added the blocked-by-other-PR This PR depends on another PR (this label is automatically managed by a bot) label Feb 12, 2026
@loefflerd loefflerd added the t-analysis Analysis (normed *, calculus) label Feb 14, 2026
@mathlib-merge-conflicts
Copy link
Copy Markdown

This pull request has conflicts, please merge master and resolve them.

@mathlib-merge-conflicts mathlib-merge-conflicts Bot added the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Feb 18, 2026
@mathlib-merge-conflicts mathlib-merge-conflicts Bot removed the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Mar 6, 2026
mathlib-bors Bot pushed a commit that referenced this pull request Mar 18, 2026
…35198)

Currently the API exists only for `Real.HolderConjugate`. This generalizes it in anticipation of #35197, which implements the Hölder framework for `lp` spaces.
@mathlib-merge-conflicts mathlib-merge-conflicts Bot added the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Mar 18, 2026
@mathlib-merge-conflicts
Copy link
Copy Markdown

This pull request has conflicts, please merge master and resolve them.

justus-springer pushed a commit to justus-springer/mathlib4 that referenced this pull request Mar 28, 2026
…eanprover-community#35198)

Currently the API exists only for `Real.HolderConjugate`. This generalizes it in anticipation of leanprover-community#35197, which implements the Hölder framework for `lp` spaces.
@mathlib-dependent-issues mathlib-dependent-issues Bot removed the blocked-by-other-PR This PR depends on another PR (this label is automatically managed by a bot) label Mar 30, 2026
@mathlib-dependent-issues
Copy link
Copy Markdown

@github-actions github-actions Bot removed the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Apr 1, 2026
@loefflerd loefflerd removed their assignment Apr 3, 2026
Copy link
Copy Markdown
Contributor

@mike1729 mike1729 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found a couple of small nits.

Comment thread Mathlib/Analysis/Normed/Lp/lpHolder.lean Outdated
Comment thread Mathlib/Analysis/Normed/Lp/lpSpace.lean Outdated
Comment thread Mathlib/Analysis/Normed/Lp/lpHolder.lean Outdated
Comment thread Mathlib/Analysis/Normed/Lp/lpHolder.lean Outdated
Comment thread Mathlib/Analysis/Normed/Lp/lpHolder.lean Outdated
Comment thread Mathlib/Analysis/Normed/Lp/lpHolder.lean Outdated
j-loreaux and others added 2 commits April 21, 2026 16:30
Co-authored-by: Michal Swietek <4404982+mike1729@users.noreply.github.com>
Co-authored-by: Jireh Loreaux <loreaujy@gmail.com>
@mathlib-triage mathlib-triage Bot assigned themathqueen and unassigned urkud May 15, 2026
open scoped lp ENNReal NNReal

namespace lp
-- the material in this section could be moved to `lpSpace`, but would require some extra imports
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how heavy are the imports?


end NontriviallyNormedField

lemma norm_tsumCLM {α 𝕜 E : Type*} [NontriviallyNormedField 𝕜]
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think norm_tsumCLM_le would be better (to match the above naming)

Suggested change
lemma norm_tsumCLM {α 𝕜 E : Type*} [NontriviallyNormedField 𝕜]
lemma norm_tsumCLM_le {α 𝕜 E : Type*} [NontriviallyNormedField 𝕜]

@[simps!]
noncomputable def holderₗ (B : (i : ι) → E i →L[𝕜] F i →L[𝕜] G i) {K : ℝ} (hBK : ∀ i, ‖B i‖ ≤ K) :
lp E p →ₗ[𝕜] lp F q →ₗ[𝕜] lp G r :=
.mk₂ 𝕜 (holder r B hBK) ?_ ?_ ?_ ?_ where finally
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a PR about the convention for where and finally: leanprover-community/leanprover-community.github.io#844
This was my take from the zulip discussion, but if you prefer your current version, then feel free to revive the discussion

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

t-analysis Analysis (normed *, calculus)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants