def
definition
f_gap
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Pipelines on GitHub at line 30.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
alpha_components_derived -
alphaInv -
alphaInv_derived -
alphaInv_derived_eq_formula -
curvature_term_eq -
alphaInv_def -
alphaInv_linear_rate -
alphaInv_linear_term -
alphaInv_of_gap -
alphaInv_of_gap_at_canonical -
alphaInv_positive -
alphaInv_seed_ratio -
deriv_alphaInv_of_gap -
exp_factor_bounded -
exponential_form_uniqueness_ode_principle -
log_alphaInv_eq -
log_alphaInv_seed_ratio -
logarithmic_derivative_constant -
additive_residual -
exp_minus_add_pos -
exponential_residual -
f_gap -
f_gap -
f_gap_bounds_hypothesis -
alphaInv_gt -
alphaInv_lt -
alpha_seed_lt -
f_gap_gt -
f_gap_gt_strong -
f_gap_lt -
f_gap_def -
alpha_W_gt_two_alpha -
WeakCouplingCert -
alpha_lt_0_1 -
C014_certificate -
coupling_distinction_low_energy -
alphaInv_gt_2 -
omega_lambda_lt_11_16 -
AuditItem -
alphaInvValueStr
formal source
27noncomputable def F (z : ℝ) : ℝ := Real.log (1 + z / phi)
28
29/-- The master gap value as the generator at z=1. -/
30noncomputable def f_gap : ℝ := F 1
31@[simp] lemma f_gap_def : f_gap = Real.log (1 + 1 / phi) := rfl
32
33end GapSeries
34
35namespace Curvature
36
37/-- Curvature-closure constant δ_κ used in the α pipeline.
38Defined here as the exact rational/π expression from the voxel seam count. -/
39noncomputable def deltaKappa : ℝ := - (103 : ℝ) / (102 * Real.pi ^ 5)
40
41/-- The predicted dimensionless inverse fine-structure constant
42α^{-1} = 4π·11 − (ln φ + δ_κ).
43This is a pure expression-level definition (no numerics here). -/
44noncomputable def alphaInvPrediction : ℝ := 4 * Real.pi * 11 - (Real.log phi + deltaKappa)
45
46end Curvature
47
48end Pipelines
49end IndisputableMonolith