def
definition
alpha_seed
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Constants.Alpha on GitHub at line 25.
browse module
All declarations in this module, on Recognition.
explainer page
Derivations using this theorem
depends on
used by
-
alpha_components_derived -
alphaInv -
alphaInv_def -
alphaInv_linear_term -
alphaInv_of_gap -
alphaInv_seed_ratio -
alpha_seed_positive -
deriv_alphaInv_of_gap -
exp_factor_bounded -
exponential_form_from_constant_log_derivative -
log_alphaInv_eq -
log_alphaInv_seed_ratio -
logarithmic_derivative_constant -
additive_residual -
AlphaPrecisionHypothesis -
alpha_seed -
exp_minus_add_pos -
exponential_residual -
AlphaPrecisionCert -
alpha_seed -
alpha_seed_eq -
alpha_seed_gt_132 -
alpha_seed_lt_176 -
alpha_seed_positive -
alphaInv_gt -
alphaInv_lt -
alpha_seed_gt -
alpha_seed_lt -
alpha_pos_aux -
WeakCouplingCert -
alpha_lt_0_1 -
alpha_positive -
alpha_coupling_derived -
alphaInv_gt_2 -
omega_lambda_lt_11_16 -
omega_lambda_positive
formal source
22
23/-- Geometric seed from ledger structure: `4π·11`.
24 Represents the baseline spherical closure cost over 11-edge interaction paths. -/
25@[simp] def alpha_seed : ℝ := 4 * Real.pi * 11
26
27/-- Legacy curvature correction (voxel seam count).
28 Retained for compatibility with older reports, but no longer used in
29 the canonical certified `alphaInv` pipeline. -/
30@[simp] def delta_kappa : ℝ := -(103 : ℝ) / (102 * Real.pi ^ 5)
31
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, ?_⟩