CV/Dispersion: relativistic dispersion ω_k = √(k² + m²) (EFT Stage 2a) #
Category: CV (continuous variables — the multi-mode field).
Stage 1 (CV/FieldModes.lean) built the free field at a cutoff as a product of unit-frequency
oscillators. Stage 2a gives the modes their relativistic frequencies: mode k carries
momentum p k and oscillates at
ω(m, p) = √(p² + m²),
so the field's quanta are relativistic particles of mass m. This is what makes the mode sum a
relativistic field rather than a generic collection of oscillators; spacetime itself is taken
as given (the EFT posture — cutoff-independence, not the continuum limit).
What this file proves #
The dispersion relation itself.
omega_sq_sub_sq— the mass shellω² − p² = m²: the Lorentz-invariant content of the dispersion relation, and the reasonmdeserves the name "mass".abs_le_omega—|p| ≤ ω: no mode carries energy below its momentum, the dispersion-level statement that excitations do not outrun the light cone.abs_mass_le_omega/omega_zero— the mass gap|m| ≤ ω, attained atp = 0: the rest energy is the floor.omega_massless—ω(0, p) = |p|, the light cone exactly.omega_le_newtonian—ω ≤ m + p²/(2m)form > 0: the relativistic energy never exceeds the Newtonian rest-plus-kinetic energy. The non-relativistic limit stated as a clean inequality rather than an asymptotic expansion.omega_mono— higher momentum costs more energy.
The relativistic field.
relFieldEnergy/relFieldHamiltonian— the free-field Hamiltonian with relativistic mode frequencies,∑ₖ ω(m, pₖ)·(cₖ + ½); still diagonal in the configuration basis (relFieldHamiltonian_mulVec_single,relFieldHamiltonian_isHermitian), so the whole record-layer measurement account ofCV/OscillatorBorn.leanapplies verbatim — only the eigenvalues change.relFieldEnergy_quantum— the headline: adding one quantum to modek₀raises the field energy by exactlyω(m, p k₀). So the excitations are relativistic particles of massmand momentump k₀; the dispersion is a statement about the particle content, not a parameter choice.relFieldEnergy_vacuum— the zero-point energy½∑ₖ ω(m, pₖ).relFieldEnergy_cutoff_independent— unchanged under raising the truncation, the Stage-1 cutoff-independence carried to relativistic frequencies.
What this file does NOT claim #
Microcausality in its continuum form ([φ(x), φ(y)] = 0 at spacelike separation) is not
proved here and does not hold exactly at a finite cutoff. The honest finite-cutoff locality
statement — the Haag–Kastler one, that observables supported on disjoint mode sets commute — is
CV/ModeLocality.lean. The continuum limit is deliberately deferred
(CV/ApproxCCR.lean no_exact_finite_ccr).
References #
CV/FieldModes.lean (Stage 1, the mode product); CV/OscillatorSpectrum.lean (oscEnergy,
oscEnergy_cutoff_independent); CV/Position.lean (the spatial lattice); CV/ModeLocality.lean
(Stage 2b, locality); specs/BACKLOG.md (the CV-chain row); specs/future-work.md.
The dispersion relation #
The relativistic dispersion ω(m, p) = √(p² + m²): the frequency of the field mode of
momentum p for a field of mass m.
Instances For
The non-relativistic bound ω ≤ m + p²/(2m). The relativistic energy never exceeds the
Newtonian rest-plus-kinetic energy — the non-relativistic limit as an inequality, with no
asymptotic expansion. The gap is exactly the p⁴/(4m²) term.
The relativistic free field #
The relativistic field energy of a configuration: each mode k contributes
ω(m, pₖ)·(cₖ + ½). Stage 1's fieldEnergy is the unit-frequency case.
Equations
- CSD.CV.relFieldEnergy m p c = ∑ k : Fin K, CSD.CV.omega m (p k) * CSD.CV.oscEnergy ↑(c k)
Instances For
The relativistic free-field Hamiltonian: diagonal in the configuration basis with the relativistic field energy on the diagonal.
Equations
- CSD.CV.relFieldHamiltonian K N m p = Matrix.diagonal fun (c : CSD.CV.FieldConfig K N) => ↑(CSD.CV.relFieldEnergy m p c)
Instances For
Configurations are energy eigenstates, now with relativistic eigenvalues. The Hamiltonian
stays diagonal in the configuration basis, so the record-layer measurement account carries over
verbatim from CV/OscillatorBorn.lean — only the eigenvalues change.
The relativistic Hamiltonian is Hermitian (diagonal with real entries).
The field energy is non-negative (each mode contributes ω ≥ 0 times cₖ + ½ > 0).
The headline: one quantum in mode k₀ costs exactly ω(m, p k₀).
If d has one more quantum in mode k₀ than c, and agrees with c elsewhere, the field
energy rises by exactly the relativistic frequency of that mode. So the field's excitations
are relativistic particles of mass m and momentum p k₀ — the dispersion relation is a
statement about the particle content, not a parameter choice.
Cutoff-independence. Configurations with the same per-mode occupation have the same relativistic field energy, regardless of the truncation — the Stage-1 statement carried to relativistic frequencies.