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

H_AlphaPrecision

definition
show as:
view math explainer →
module
IndisputableMonolith.Physics.AlphaHighPrecision
domain
Physics
line
20 · github
papers citing
none yet

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

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

open explainer

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