Documentation

CsdLean4.CV.Dispersion

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.

The relativistic field.

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 #

noncomputable def CSD.CV.omega (m p : ) :

The relativistic dispersion ω(m, p) = √(p² + m²): the frequency of the field mode of momentum p for a field of mass m.

Equations
Instances For
    theorem CSD.CV.omega_nonneg (m p : ) :
    0 omega m p
    theorem CSD.CV.omega_sq (m p : ) :
    omega m p ^ 2 = p ^ 2 + m ^ 2

    ω² = p² + m².

    theorem CSD.CV.omega_sq_sub_sq (m p : ) :
    omega m p ^ 2 - p ^ 2 = m ^ 2

    The mass shell ω² − p² = m². The Lorentz-invariant content of the dispersion relation: the energy–momentum pair of a mode lies on the hyperboloid of invariant mass m.

    theorem CSD.CV.abs_le_omega (m p : ) :
    |p| omega m p

    |p| ≤ ω — a mode's energy is never less than its momentum. At the level of the dispersion relation this is the statement that excitations stay inside the light cone.

    theorem CSD.CV.abs_mass_le_omega (m p : ) :
    |m| omega m p

    The mass gap |m| ≤ ω — the rest energy is the floor of the spectrum.

    theorem CSD.CV.omega_zero (m : ) :
    omega m 0 = |m|

    The mass gap is attained: a mode at rest has energy exactly |m|.

    theorem CSD.CV.omega_massless (p : ) :
    omega 0 p = |p|

    The massless case is the light cone: ω(0, p) = |p|.

    theorem CSD.CV.omega_pos {m : } (hm : m 0) (p : ) :
    0 < omega m p

    A massive mode has strictly positive frequency.

    theorem CSD.CV.omega_le_newtonian {m : } (hm : 0 < m) (p : ) :
    omega m p m + p ^ 2 / (2 * m)

    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.

    theorem CSD.CV.omega_mono (m : ) {p q : } (h : |p| |q|) :
    omega m p omega m q

    Higher momentum costs more energy.

    The relativistic free field #

    noncomputable def CSD.CV.relFieldEnergy {K N : } (m : ) (p : Fin K) (c : FieldConfig K N) :

    The relativistic field energy of a configuration: each mode k contributes ω(m, pₖ)·(cₖ + ½). Stage 1's fieldEnergy is the unit-frequency case.

    Equations
    Instances For
      noncomputable def CSD.CV.relFieldHamiltonian (K N : ) (m : ) (p : Fin K) :

      The relativistic free-field Hamiltonian: diagonal in the configuration basis with the relativistic field energy on the diagonal.

      Equations
      Instances For
        theorem CSD.CV.relFieldHamiltonian_mulVec_single {K N : } (m : ) (p : Fin K) (c : FieldConfig K N) :

        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).

        theorem CSD.CV.relFieldEnergy_nonneg {K N : } (m : ) (p : Fin K) (c : FieldConfig K N) :

        The field energy is non-negative (each mode contributes ω ≥ 0 times cₖ + ½ > 0).

        theorem CSD.CV.relFieldEnergy_vacuum {K : } (m : ) (p : Fin K) {N : } [NeZero N] :
        (relFieldEnergy m p fun (x : Fin K) => 0) = (∑ k : Fin K, omega m (p k)) / 2

        The zero-point energy. The empty configuration has energy ½∑ₖ ω(m, pₖ).

        theorem CSD.CV.relFieldEnergy_quantum {K N : } (m : ) (p : Fin K) {c d : FieldConfig K N} (k₀ : Fin K) (hk₀ : (d k₀) = (c k₀) + 1) (hrest : ∀ (k : Fin K), k k₀(d k) = (c k)) :
        relFieldEnergy m p d - relFieldEnergy m p c = omega m (p k₀)

        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.

        theorem CSD.CV.relFieldEnergy_cutoff_independent {K N M : } (m : ) (p : Fin K) (c : FieldConfig K N) (d : FieldConfig K M) (h : ∀ (k : Fin K), (c k) = (d k)) :

        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.