[Merged by Bors] - feat(Analysis/Distribution): (1 + |x| ^ 2) ^ r has temperate growth#32307
Closed
mcdoll wants to merge 16 commits intoleanprover-community:masterfrom
Closed
[Merged by Bors] - feat(Analysis/Distribution): (1 + |x| ^ 2) ^ r has temperate growth#32307mcdoll wants to merge 16 commits intoleanprover-community:masterfrom
(1 + |x| ^ 2) ^ r has temperate growth#32307mcdoll wants to merge 16 commits intoleanprover-community:masterfrom
Conversation
PR summary 89111f4099
|
| File | Base Count | Head Count | Change |
|---|---|---|---|
| Mathlib.Analysis.Distribution.TemperateGrowth | 2267 | 2269 | +2 (+0.09%) |
Import changes for all files
| Files | Import difference |
|---|---|
22 filesMathlib.Analysis.Distribution.FourierSchwartz Mathlib.Analysis.Distribution.SchwartzSpace Mathlib.Analysis.Distribution.TemperateGrowth Mathlib.Analysis.Fourier.PoissonSummation Mathlib.Analysis.SpecialFunctions.Gaussian.PoissonSummation Mathlib.NumberTheory.EulerProduct.DirichletLSeries Mathlib.NumberTheory.Harmonic.ZetaAsymp Mathlib.NumberTheory.LSeries.DirichletContinuation Mathlib.NumberTheory.LSeries.Dirichlet Mathlib.NumberTheory.LSeries.HurwitzZetaEven Mathlib.NumberTheory.LSeries.HurwitzZetaOdd Mathlib.NumberTheory.LSeries.HurwitzZetaValues Mathlib.NumberTheory.LSeries.HurwitzZeta Mathlib.NumberTheory.LSeries.Nonvanishing Mathlib.NumberTheory.LSeries.PrimesInAP Mathlib.NumberTheory.LSeries.RiemannZeta Mathlib.NumberTheory.LSeries.ZMod Mathlib.NumberTheory.ModularForms.EisensteinSeries.QExpansion Mathlib.NumberTheory.ModularForms.JacobiTheta.Bounds Mathlib.NumberTheory.ModularForms.JacobiTheta.Manifold Mathlib.NumberTheory.ModularForms.JacobiTheta.OneVariable Mathlib.NumberTheory.ModularForms.JacobiTheta.TwoVariable |
2 |
Declarations diff
+ hasTemperateGrowth_one_add_norm_sq_rpow
You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>The doc-module for script/declarations_diff.sh contains some details about this script.
No changes to technical debt.
You can run this locally as
./scripts/technical-debt-metrics.sh pr_summary
- The
relativevalue is the weighted sum of the differences with weight given by the inverse of the current value of the statistic. - The
absolutevalue is therelativevalue divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).
40 tasks
Collaborator
|
This PR/issue depends on: |
(1 + |x|^2)^r has temperate growth(1 + |x| ^ 2) ^ r has temperate growth
j-loreaux
reviewed
Dec 16, 2025
Contributor
j-loreaux
left a comment
There was a problem hiding this comment.
This proof is pretty long, so it's hard to follow from the source code alone. Can you please add some comments sketching the idea for the reader?
Member
Author
|
Thanks that is a very good point. I've added some comments. |
j-loreaux
reviewed
Dec 17, 2025
Contributor
j-loreaux
left a comment
There was a problem hiding this comment.
Thanks! That's significantly more readable.
bors merge
mathlib-bors bot
pushed a commit
that referenced
this pull request
Dec 17, 2025
…#32307) The function `(1 + |x| ^ 2) ^ r`, also known as the Bessel potential, has temperate growth. This is a crucial ingredient to define Sobolev spaces via the Fourier transform, since only multiplication with temperate growth function maps Schwartz functions to Schwartz functions (hence tempered distributions to itself). We also add `to_fun` attributes to various declarations because `fun_prop` did not solve `1 + |x|^2` without `fun_add`.
Contributor
|
Pull request successfully merged into master. Build succeeded: |
(1 + |x| ^ 2) ^ r has temperate growth(1 + |x| ^ 2) ^ r has temperate growth
YuvalFilmus
pushed a commit
to YuvalFilmus/mathlib4
that referenced
this pull request
Dec 19, 2025
…leanprover-community#32307) The function `(1 + |x| ^ 2) ^ r`, also known as the Bessel potential, has temperate growth. This is a crucial ingredient to define Sobolev spaces via the Fourier transform, since only multiplication with temperate growth function maps Schwartz functions to Schwartz functions (hence tempered distributions to itself). We also add `to_fun` attributes to various declarations because `fun_prop` did not solve `1 + |x|^2` without `fun_add`.
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.
The function
(1 + |x| ^ 2) ^ r, also known as the Bessel potential, has temperate growth. This is a crucial ingredient to define Sobolev spaces via the Fourier transform, since only multiplication with temperate growth function maps Schwartz functions to Schwartz functions (hence tempered distributions to itself).We also add
to_funattributes to various declarations becausefun_propdid not solve1 + |x|^2withoutfun_add.