OS1 — Regularity (Exponential Bounds) #
Proves |Z[f]| ≤ exp(c · ‖f‖²_{L²}) with p = 2 and c = 1/(2m²). The argument:
- |Z[f]| = exp(−½ Re⟨f, Cf⟩_ℂ)
- Decompose f = f_re + i·f_im, then Re⟨f, Cf⟩ = ⟨f_re, Cf_re⟩ − ⟨f_im, Cf_im⟩
- Since C is positive semidefinite, −Re⟨f, Cf⟩ ≤ ⟨f_im, Cf_im⟩
- In momentum space: ⟨g, Cg⟩ = ∫ |ĝ(k)|²/(|k|²+m²) dk ≤ ‖g‖²_{L²}/m² (Plancherel + bound 1/(|k|²+m²) ≤ 1/m²)
- Combine: |Z[f]| ≤ exp(‖f‖²_{L²}/(2m²))
Local integrability of the two-point function C(x,0) ∼ 1/(4π²|x|²) follows from the Bessel K₁ asymptotics: (m/4π²|x|)K₁(m|x|) is locally integrable in 4D.
Main result #
Preliminaries #
Plancherel (Schwartz): L² norm preservation for the Fourier transform.
This follows directly from Mathlib's SchwartzMap.integral_norm_sq_fourier.
Mathlib's Fourier transform is unitary-normalized, so no multiplicative constant is needed.
Two-point Schwinger function equals the free covariance kernel.
This is the fundamental connection between the abstract limit-based definition and the concrete position-space propagator.
Mathematically: ⟨φ(x)φ(0)⟩_μ = C(x, 0) for the Gaussian measure with covariance C.
Justification: This follows from the double mollifier convergence theorem. The two-point function S₂(x) is defined as the limit of smeared correlations: S₂(x) = lim_{ε→0} ∫∫ φ_ε(u-x) ⟨φ(u)φ(v)⟩ φ_ε(v) du dv = lim_{ε→0} (φ_ε ⋆ (φ_ε ⋆ C))(x) = C(x) for x ≠ 0
See double_mollifier_convergence in FunctionalAnalysis.lean for the general result.
Note: The abstract SchwingerTwoPointFunction in OS_Axioms.lean is now defined as
a limit (using limUnder), properly avoiding DiracDelta. For the GFF specifically,
we use this direct definition for computational convenience.
Equations
Instances For
The GFF two-point function equals the free covariance kernel by definition.
Compatibility: The abstract SchwingerTwoPointFunction agrees with the concrete
definition for the GFF. This uses the limit-based definition of SchwingerTwoPointFunction
and the double mollifier convergence theorem via schwingerTwoPointFunction_eq_kernel.
The proof requires:
- Continuity of freeCovarianceKernel away from 0
- SchwingerFunction₂ for the GFF computes ∫∫ f(u) C(u-v) g(v) du dv
Both are standard properties of the GFF; the sorries encode these standard facts.
The abstract SchwingerTwoPointFunction equals freeCovarianceKernel for the GFF. This is the version needed for downstream proofs using TwoPointIntegrable. Note: Only holds for x ≠ 0 since the covariance is undefined at coincident points.
The GFF two-point Schwinger function satisfies a polynomial decay bound. For the free field, this follows from the Bessel function asymptotics:
- Near origin: K₁(mr) ~ 1/(mr), giving decay like 1/r²
- Far from origin: K₁(mr) ~ exp(-mr), which is even faster decay
The abstract two-point Schwinger function satisfies a polynomial decay bound. Uses the bridge lemma to connect to the concrete GFF definition. Note: At x = y (coincident points), the bound still holds since the abstract definition regularizes S(0) = 0 and 0^(-2) = 0 by Mathlib convention.
The abstract two-point Schwinger function is measurable. This uses the bridge lemma to connect to the concrete GFF definition. The functions agree on the complement of {0}, which has full measure.
GFF Exponential Bound #
Elementary bound on the GFF generating function using complex exponential properties.
The norm of the GFF generating function equals the exponential of minus one-half the real part of the covariance. This is an elementary property of complex exponentials: |exp(z)| = exp(Re z).
Using bilinearity and the real/imaginary decomposition, the real part of C(f,f) satisfies Re C(f,f) = C(Re f, Re f) - C(Im f, Im f). Combined with monotonicity of exp, this gives the bound exp(-1/2 Re C(f,f)) ≤ exp(1/2 C(Im f, Im f)).
The GFF generating functional satisfies the exponential bound |Z[f]| ≤ exp((1/2m²)||f||²_{L²}). This combines the norm equality, the bound by imaginary part, and the L² bound to give the final OS1 estimate.
Two-Point Function Local Integrability #
Using the axioms above, we establish local integrability of the Schwinger function.
The two-point Schwinger function is locally integrable. This follows from the polynomial decay bound |S_2(x)| ≤ C|x|^{-2}. In d=4 spacetime dimensions, |x|^{-2} is locally integrable since 2 < 4.
OS1 Verification for the GFF #
Using the exponential L²-bound for the generating functional and local
integrability of the two-point function, we verify OS1 as stated in
OS_Axioms.lean (with the p-th power appearing inside the exponential).
The Gaussian free field satisfies OS1 regularity with p = 2 and
c = 1/(2 m^2). This uses gff_generating_L2_bound and
gff_two_point_locally_integrable established above.
Note: Named _revised because the alternative OS0 proof in GaussianFreeField.lean
uses the same module; both are valid, and OS.Master uses this one.