inductive
definition
Lepton
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.CrossDomain.CubeFaceUniversality on GitHub at line 35.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
CubeFaceUniversalityCert -
fermion_antifermion_total -
lepton_has_6 -
quark_lepton_sum -
B_pow -
B_pow_Lepton_eq -
r0 -
r0_Lepton_eq -
Sector -
Z -
B_pow_alt -
r0_alt -
predict_mass -
rung -
rung_sdgt -
minimal_complete_coefficients -
neutrino_baseline_eq -
ChargedLeptonMassScoreCardCert -
row_electron_rel -
row_muon_rel -
row_tau_rel -
tau_muon_ratio -
SchemeReconciliationCert -
QuarkScoreCardCert -
row_electron_pct -
row_muon_pct -
row_quark_preds_pos -
row_tau_pct -
Sector -
sectorOf -
Species -
compute_rung -
ell_baseline -
tau_sdgt -
cross_sector_shift_eq -
N_diff_eq_edges_at_D3 -
total_cells_eq_D_pow_D -
fermionSector -
tauon_rung_minus_electron_rung -
electron_pred_eq
formal source
32 | up | down | strange | charm | bottom | top
33 deriving DecidableEq, Repr, BEq, Fintype
34
35inductive Lepton where
36 | electron | muon | tau | nuE | nuMu | nuTau
37 deriving DecidableEq, Repr, BEq, Fintype
38
39inductive CorticalLayer where
40 | l1 | l2 | l3 | l4 | l5 | l6
41 deriving DecidableEq, Repr, BEq, Fintype
42
43inductive BraakStage where
44 | b1 | b2 | b3 | b4 | b5 | b6
45 deriving DecidableEq, Repr, BEq, Fintype
46
47inductive RoboticDOF where
48 | x | y | z | rollAxis | pitchAxis | yawAxis
49 deriving DecidableEq, Repr, BEq, Fintype
50
51theorem quark_has_6 : HasCubeFaceCount Quark := by
52 unfold HasCubeFaceCount; decide
53theorem lepton_has_6 : HasCubeFaceCount Lepton := by
54 unfold HasCubeFaceCount; decide
55theorem cortical_has_6 : HasCubeFaceCount CorticalLayer := by
56 unfold HasCubeFaceCount; decide
57theorem braak_has_6 : HasCubeFaceCount BraakStage := by
58 unfold HasCubeFaceCount; decide
59theorem robotic_has_6 : HasCubeFaceCount RoboticDOF := by
60 unfold HasCubeFaceCount; decide
61
62/-- The cube-face identity: 6 = 2 × 3 = face-binary × spatial-dim. -/
63theorem cube_face_identity : (6 : ℕ) = 2 * 3 := by decide
64
65/-- Q₃ Euler: V - E + F = 8 - 12 + 6 = 2. -/