1. Plain English
The theorem ew_from_su2_u1 states a basic arithmetic truth about the Standard Model's gauge groups: the total rank of the unified electroweak group is exactly the sum of the ranks of its constituent groups—the weak force group SU(2) and the electromagnetic group U(1).
2. Why It Matters in Recognition Science
In Recognition Science (RS), spatial dimension $D=3$ is a foundational structural feature forced by the universal forcing chain. RS connects gauge theory directly to this spatial geometry. By observing that the rank of SU(2) is 2 and the rank of U(1) is 1, their sum perfectly matches the spatial dimension ($2 + 1 = 3$). This theorem establishes the structural dimensional match indicating that the full symmetry group of the electroweak force has exactly the right rank to map onto 3-dimensional space.
3. How to Read the Formal Statement
theorem ew_from_su2_u1 : rankEW = rankSU2 + rankU1 := rfl
theorem ew_from_su2_u1: The name of the declaration.rankEW = rankSU2 + rankU1: The proposition being proved. It asserts that the value ofrankEWequals the sum ofrankSU2andrankU1.:= rfl: The proof.rflstands for reflexivity, which Lean accepts here becauserankEWwas explicitly defined on the previous line asrankSU2 + rankU1. The two sides of the equation are definitionally identical.
4. Visible Dependencies and Certificates
The theorem relies on the preceding constants rankSU2 (defined as 2) and rankU1 (defined as 1).
It is one of three pillars required to instantiate the electrowealCert certificate, which proves that RS correctly predicts the high-level structural signature of the electroweak force. The other two pillars are:
- rankEW_eq_D, which computes that this total rank is exactly 3.
- ewObservableCount, which verifies that there are exactly 5 canonical observables (W⁺, W⁻, Z, photon, and mixing angle), matching the expected configuration dimension $D=5$.
5. What This Declaration Does Not Prove
This is a structural "A1 Depth" theorem. It does not prove:
- The dynamics of spontaneous symmetry breaking (the Higgs mechanism).
- The specific values of the W and Z boson masses.
- The exact value of the electroweak mixing angle (Weinberg angle).
- Why nature selects $SU(2) \times U(1)$ specifically, rather than any other algebraic group possessing rank 3.