theorem
proved
solar_matches
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Physics.PMNSCorrections on GitHub at line 151.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
148 unfold atmospheric_coefficient
149 rfl
150
151theorem solar_matches :
152 solar_correction = MixingGeometry.solar_radiative_correction := by
153 unfold solar_correction MixingGeometry.solar_radiative_correction
154 unfold solar_coefficient
155 rfl
156
157theorem cabibbo_matches :
158 cabibbo_correction = MixingGeometry.cabibbo_radiative_correction := by
159 unfold cabibbo_correction MixingGeometry.cabibbo_radiative_correction
160 unfold cabibbo_coefficient
161 norm_num
162
163/-! ## Summary Certificate -/
164
165/-- Certificate that all correction coefficients are geometrically derived.
166
167 This proves that the integers 6, 10, 3/2 are NOT free parameters but
168 are FORCED by the topology of the 3D cubic ledger. -/
169structure CorrectionDerivationCert where
170 atmospheric_from_faces : atmospheric_coefficient = cube_faces 3
171 solar_from_edges_minus_2 : solar_coefficient = cube_edges_count 3 - 2
172 cabibbo_from_faces_over_4 : cabibbo_coefficient = (cube_faces 3 : ℚ) / 4
173 coefficients_match : atmospheric_coefficient = 6 ∧
174 solar_coefficient = 10 ∧
175 cabibbo_coefficient = 3/2
176
177theorem correction_derivation_verified : CorrectionDerivationCert where
178 atmospheric_from_faces := rfl
179 solar_from_edges_minus_2 := rfl
180 cabibbo_from_faces_over_4 := cabibbo_coefficient_from_geometry
181 coefficients_match := by