pith. machine review for the scientific record. sign in

Explain the Lean theorem `ew_from_su2_u1` in module `IndisputableMonolith.Physics.ElectrowealUnificationFromRS`. Write for an educated reader who knows science and programming but may not know Lean. Cover: (1) what the declaration says in plain English, (2) why it matters in Recognition Science, (3) how to read the formal statement, (4) visible dependencies or certificates in the supplied source, and (5) what this declaration does not prove. Cite only declarations present in the supplied Recognition source.

Big AI job. Grok 4.3 reads the canon and writes a Lean-grounded derivation; usually 20 seconds to 2 minutes. The page will refresh to your answer when it’s ready.
confidence: high in recognition cached

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 of rankEW equals the sum of rankSU2 and rankU1.
  • := rfl: The proof. rfl stands for reflexivity, which Lean accepts here because rankEW was explicitly defined on the previous line as rankSU2 + 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.

cited recognition theorems

outside recognition

Aspects Recognition does not yet address:

  • The dynamical mechanism of electroweak symmetry breaking (Higgs mechanism).
  • Derivation of the exact W and Z boson masses.
  • Derivation of the Weinberg mixing angle.
  • A formal proof that SU(2)xU(1) is uniquely forced over other rank-3 Lie groups.

recognition modules consulted

The Recognition library is at github.com/jonwashburn/shape-of-logic. The model is restricted to the supplied Lean source and instructed not to invent theorem names. Treat output as a starting point, not a verified proof.