def
definition
F
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Pipelines on GitHub at line 27.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
standardLagrangian -
SatisfiesRCL -
oganesson_full_shell -
Centering -
numBravaisLattices -
en_increases_across_period -
noble_gas_zero_en -
alkaliMetalZ -
electronegativityDifference -
DuhamelKernelDominatedConvergenceAt -
duhamelKernelDominatedConvergenceAt_of_forcing -
duhamelKernelIntegral -
duhamelRemainderOfGalerkin_integratingFactor -
duhamelRemainderOfGalerkin_kernel -
forcingDCTAt -
ForcingDominatedConvergenceAt -
ForcingDominatedConvergenceAt -
GalerkinForcingDominatedConvergenceHypothesis -
nsDuhamelCoeffBound_galerkinKernel -
nsDuhamelCoeffBound_galerkinKernel_of_forcing -
nsDuhamelCoeffBound_galerkinKernel_of_forcingHyp -
nsDuhamelCoeffBound_kernelIntegral -
nsDuhamelCoeffBound_kernelIntegral_of_forcing -
nsDuhamel_of_forall_kernelIntegral -
nsDuhamel_of_forall_kernelIntegral_of_forcing -
of_convectionNormBound -
of_convectionNormBound_of_continuous -
tendsto_duhamelKernelIntegral_of_dominated_convergence -
Hypothesis -
hypothesisNormSq -
model -
rs_implies_global_regularity_2d_nsDuhamelCoeffBound_galerkinKernel -
rs_implies_global_regularity_2d_nsDuhamelCoeffBound_galerkinKernel_of_forcing -
rs_implies_global_regularity_2d_nsDuhamelCoeffBound_galerkinKernel_of_forcingHyp -
HasPolySize -
J_bit_bounds -
c_RS_upper -
rs_predicts_core -
phi_pow_fib_succ -
agree_on_exp_extends
formal source
24 (Finset.range n).sum (fun i => coeff i)
25
26/-- Generating functional F(z) := log(1 + z/φ). -/
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