Encyclopedia Physics Physics Standard Model Lagrangian Structure
ARTICLE 3 claims 2 theorems 1 model
Physics Standard Model Lagrangian Structure
The Standard Model Lagrangian is often written as one long formula, but it is really five separate pieces: four main terms plus one topological extra.
The Lagrangian's five sectors
The Standard Model Lagrangian is the master equation of particle physics. It encodes how every known fundamental particle moves and interacts, and it is usually written as a single long expression. In practice, that expression falls into four main sectors: the gauge kinetic terms for the strong, weak, and electromagnetic forces; the kinetic terms for the 45 Weyl fermions (15 per generation, three generations); the Yukawa couplings that give particles mass; and the Higgs potential that drives spontaneous symmetry breaking. A fifth sector, the QCD theta term, is often added separately because it is topological rather than kinetic.
That five-part structure is not just bookkeeping. In the Recognition Science framework, the cost of recognition is forced, and the framework's proved chain of theorems derives the number 2^3, or eight, as a fundamental tick count. The framework models the correspondence between the Lagrangian's sectors and that derived structure. It defines an inductive type with exactly the five sectors, and a machine-checked theorem proves that the four main terms equal 2^2, which is also 2^(3-1). The total, five, is the main four plus the one topological term.
In plain language, the framework establishes that the Standard Model Lagrangian, when counted honestly, has exactly five sectors, and that the four main ones sit at the power of two that the framework's forcing chain predicts. The count is a definitional choice: the framework chooses to model the Lagrangian as those five pieces. What is proved is the arithmetic identity, that the number of main sectors is 2^2 and the total is five. The proof is a simple computation, checked by the machine, with no axioms beyond the standard logical ones.
The consequence is a clean structural match. The Standard Model does not need a sixth main sector, and the framework's derived power of two appears exactly where the four main terms sit. This does not explain why the Lagrangian has those four terms, but it does show that the framework's counting is consistent with the standard structure. The framework is a small but concrete example of how its derived numbers reappear in known physics.
MODEL SMLagrangianSector · IndisputableMonolith/Physics/StandardModelLagrangianStructure.lean
inductive SMLagrangianSector where
| gaugeKinetic | fermionKinetic | yukawa | higgsPotential | thetaTerm
deriving DecidableEq, Repr, BEq, Fintype
THEOREM mainTerms_2sq · mainTerms_2pow_Dm1 · IndisputableMonolith/Physics/StandardModelLagrangianStructure.lean
theorem mainTerms_2sq : mainTermCount = 2 ^ 2 := by decide
theorem mainTerms_2pow_Dm1 : mainTermCount = 2 ^ (3 - 1) := by decide
THEOREM smSectorCount · total_terms · IndisputableMonolith/Physics/StandardModelLagrangianStructure.lean
theorem smSectorCount : Fintype.card SMLagrangianSector = 5 := by decide
theorem total_terms : totalTermCount = mainTermCount + 1 := by decide
What this page does not claim
The framework does not derive the Standard Model Lagrangian from first principles. The framework does not explain why the Yukawa couplings have the values they do. The framework does not claim that the theta term is a main term; it is counted separately.
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/Physics/StandardModelLagrangianStructure.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:
- How does the framework derive the number 2^3 from the recognition cost function?
- What physical mechanism selects the four main sectors rather than a different set?
- How does the theta term's topological nature relate to the other four sectors in the framework?
- Does the framework predict any additional Lagrangian sectors beyond the five?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL SMLagrangianSector · IndisputableMonolith/Physics/StandardModelLagrangianStructure.lean
inductive SMLagrangianSector where | gaugeKinetic | fermionKinetic | yukawa | higgsPotential | thetaTerm deriving DecidableEq, Repr, BEq, FintypeThe Standard Model Lagrangian has four main sectors: gauge kinetic, fermion kinetic, Yukawa, and Higgs potential. SMLagrangianSector · IndisputableMonolith/Physics/StandardModelLagrangianStructure.leanTHEOREM mainTerms_2sq · mainTerms_2pow_Dm1 · IndisputableMonolith/Physics/StandardModelLagrangianStructure.lean
theorem mainTerms_2sq : mainTermCount = 2 ^ 2 := by decidetheorem mainTerms_2pow_Dm1 : mainTermCount = 2 ^ (3 - 1) := by decideThe four main terms equal 2^2, which is also 2^(3-1). mainTerms_2sq · mainTerms_2pow_Dm1 · IndisputableMonolith/Physics/StandardModelLagrangianStructure.leanTHEOREM smSectorCount · total_terms · IndisputableMonolith/Physics/StandardModelLagrangianStructure.lean
theorem smSectorCount : Fintype.card SMLagrangianSector = 5 := by decidetheorem total_terms : totalTermCount = mainTermCount + 1 := by decideThe total number of Lagrangian sectors is five, the four main terms plus the topological theta term. smSectorCount · total_terms · IndisputableMonolith/Physics/StandardModelLagrangianStructure.lean