GFF Measure Construction via Minlos Theorem #
Constructs the Gaussian Free Field measure μ on S'(ℝ⁴) from the free covariance:
covariance → characteristic functional exp(−½⟨f,Cf⟩) → Minlos → μ
The covariance C(f,g) = ∫∫ f(x) K(x−y) g(y) dx dy with K = free propagator is
shown to be symmetric, bilinear, positive semidefinite, and nuclear (via the
Hilbert-Schmidt embedding from Covariance.RealForm).
Lᵖ integrability of pairings ⟨ω,f⟩ under μ is proved (not axiomatized) by showing
the pushforward of μ by any pairing is a 1D Gaussian (gff_pairing_is_gaussian),
then using Mathlib's memLp_id_gaussianReal.
Main definitions #
CovarianceFunction,CovarianceNuclear: covariance structureisGaussianGJ: characteristic functional Z[J] = exp(−½⟨J,CJ⟩)constructGaussianMeasureMinlosFree: the GFF measure for mass m > 0
Dependencies #
No axioms declared here. Transitively uses schwartzIsHilbertNuclear, schwartzSeparableSpace and
minlos_theorem (proven).
Gaussian Measures on Field Configurations #
A covariance function on test functions that determines the Gaussian measure
- covar : TestFunctionℂ → TestFunctionℂ → ℂ
The covariance pairing on complex test functions.
- bilinear_right (f : TestFunctionℂ) (c : ℂ) (g₁ g₂ : TestFunctionℂ) : self.covar f (c • g₁ + g₂) = (starRingEnd ℂ) c * self.covar f g₁ + self.covar f g₂
Instances For
A measure is centered (has zero mean)
Equations
- isCenteredGJ dμ_config = ∀ (f : TestFunction), GJMean dμ_config f = 0
Instances For
A measure is Gaussian if its generating functional has the Gaussian form. For a centered Gaussian measure, Z[J] = exp(-½⟨J, CJ⟩) where C is the covariance.
Equations
- isGaussianGJ dμ_config = (isCenteredGJ dμ_config ∧ ∀ (J : TestFunctionℂ), GJGeneratingFunctionalℂ dμ_config J = Complex.exp (-(1 / 2) * SchwingerFunctionℂ₂ dμ_config J J))
Instances For
Construction via Minlos Theorem #
Hilbert-nuclear structure for real test functions, from schwartzIsHilbertNuclear.
Separability of real test functions, from schwartzSeparableSpace.
Nonemptiness of real test functions (the zero function).
Specialized Minlos construction for the free field using the square-root propagator embedding.
Equations
Instances For
The Gaussian Free Field with mass m > 0, constructed via specialized Minlos
Equations
Instances For
Real characteristic functional of the free GFF: for real test functions f, the generating functional equals the Gaussian form with the real covariance.
Characteristic Function Bridge #
These lemmas connect the GFF characteristic functional to 1D Gaussian pushforwards,
proving that gaussianFreeField_pairing_memLp can be derived from first principles.
The pushforward of the GFF measure by pairing with a test function is a 1D Gaussian. Proven via characteristic functions and Lévy's uniqueness theorem.
Fernique's Theorem for GFF: Every distribution pairing has finite moments of all orders.
This is proven using characteristic functions:
gff_pairing_is_gaussianshows the pushforward is a 1D Gaussian- Gaussian measures on ℝ have finite moments (Mathlib's
memLp_id_gaussianReal) - Pull back through the measurable pairing map
Proven via the characteristic function bridge.
The GFF pairing has an integrable square (is in L²). This follows from the fact that the pushforward is a Gaussian measure, and Gaussian measures have finite moments of all orders.
The second moment of the GFF pairing equals the covariance form. This follows from the fact that the pushforward is a Gaussian with variance equal to the covariance form, and for centered Gaussians, variance = second moment.
The Gaussian CF with the free covariance is positive definite, via the square-root propagator embedding into a Hilbert space.
The free covariance form as a MinlosAnalytic.CovarianceForm structure.
Equations
- freeCovarianceForm m = { Q := QFT.freeCovarianceFormR m, symm := ⋯, psd := ⋯, cont_diag := ⋯, add_left := ⋯, smul_left := ⋯, gaussian_cf_pd := ⋯ }
Instances For
The GFF has zero mean: the measure is centered.
Proof: The characteristic functional gff_real_characteristic shows that
Z[f] = exp(-½⟨f,Cf⟩) depends only on the quadratic form freeCovarianceFormR m f f,
which is symmetric under f ↦ -f. By integral_neg_invariance, the measure is
invariant under ω ↦ -ω. From this negation invariance:
GJMean μ φ = ∫ ⟨ω,φ⟩ dμ = ∫ ⟨-ω,φ⟩ dμ = -∫ ⟨ω,φ⟩ dμ
implying GJMean μ φ = 0.
Fernique's Theorem for GFF (exponential form): For every real test function φ,
there exists α > 0 such that exp(α * ⟨ω, φ⟩²) is integrable under the free GFF measure.
This follows from gff_pairing_is_gaussian which shows the pushforward is a 1D Gaussian,
combined with Mathlib's IsGaussian.exists_integrable_exp_sq (Fernique's theorem).
For real test functions, the square of the Gaussian pairing is integrable under the free Gaussian Free Field measure. This is the diagonal (f = g) case needed for establishing two-point integrability.