theorem
proved
six_cubed
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.CrossDomain.CubeFaceUniversality on GitHub at line 94.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
91 simp [Fintype.card_prod, hA, hB, hC]
92
93/-- 216 = 6³. -/
94theorem six_cubed : (6 : ℕ)^3 = 216 := by decide
95
96structure CubeFaceUniversalityCert where
97 quark_6 : HasCubeFaceCount Quark
98 lepton_6 : HasCubeFaceCount Lepton
99 cortical_6 : HasCubeFaceCount CorticalLayer
100 braak_6 : HasCubeFaceCount BraakStage
101 robotic_6 : HasCubeFaceCount RoboticDOF
102 six_equals_2_D : (6 : ℕ) = 2 * 3
103 q3_euler : (8 : ℤ) - 12 + 6 = 2
104 fermion_count : Fintype.card Quark + Fintype.card Lepton = 12
105 six_cubed : (6 : ℕ)^3 = 216
106
107def cubeFaceUniversalityCert : CubeFaceUniversalityCert where
108 quark_6 := quark_has_6
109 lepton_6 := lepton_has_6
110 cortical_6 := cortical_has_6
111 braak_6 := braak_has_6
112 robotic_6 := robotic_has_6
113 six_equals_2_D := cube_face_identity
114 q3_euler := q3_euler
115 fermion_count := quark_lepton_sum
116 six_cubed := six_cubed
117
118end IndisputableMonolith.CrossDomain.CubeFaceUniversality