OS3 — Covariance Reflection Positivity #
Proves ⟨Θf, Cf⟩ ≥ 0 for positive-time test functions f, using the mixed
representation derived in OS3_MixedRep:
⟨Θf, Cf⟩ = (1/2(2π)³) ∫_{kbar} (1/ω) |∫ ftilde(t, kbar) e^{−ωt} dt|² dkbar ≥ 0
The key factorization: for f supported at positive time, |x₀+y₀| = x₀+y₀, so e^{−ω|x₀+y₀|} = e^{−ωx₀} · e^{−ωy₀} and the bilinear form becomes a perfect square ∫ (1/ω)|F_ω(kbar)|² dkbar with F_ω(kbar) = ∫ ftilde(t,kbar) e^{−ωt} dt.
Main results #
freeCovariance_reflection_positive_bilinear: ⟨Θf, Cf⟩ ≥ 0 (complex)freeCovariance_reflection_positive_real: real-valued version
Reflection Positivity Inner Product #
The reflection positivity inner product is defined using the distributional bilinear form composed with the star operation. This is the mathematically correct formulation that avoids non-convergent pointwise integrals.
The reflection positivity inner product using the distributional bilinear form: ⟨Θf, f⟩_C = freeCovarianceℂBilinear m (star f) f = ∫∫ conj(f(Θx)) * C(x,y) * f(y) dx dy
The star operation on TestFunctionℂ is defined as: (star f)(x) = conj(f(Θx)) (time reflection composed with conjugation)
This is the distributional formulation that is mathematically well-defined for Schwartz test functions.
Equations
- QFT.rpInnerProduct m f = freeCovarianceℂBilinear m (star f) f
Instances For
Direct Proof of Reflection Positivity #
The following namespace contains the complete self-contained proof of reflection positivity using the direct momentum representation approach.
Part 1: Core Definitions #
The timeReflection declaration.
Equations
- QFT.RPProof.timeReflection x = (WithLp.equiv 2 ((i : Fin STDimension) → (fun (x : Fin STDimension) => ℝ) i)).symm (Function.update x.ofLp 0 (-x.ofLp 0))
Instances For
The spatialDot declaration.
Equations
- QFT.RPProof.spatialDot k_spatial x_spatial = ∑ i : Fin (STDimension - 1), k_spatial.ofLp i * x_spatial.ofLp i
Instances For
The freeCovarianceℂBilinear declaration.
Equations
- QFT.RPProof.freeCovarianceℂBilinear m f g = ∫ (x : SpaceTime) (y : SpaceTime), f x * ↑(freeCovariance m x y) * g y
Instances For
The weightedLaplaceFourier declaration.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Reflection-positivity quadratic form used in the direct proof namespace.
Equations
Instances For
Part 2: Change of Variables #
Part 3: Mixed Representation (Direct Approach) #
The mixed representation from the Schwinger pathway.
This is more direct than the k₀-inside form for proving reflection positivity,
because (1/ω) exp(-ω|t|) already factorizes for positive-time test functions.
Part 4: Key Lemmas #
Part 5: Factorization Helpers #
The xIntegralFactor declaration.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The yIntegralFactor declaration.
Equations
- QFT.RPProof.yIntegralFactor f ω k_sp = ∫ (y : SpaceTime), f y * Complex.exp (-(↑ω * ↑(y.ofLp 0))) * Complex.exp (Complex.I * ↑(QFT.RPProof.spatialDot k_sp (spatialPart y)))
Instances For
Part 6: Factorization to Squared Norm (Direct Approach) #
Direct factorization from the mixed representation.
For positive-time test functions, the mixed representation integrand
(1/ω) exp(-ω|t|) exp(-ik_sp·r) factorizes directly because:
|t| = |-x₀-y₀| = x₀+y₀whenx₀, y₀ ≥ 0exp(-ω(x₀+y₀)) = exp(-ωx₀) · exp(-ωy₀)exp(-ik_sp·r) = exp(-ik_sp·x_sp) · exp(+ik_sp·y_sp)
This avoids the round-trip through k₀ space that the old proof used.
Part 7: Final Representation #
The RP inner product equals (1/(2(2π)^{d-1})) ∫_{k_sp} (1/ω) |F_ω(-k_sp)|².
This follows directly from the mixed representation + factorization, without going through the k₀-inside form.
Part 8: Direct Reflection Positivity #
Theorem: Direct proof of reflection positivity without spatial regulator.
For test functions supported on positive time (t > 0), the RP inner product ⟨Θf, f⟩_C has non-negative real part.
Proof: By rp_equals_squared_norm_integral,
⟨Θf, f⟩C = (1/(2(2π)^{d-1})) * ∫{k_sp} (1/ω) |F_ω(-k_sp)|² dk_sp
Both the prefactor and integrand are non-negative.
Bridge to Direct Proof #
Bridge Lemma: The QFT namespace rpInnerProduct equals the RPProof rpInnerProduct.
Both are defined using the same Bessel kernel C(x,y) = (m/(4π²r)) K₁(mr), so this equality holds by definition (rfl).
Main Reflection Positivity Theorem (Bilinear Form)
For any complex test function f supported on positive time (x₀ ≥ 0), the reflection positivity inner product is non-negative:
Re⟨Θf, f⟩_C ≥ 0
where C is the unregulated Bessel covariance kernel.
Proof: Bridge to RPProof, then apply the direct proof via momentum representation and non-negativity of the integrand.
Connection to Real Test Functions #
The result extends to real test functions via embedding.
For real test functions, star (toComplex f) = compTimeReflection (toComplex f).
This is because conjugation is identity for real-valued functions.
The rpInnerProduct of a real test function equals the complex bilinear form with compTimeReflection.
For real test functions, the reflection positivity inner product is non-negative.
Alias for freeCovariance_reflection_positive_bilinear_real to match expected name.