pith. machine review for the scientific record. sign in
theorem

conjugate_dim_forced

proved
show as:
view math explainer →
module
IndisputableMonolith.Foundation.SpectralEmergence
domain
Foundation
line
182 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Foundation.SpectralEmergence on GitHub at line 182.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

formal source

 179
 180/-- **THEOREM**: The residual dimension (conjugate sector) is forced:
 181    8 - 6 = 2 = dim(conjugate). -/
 182theorem conjugate_dim_forced :
 183    V 3 - (SpectralSector.dim .color +
 184            SpectralSector.dim .weak +
 185            SpectralSector.dim .hypercharge) =
 186    SpectralSector.dim .conjugate := by
 187  norm_num [V, SpectralSector.dim]
 188
 189/-- **THEOREM**: Total gauge generators: 8 + 3 + 1 = 12 = |E(Q₃)|.
 190    The gauge degrees of freedom equal the edge count of Q₃. -/
 191theorem gauge_generators_eq_edges :
 192    SpectralSector.gauge_rank .color +
 193    SpectralSector.gauge_rank .weak +
 194    SpectralSector.gauge_rank .hypercharge = E 3 := by
 195  norm_num [SpectralSector.gauge_rank, E]
 196
 197/-! ## Part 3: Generation Structure — Three Families from Face Pairs
 198
 199The Q₃ cube has 6 faces organized into 3 opposite pairs. Each face pair
 200corresponds to a normal axis. The 3 face pairs force exactly 3 generations
 201of fermions. -/
 202
 203/-- **THEOREM**: D = 3 forces exactly 3 generations. -/
 204theorem three_generations : face_pairs 3 = 3 := by native_decide
 205
 206/-- Generations as an explicit finite type. -/
 207abbrev Generation := Fin 3
 208
 209/-- **THEOREM**: The generation count matches the cube dimension. -/
 210theorem generations_eq_dimension : face_pairs 3 = 3 := three_generations
 211
 212/-! ## Part 4: Fermion Census — The 24 and 48 Theorems