Encyclopedia Gravity Gravity Ilgspatial Kernel Jphi Penalty Eq Phi Minus Three Halves
ARTICLE 4 claims 4 theorems
Gravity Ilgspatial Kernel Jphi Penalty Eq Phi Minus Three Halves
A single algebraic identity, J(φ) = φ − 3/2, pins down the amplitude of a proposed gravity modification and rules out a competing value.
The half-rung penalty
The declaration Jphi_penalty_eq_phi_minus_three_halves is a theorem in the machine-checked library of formal theorems. It states that a quantity called the cost penalty, written J(φ), equals φ − 3/2, where φ is the golden ratio (1.618...). The cost penalty is a number that measures the price, in the framework's accounting, of crossing one rung of a discrete scale ladder. The theorem is a definitional identity: it unfolds the definition of J(φ) and shows it is exactly φ − 3/2, which is about 0.118.
The identity matters because it completes a budget. The framework also defines a kernel amplitude C = φ⁻² ≈ 0.382, which appears in a proposed modification of the Newton-Poisson relation in Fourier space. The theorem half_rung_budget proves that J(φ) + C = 1/2. That is, the penalty for crossing a rung plus the amplitude of the kernel exactly fills a half-rung interval. The two quantities are complementary: one is the cost, the other the saving, and together they account for the budget.
The budget identity does real work. A competing value for the amplitude, C = φ⁻³ᐟ² ≈ 0.486, was proposed in an earlier account. The theorem C_competing_violates_budget proves that this competing value would make J(φ) + C exceed 1/2, breaking the budget. The framework therefore singles out C = φ⁻² as the structurally forced value. It has the closed form 2 − φ, it satisfies the budget, and it sits in a numerical band between 0.380 and 0.390. The competing value fails all three checks.
What the theorem does not claim is important. The algebraic identity J(φ) = φ − 3/2 is proved. But the choice of C = φ⁻² as the theoretical prediction, rather than an empirical fit, rests on a three-channel factorization argument that is a hypothesis, not a theorem. The empirical check against SPARC rotation-curve data is a measurement, not a proof. The theorem itself says nothing about whether the modified gravity law is true; it only fixes the amplitude if the framework is assumed.
THEOREM Jphi_penalty_eq_phi_minus_three_halves · IndisputableMonolith/Gravity/ILGSpatialKernel.lean
/-- The first-rung J-cost penalty has closed form `φ - 3/2`. -/
theorem Jphi_penalty_eq_phi_minus_three_halves :
Jphi_penalty = phi - 3 / 2 := rfl
THEOREM half_rung_budget · IndisputableMonolith/Gravity/ILGSpatialKernel.lean
/-- **THE HALF-RUNG BUDGET IDENTITY.** `J(φ) + C = 1/2`, the structural
forcing of `C = φ⁻²` as the unique spatial-kernel amplitude
consistent with the first-rung cost penalty. -/
theorem half_rung_budget : Jphi_penalty + C_kernel = 1 / 2 := by
rw [Jphi_penalty_eq_phi_minus_three_halves, C_kernel_eq_two_minus_phi]
ring
THEOREM C_competing_violates_budget · IndisputableMonolith/Gravity/ILGSpatialKernel.lean
/-- The competing amplitude `C'` PLUS `J(φ)` exceeds the half-rung
budget, violating the structural identity `J(φ) + C = 1/2`. -/
theorem C_competing_violates_budget :
Jphi_penalty + C_kernel_competing > 1 / 2 := by
have h1 : Jphi_penalty + C_kernel = 1 / 2 := half_rung_budget
have h2 : C_kernel < C_kernel_competing := C_competing_gt_C_kernel
linarith
THEOREM C_kernel_band · IndisputableMonolith/Gravity/ILGSpatialKernel.lean
/-- **THEOREM.** Numerical band: `0.380 < C < 0.390` from
`1.61 < φ < 1.62` via the `2 - φ` closed form. -/
theorem C_kernel_band :
(0.380 : ℝ) < C_kernel ∧ C_kernel < (0.390 : ℝ) := by
rw [C_kernel_eq_two_minus_phi]
have h_lo : 1.61 < phi := phi_gt_onePointSixOne
have h_hi : phi < 1.62 := phi_lt_onePointSixTwo
refine ⟨?_, ?_⟩ <;> linarith
What this page does not claim
The theorem does not prove that the modified gravity law is correct. The theorem does not derive the three-channel factorization from first principles; that argument is a hypothesis. The theorem does not establish the empirical fit to SPARC data; that is a measurement, not a proof.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Gravity/ILGSpatialKernel.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What physical evidence, beyond the algebraic budget, supports the three-channel factorization that picks C = φ⁻²?
- How does the kernel amplitude C relate to the observed rotation curves of galaxies in the SPARC sample?
- What experimental or observational test could falsify the predicted value C = 0.382?
- Does the half-rung budget identity generalize to other rungs of the scale ladder, or is it specific to the golden ratio?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM Jphi_penalty_eq_phi_minus_three_halves · IndisputableMonolith/Gravity/ILGSpatialKernel.lean
/-- The first-rung J-cost penalty has closed form `φ - 3/2`. -/ theorem Jphi_penalty_eq_phi_minus_three_halves : Jphi_penalty = phi - 3 / 2 := rflThe cost penalty J(φ) equals φ − 3/2, where φ is the golden ratio. Jphi_penalty_eq_phi_minus_three_halves · IndisputableMonolith/Gravity/ILGSpatialKernel.leanTHEOREM half_rung_budget · IndisputableMonolith/Gravity/ILGSpatialKernel.lean
/-- **THE HALF-RUNG BUDGET IDENTITY.** `J(φ) + C = 1/2`, the structural forcing of `C = φ⁻²` as the unique spatial-kernel amplitude consistent with the first-rung cost penalty. -/ theorem half_rung_budget : Jphi_penalty + C_kernel = 1 / 2 := by rw [Jphi_penalty_eq_phi_minus_three_halves, C_kernel_eq_two_minus_phi] ringThe penalty plus the kernel amplitude C = φ⁻² equals 1/2. half_rung_budget · IndisputableMonolith/Gravity/ILGSpatialKernel.leanTHEOREM C_competing_violates_budget · IndisputableMonolith/Gravity/ILGSpatialKernel.lean
/-- The competing amplitude `C'` PLUS `J(φ)` exceeds the half-rung budget, violating the structural identity `J(φ) + C = 1/2`. -/ theorem C_competing_violates_budget : Jphi_penalty + C_kernel_competing > 1 / 2 := by have h1 : Jphi_penalty + C_kernel = 1 / 2 := half_rung_budget have h2 : C_kernel < C_kernel_competing := C_competing_gt_C_kernel linarithThe competing amplitude C = φ⁻³ᐟ² would make the sum exceed 1/2, breaking the budget. C_competing_violates_budget · IndisputableMonolith/Gravity/ILGSpatialKernel.leanTHEOREM C_kernel_band · IndisputableMonolith/Gravity/ILGSpatialKernel.lean
/-- **THEOREM.** Numerical band: `0.380 < C < 0.390` from `1.61 < φ < 1.62` via the `2 - φ` closed form. -/ theorem C_kernel_band : (0.380 : ℝ) < C_kernel ∧ C_kernel < (0.390 : ℝ) := by rw [C_kernel_eq_two_minus_phi] have h_lo : 1.61 < phi := phi_gt_onePointSixOne have h_hi : phi < 1.62 := phi_lt_onePointSixTwo refine ⟨?_, ?_⟩ <;> linarithThe kernel amplitude C lies between 0.380 and 0.390. C_kernel_band · IndisputableMonolith/Gravity/ILGSpatialKernel.lean