theorem
proved
sm_factorization
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Foundation.GaugeFromCube on GitHub at line 223.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
formal source
220 native_decide
221
222/-- The factorization in terms of the Standard Model structure. -/
223theorem sm_factorization :
224 (48 : ℕ) = 6 * 4 * 2 := by norm_num
225
226/-! ## Part 5: Gauge Rank Correspondence -/
227
228/-- The **gauge rank** of a layer: the number of independent generators.
229
230 For a Lie group of rank r:
231 - SU(n) has rank n - 1, acts on ℂⁿ (fundamental rep dimension n)
232 - U(1) has rank 1
233
234 The cube layers provide the FUNDAMENTAL REPRESENTATION DIMENSIONS:
235 - S₃ acts on 3 axes → fundamental rep dimension 3 → SU(3)
236 - (ℤ/2ℤ)² acts on 2-element subsets → fundamental rep dimension 2 → SU(2)
237 - ℤ/2ℤ acts on parity → fundamental rep dimension 1 → U(1) -/
238structure GaugeLayer where
239 name : String
240 fund_rep_dim : ℕ
241 discrete_order : ℕ
242
243/-- The three gauge layers extracted from B₃. -/
244def color_layer : GaugeLayer :=
245 { name := "SU(3) color"
246 fund_rep_dim := 3
247 discrete_order := 6 }
248
249def weak_layer : GaugeLayer :=
250 { name := "SU(2) weak"
251 fund_rep_dim := 2
252 discrete_order := 4 }
253