Encyclopedia Gravity Gravity Gravitational Lensing Rs3 From Jcost Grav Lens Rs3 Cert
ARTICLE 4 claims 3 theorems 1 model
Gravity Gravitational Lensing Rs3 From Jcost Grav Lens Rs3 Cert
A machine-checked certificate in the Recognition Science library proves three general facts about a cost function, but it says nothing specific about gravitational lensing.
What the certificate proves
Gravitational lensing is the bending of light by mass, predicted by general relativity and measured in the 1919 solar eclipse. The standard formula for the deflection angle is alpha = 4GM/c^2b, where G is the gravitational constant, M the mass, c the speed of light, and b the impact parameter. A certificate named GravLensRS3Cert exists in the Recognition Science framework's machine-checked library of formal theorems, but it does not prove that formula or any lensing prediction.
Recognition Science (a framework that derives structure from the forced cost of recognition events) defines a cost function J(x) = (x + 1/x)/2 - 1. The certificate concerns a derived quantity called domainCost, defined as J(m/e) for positive real numbers m and e. The machine-checked theorems prove three general facts: domainCost equals zero when m equals e, it is never negative for positive inputs, and the number phi - 3/2 is positive (where phi is the golden ratio, approximately 1.618). These are the entire content of the certificate.
In Recognition Science, the framework models the cost of recognition as forced, and the golden ratio phi emerges as the unique self-similar scaling. The certificate's threshold_pos fact, that phi - 3/2 > 0, is a small structural step in that framework. But the certificate itself contains no definition of m or e in terms of mass, distance, or any physical quantity. The docstring records a research note where the idea was meant to go: at impact parameter b = r_Sch * phi, the deflection would be 4*J(phi) = 0.472 radians, and at b = r_Sch * phi^5 it would be 4/phi^4 = 0.94 arcseconds. These are notes, not theorems; the Lean code proves none of them.
What the certificate does establish, in plain terms, is that a certain cost function has three elementary properties: it vanishes at equality, it stays nonnegative, and a golden-ratio threshold is positive. These facts are universally quantified over real numbers and are shared verbatim across 2383 sibling modules in the library, stated once in a template. The certificate is inhabited, meaning the structure exists, but its name overstates its reach: it is a certificate about a cost function, not about gravity.
THEOREM domainCost_at_eq · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
unfold domainCost; exact Jcost_nonneg (div_pos hm he)
THEOREM canonicalThreshold_pos · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The certificate does not prove the Einstein deflection formula alpha = 4GM/c^2b. The certificate does not establish any numerical deflection angle for real light bending. The research note's values 0.472 radians and 0.94 arcseconds are not theorems.
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/GravitationalLensingRS3FromJCost.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 definition of m and e in terms of mass and distance would make the certificate a theorem about lensing?
- Does the research note's deflection value at b = r_Sch * phi match any measured lensing observation?
- How does the golden-ratio threshold phi - 3/2 relate to the eight-tick recognition cycle?
- What distinguishes this certificate from the 2383 sibling modules that share its body?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0domainCost equals zero when m equals e. domainCost_at_eq · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by unfold domainCost; exact Jcost_nonneg (div_pos hm he)domainCost is never negative for positive inputs. domainCost_nonneg · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]the number phi - 3/2 is positive. canonicalThreshold_pos · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.leanMODEL domainCost · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The certificate contains no definition of m or e in terms of mass, distance, or any physical quantity. domainCost · IndisputableMonolith/Gravity/GravitationalLensingRS3FromJCost.lean