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

alphaInv

definition
show as:
view math explainer →
module
IndisputableMonolith.Constants.Alpha
domain
Constants
line
35 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Constants.Alpha on GitHub at line 35.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

Derivations using this theorem

depends on

used by

formal source

  32/-- Dimensionless inverse fine-structure constant (canonical exponential resummation).
  33    This value (~137.036) is derived from the structural seed and gap with zero
  34    adjustable parameters. -/
  35@[simp] def alphaInv : ℝ := alpha_seed * Real.exp (-(f_gap / alpha_seed))
  36
  37/-- Fine-structure constant (α_EM). -/
  38@[simp] def alpha : ℝ := 1 / alphaInv
  39
  40/-! ### Numeric Verification
  41
  42The derived constants in this module are **symbolic formulas**. Any numeric
  43evaluation/match-to-CODATA checks are quarantined in
  44`IndisputableMonolith/Constants/AlphaNumericsScaffold.lean` so they cannot be
  45accidentally pulled into the certified surface.
  46-/
  47
  48/-! ### Provenance Witnesses -/
  49
  50lemma alpha_components_derived :
  51    (∃ (seed gap : ℝ),
  52      alphaInv = seed * Real.exp (-(gap / seed)) ∧
  53      seed = alpha_seed ∧
  54      gap = f_gap) := by
  55  refine ⟨alpha_seed, f_gap, ?_⟩
  56  simp
  57
  58end
  59
  60end Constants
  61end IndisputableMonolith