Quantitative Decay for Schwartz Bilinear Forms #
This file proves that bilinear integrals of Schwartz functions against an exponentially decaying kernel have polynomial decay at any rate.
Main Result #
schwartz_bilinear_translation_decay_polynomial_proof: For Schwartz functions f, g
and a kernel K with exponential decay |K(z)| ≤ C_K * exp(-m‖z‖), the bilinear
integral decays polynomially:
|∫∫ f(x) · K(x - y) · g(y - a) dx dy| ≤ c * (1 + ‖a‖)^{-α}
for any α > 0.
Proof Strategy #
- Define a PolynomialDecayBound structure to track decay constants
- Show Schwartz functions have polynomial decay (via Mathlib seminorms)
- Prove exponential decay implies polynomial decay at any rate
- Prove split convolution lemma: conv of two polynomial-decay functions decays
- Apply to the bilinear integral by decomposing K = K_sing + K_tail
References #
- Reed-Simon Vol. II, Ch. X (decay of correlations)
- Glimm-Jaffe "Quantum Physics" Sec. 6.2 (clustering bounds)
Phase 1: Polynomial Decay Structure and Schwartz Bridge #
A function f has polynomial decay of order N with constant C if ‖f(x)‖ ≤ C / (1 + ‖x‖)^N for all x.
- C : ℝ
Positive constant controlling the polynomial decay bound.
Instances For
Schwartz functions have polynomial decay at any natural number rate.
This follows from SchwartzMap.one_add_le_sup_seminorm_apply: (1 + ‖x‖)^k * ‖D^n f(x)‖ ≤ 2^k * seminorm_{k,n} f
Taking n = 0 and rearranging gives ‖f(x)‖ ≤ C * (1 + ‖x‖)^{-k}.
Equations
Instances For
Schwartz functions have polynomial decay at any real rate (via ceiling).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Phase 2: Exponential to Polynomial Conversion #
For any α > 0 and m > 0, exponential decay implies polynomial decay: exp(-mx) ≤ C * (1 + x)^{-α} for all x ≥ 0.
This uses the fact that x^α * exp(-mx) is bounded (it tends to 0 at infinity).
Exponential decay of norms implies polynomial decay bounds.
Equations
- normExpDecayImpliesPolynomialDecay g m C_exp R₀ hm hC_exp hR₀ hg_decay hg_bdd α hα = { C := max (C_exp * Classical.choose ⋯) (Classical.choose hg_bdd * (1 + R₀) ^ α) + 1, hC_pos := ⋯, bound := ⋯ }
Instances For
Phase 3: Split Convolution Lemma #
If two integrable functions have polynomial decay of order N > dim E, then their convolution
has polynomial decay of the same order.
Equations
- convolutionPolynomialDecay hN_dim hu_decay hv_decay hu_int hv_int = ⋯.choose
Instances For
Phase 4: Kernel Decomposition Bounds #
Convolution of a Schwartz function with the compactly supported singular kernel part has polynomial decay.
Equations
- convolutionCompactSupportDecay f K R₀ hR₀ hK_loc N _hN = ⋯.choose
Instances For
Convolution of a Schwartz function with the exponentially decaying kernel tail has polynomial decay at any rate above the dimension.
Equations
- convolutionExpDecayPolynomialDecay f K R₀ m C_K hR₀ hm hC_K hK_loc hK_decay hK_bdd N hN_dim hN = ⋯.choose
Instances For
Phase 5: Main Theorem Assembly #
Quantitative polynomial decay for Schwartz bilinear forms (proven theorem)
For Schwartz functions f, g and a kernel K with exponential decay |K(z)| ≤ C_K · e^{-m‖z‖} (for large ‖z‖, from mass gap m > 0), the bilinear integral decays polynomially at any rate α > 0:
|∫∫ f(x) · K(x - y) · g(y - a) dx dy| ≤ c(f,g,α) · (1 + ‖a‖)^{-α}
The proof structure:
- Decompose K = K_sing + K_tail
- Show H(y) = ∫ f(x) K(x-y) dx = H_sing(y) + H_tail(y) has polynomial decay
- The integral I(a) = ∫ H(y) g(y-a) dy = (H ⋆ gtilde)(a) where gtilde(z) = g(-z)
- Apply convolutionPolynomialDecay to get the result