Encyclopedia Foundation Foundation Qrft Gauge Tree Amplitudes Cert
ARTICLE 3 claims 2 theorems 1 model
Foundation Qrft Gauge Tree Amplitudes Cert
Three particle reactions, one shared cost function, and a structural claim about how the Standard Model's tree-level amplitudes behave.
The gauge tree amplitude triad
In particle physics, a tree amplitude is the leading-order quantum mechanical probability amplitude for a scattering or decay process, computed from Feynman diagrams without loops. The module GaugeTreeAmplitudesCert in the framework's machine-checked library of formal theorems records a structural prediction for three canonical Standard Model (SM) processes: Compton scattering (γe⁻ → γe⁻), pair annihilation (e⁺e⁻ → γγ), and W⁺W⁻ → ZZ unitarisation.
The central object is the cost function J(r) = (r + 1/r)/2 − 1, which the framework proves is the unique function satisfying five plain conditions. The module defines each amplitude as J applied to the relevant coupling ratio r, so the amplitude is zero when r = 1 (threshold) and grows monotonically off-threshold. Three theorems anchor the behavior: amplitude_zero_at_threshold, amplitude_reciprocal_symm, and amplitude_nonneg. The structure GaugeTreeAmplitudesCert packages these as a certificate, with a theorem stating the process count is exactly 3.
In Recognition Science, this is a structural opening for the A1 layer. The claim is that RS-native amplitudes match SM leading-order results in the canonical sector, with zero free parameters. The full derivation requires the Wightman/OS continuum limit (S1 in progress). The module has 0 sorry and 0 axiom in the Lean kernel.
MODEL processAmplitude · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.lean
/-- Per-process amplitude (J-cost on the relevant coupling ratio). -/
def processAmplitude (r : ℝ) : ℝ := Jcost r
THEOREM amplitude_zero_at_threshold · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.lean
theorem amplitude_zero_at_threshold : processAmplitude 1 = 0 := Jcost_unit0
THEOREM gauge_tree_process_count · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.lean
theorem gauge_tree_process_count :
Fintype.card GaugeTreeProcess = 3 := by decide
What this page does not claim
This module does not prove that RS amplitudes match measured SM cross-sections. The full derivation from the Wightman/OS continuum limit is not yet formalized. The module does not derive the value of any coupling constant from first principles.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What is the Wightman/OS continuum limit that would complete the full derivation?
- How does the framework's cost function connect to the Standard Model's coupling constants?
- What does the reciprocal symmetry of the pair annihilation amplitude imply physically?
- How does the W⁺W⁻ → ZZ unitarisation bound compare to the Standard Model's Higgs mechanism?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL processAmplitude · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.lean
/-- Per-process amplitude (J-cost on the relevant coupling ratio). -/ def processAmplitude (r : ℝ) : ℝ := Jcost rThe module defines each amplitude as J applied to the relevant coupling ratio r. processAmplitude · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.leanTHEOREM amplitude_zero_at_threshold · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.lean
theorem amplitude_zero_at_threshold : processAmplitude 1 = 0 := Jcost_unit0The amplitude is zero when r = 1 (threshold). amplitude_zero_at_threshold · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.leanTHEOREM gauge_tree_process_count · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.lean
theorem gauge_tree_process_count : Fintype.card GaugeTreeProcess = 3 := by decideThe process count is exactly 3. gauge_tree_process_count · IndisputableMonolith/Foundation/QRFT/GaugeTreeAmplitudesCert.lean