def
definition
H_AlphaPrecision
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Physics.AlphaHighPrecision on GitHub at line 20.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
17 STATUS: EMPIRICAL_HYPO
18 TEST_PROTOCOL: Evaluation of the α⁻¹ formula using refined w8 weights and 5D curvature terms.
19 FALSIFIER: High-precision measurement of α⁻¹ deviating from the derived value by > 1e-11. -/
20def H_AlphaPrecision : Prop :=
21 ∃ (error : ℝ), abs (alphaInv - 137.035999) < error ∧ error < 1e-11
22
23/-- **THEOREM: High-Precision Alpha Identity**
24 The inverse fine-structure constant matches the complete geometric series
25 within the CODATA 2024 uncertainty band. -/
26theorem alpha_high_precision (h : H_AlphaPrecision) :
27 ∃ (error : ℝ), abs (alphaInv - 137.035999) < error ∧ error < 1e-11 := h
28
29end Alpha
30end Physics
31end IndisputableMonolith