Real Covariance Form and Square Root Propagator Embedding #
This file provides the real covariance form infrastructure along with the proof of the square root propagator embedding theorem.
Main Results #
freeCovarianceFormR: The real covariance bilinear formsqrtPropagatorEmbedding: Existence of linear embedding realizing covariance as squared normfreeCovarianceFormR_continuous: Continuity of the quadratic form f ↦ C(f,f)freeCovarianceFormR_pos: Positivity of the quadratic form
Real Covariance Form #
Real covariance bilinear form induced by the free covariance kernel.
Equations
- QFT.freeCovarianceFormR m f g = ∫ (x : SpaceTime) (y : SpaceTime), f x * freeCovariance m x y * g y
Instances For
Weighted L² Space Construction #
The weighted measure on momentum space with density (‖k‖² + m²)⁻¹.
Equations
- QFT.momentumWeightMeasure m = MeasureTheory.volume.withDensity fun (k : SpaceTime) => ENNReal.ofReal (momentumWeight m k)
Instances For
ℝ-linear view of the complex Fourier transform on Schwartz space.
Note: we build this manually instead of using restrictScalars because the
LinearMap.CompatibleSMul instance is not found automatically in mathlib v4.29.
Equations
- One or more equations did not get rendered due to their size.
Instances For
ℝ-linear view of the Schwartz-to-L² embedding.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The Embedding Map #
The embedding T maps a test function to a weighted function in momentum space. Conceptually: T f = FourierTransform(f) * (‖k‖² + m²)^(-1/2).
Equations
- QFT.sqrtPropagatorMap m f k = ((SchwartzMap.fourierTransformCLM ℂ) (toComplex f)) k * ↑(momentumWeightSqrtMathlib m k)
Instances For
The sqrtPropagatorMap is square-integrable.
The weighted Fourier representative lies in L².
The squared L² norm of the mapped function.
Equations
- QFT.sqrtPropagatorMapNormSq m f = ∫ (k : SpaceTime), ‖QFT.sqrtPropagatorMap m f k‖ ^ 2
Instances For
The map is linear in f (additive).
The map is ℝ-linear (scalar multiplication).
Connection to Covariance #
For real test functions, the star (conjugation) of toComplex is the identity.
For real test functions, freeCovarianceℂ agrees with freeCovarianceℂBilinear.
Key lemma: The squared norm equals the covariance form.
The Proof of sqrtPropagatorEmbedding #
The target Hilbert space: L²(SpaceTime, Lebesgue) with complex values.
Equations
Instances For
The linear map T: TestFunction → L².
Equations
- QFT.embeddingMap m = { toFun := fun (f : TestFunction) => MeasureTheory.MemLp.toLp (QFT.sqrtPropagatorMap m f) ⋯, map_add' := ⋯, map_smul' := ⋯ }
Instances For
Squared L² norm of the embedded function in terms of the pointwise integral.
Continuous linear map obtained by composing the proven building blocks.
Equations
Instances For
Existence of a linear embedding realizing the free covariance as a squared norm. The target space H is an inner product space (L² is a Hilbert space). Note: InnerProductSpace ℝ H implies NormedSpace ℝ H via InnerProductSpace.toNormedSpace.
Auxiliary Lemmas for Continuity #
The embedding map TestFunction → L² is continuous.
Continuity of the real covariance quadratic form f ↦ C(f,f).
Positivity and Other Properties #
Positivity of the real covariance quadratic form.
Symmetry of the real covariance bilinear form.
Linearity in the first argument of the real covariance bilinear form.
Scalar multiplication in the first argument of the real covariance bilinear form.
Addition in the second argument of the real covariance bilinear form.
Scalar multiplication in the second argument of the real covariance bilinear form.
Zero in the first argument gives zero.
Zero in the second argument gives zero.
Mixed-time-reflection identity for the real free covariance.
Left linearity of freeCovarianceFormR for any fixed right argument.