Schwartz Bilinear Translation Decay #
This file proves that bilinear integrals of Schwartz functions against a decaying kernel vanish at infinity under translation.
Main Result #
schwartz_bilinear_translation_decay: For Schwartz functions f, g on a
finite-dimensional real inner product space E, and a kernel K : E → ℝ
with polynomial decay |K(z)| ≤ C/‖z‖^α for large ‖z‖, the bilinear
integral against a translated g vanishes at infinity:
∫∫ f(x) · K(x - y) · g(y - a) dx dy → 0 as ‖a‖ → ∞
Proof Strategy (via convolutions) #
The key theorem is: L¹ ⋆ C₀ → C₀ (convolution of integrable with vanishing-at-∞ vanishes)
Apply this pattern three times:
- f ⋆ K_sing: f is C₀ (Schwartz), K_sing is L¹ → result is C₀
- f ⋆ K_tail: f is L¹ (Schwartz), K_tail is C₀ (decay) → result is C₀
- (f ⋆ K) ⋆ g: g is L¹, (f ⋆ K) is C₀ → result is C₀
References #
- Glimm-Jaffe "Quantum Physics" Ch. 6 (clustering)
- Reed-Simon Vol. II, Ch. X (decay of correlations)
Helper lemmas for Schwartz functions #
Schwartz functions are integrable.
Schwartz functions vanish at infinity (C₀).
Proof: Schwartz decay gives ‖x‖^k · ‖f(x)‖ ≤ seminorm k 0 f for all k. Taking k = 1: ‖f(x)‖ ≤ C/‖x‖ → 0 as ‖x‖ → ∞.
Kernel decomposition #
The singular (compactly supported) part of the kernel.
Equations
- kernelSingular K R₀ x = K x * (Metric.closedBall 0 R₀).indicator (fun (x : E) => 1) x
Instances For
The tail (decaying) part of the kernel.
Equations
- kernelTail K R₀ x = K x * (Metric.closedBall 0 R₀)ᶜ.indicator (fun (x : E) => 1) x
Instances For
Kernel decomposes into singular and tail parts.
K_tail vanishes at infinity when K has polynomial decay.
Key theorem: L¹ ⋆ C₀ → C₀ #
This is the main engine of the proof. In Mathlib this should be something like
convolution_tendsto_zero_of_integrable_of_continuous_vanishing or similar.
A continuous function vanishing at infinity is bounded.
For integrable f and ε > 0, there exists a compact set K with small tail integral.
This is a standard consequence of integrability - the integral concentrates on compact sets.
Convolution of an integrable function with a function vanishing at infinity also vanishes at infinity. This is a fundamental result in harmonic analysis.
Product Space Integrability for Fubini #
The bilinear integrand f(x) K(x-y) g(y-a) is integrable on E × E when:
- f, g are Schwartz functions
- K is locally integrable with bounded tail (e.g., exponential/polynomial decay)
This is used for Fubini swaps in bilinear integral proofs.
Product integrability for Schwartz bilinear forms with locally integrable kernel
For Schwartz f, g and kernel K = K_sing + K_tail where K_sing is compactly supported (hence integrable) and K_tail is bounded, the product f(x) K(x-y) g(y-a) is integrable on E × E.
This enables Fubini's theorem to swap integration order: ∫∫ f(x) K(x-y) g(y-a) dx dy = ∫ (∫ f(x) K(x-y) dx) g(y-a) dy
Main theorem #
The bilinear integral of Schwartz functions against a decaying kernel
Instances For
Clustering decay for Schwartz bilinear forms (proof version)
For Schwartz functions f, g and a kernel K with polynomial decay, the bilinear integral tends to 0 as the translation parameter a → ∞.
This version adds LocallyIntegrable hypothesis to handle kernel singularities.