The Spectral-Topological Equation
For problems posed as an integral over space and time — field reconstruction, propagation, many-body kernels — the master equation admits a propagator form:
where the kernel factors into three parts:
K_spectral— the frequency-domain structure. For the field on a periodic lattice this is the lattice Fourier basis (the eigenbasis of the discrete Laplacian).K_temporal— the per-mode phase propagator:cos(ω_n Δt)andsin(ω_n Δt)/ω_n, locked to the Zeqond clock.K_chaos— the non-separable part. It is≡ 1in the linear (separable) regime; theλϕ³nonlinearity is the non-separable factor, handled by the integrator rather than in closed form.
This one is exact — and it's the oracle
For the linear core of the master equation (λ = 0), the spectral-topological form is not an approximation — it is the exact solution: decompose the field into lattice modes, advance each by its own cos(ω_n Δt), recombine. That exactness is what makes it useful as a verification oracle: the framework's differential engine is checked against this propagator and agrees to machine precision on the linear modes (measured: mode frequency to 8×10⁻¹⁴, full-field convergence at 2nd order). The nonlinear regime is checked against an independent RK4 reference.
In other words: the topological form is how the framework proves its own field solver honest.
Using it
You rarely call the propagator directly — the engine integrates the field for you — but the decomposition is why the work parallelises cleanly:
- The triple-integral factorisation makes each mode independent, so a field solve distributes across cores (or GPU cells) trivially and the ≤0.1% energy bound holds per chunk.
- The spectral fingerprint (
K_spectral) is also what the ZSP compression stage and the field's energy ledger read.
Reference implementation and the measured machine-precision agreement: the framework's field-evolver verification suite (audits/phase1-spectral-oracle/), where this equation is instantiated as the oracle the engine is graded against.