Encyclopedia Astrophysics Astrophysics Gravitational Lensing From Jcost Grav Lensing Cert
ARTICLE 2 claims 1 theorem 1 model
Astrophysics Gravitational Lensing From Jcost Grav Lensing Cert
A machine-checked certificate proves three general properties of a cost function, but says nothing about gravitational lensing itself.
What the certificate proves
Gravitational lensing is the bending of light by mass, famously measured by Arthur Eddington in 1919 during a solar eclipse and now a standard tool in astronomy. In general relativity, the deflection angle for a light ray passing at distance b from a mass M is α = 4GM/(c²b), where G is Newton's constant and c is the speed of light. The angle grows as the light passes closer to the mass, and the formula is exact for small deflections.
In Recognition Science, a ledger (a discrete record of events) assigns a cost (a number measuring how far a measured value is from an expected one) to each comparison. The framework's library, a machine-checked collection of formal theorems, defines a cost function J(x) = (x + 1/x)/2 - 1, which is zero when x = 1 and positive otherwise. The declaration GravLensingCert bundles three facts about this cost function: it vanishes when the measured value equals the expected value, it is never negative for positive inputs, and the number φ - 3/2 is positive (where φ is the golden ratio). Each fact is proved in the framework's library.
What GravLensingCert does not do is connect these facts to gravitational lensing. The declaration defines its cost using the ratio measured/expected without specifying what "measured" or "expected" mean in lensing terms. The library's own documentation states this plainly: the module proves nothing specific to gravitational lensing, because the cost function is defined without reference to that subject. The deflection formula and the idea of a maximum deflection at impact parameter b = φ × r_s (where r_s is the Schwarzschild radius) appear only in a research note, not in any proved theorem.
The practical upshot: GravLensingCert is a valid but empty shell for lensing. It certifies properties of a cost function that could apply to any measurement, not to light bending. To make it a theorem about lensing, one would need to define m and e in terms of lensing quantities, such as the deflection angle or impact parameter. Until that definition exists, the certificate is a template awaiting its subject.
THEOREM GravLensingCert · IndisputableMonolith/Astrophysics/GravitationalLensingFromJCost.lean
structure GravLensingCert where
cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
threshold_pos : 0 < canonicalThreshold
MODEL domainCost · IndisputableMonolith/Astrophysics/GravitationalLensingFromJCost.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)
What this page does not claim
GravLensingCert proves any fact about gravitational lensing deflection. The deflection angle formula α = 4GM/(c²b) is derived from the cost function in this module. The maximum deflection at b = φ × r_s is a proved theorem; it appears only in a research note. The framework's constants hbar and G are derived in this module.
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/Astrophysics/GravitationalLensingFromJCost.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 definitions of measured and expected values would make the cost function a theorem about gravitational lensing?
- Does the deflection formula α = 4GM/(c²b) follow from the cost function with any specific choice of m and e?
- What is the physical interpretation of the threshold φ - 3/2 in a lensing context?
- How does the framework derive the Schwarzschild radius from its constants?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM GravLensingCert · IndisputableMonolith/Astrophysics/GravitationalLensingFromJCost.lean
structure GravLensingCert where cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0 cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e threshold_pos : 0 < canonicalThresholdThe declaration GravLensingCert bundles three facts about this cost function: it vanishes when the measured value equals the expected value, it is never negative for positive inputs, and the number φ - 3/2 is positive. GravLensingCert · IndisputableMonolith/Astrophysics/GravitationalLensingFromJCost.leanMODEL domainCost · IndisputableMonolith/Astrophysics/GravitationalLensingFromJCost.lean
def domainCost (measured expected : ℝ) : ℝ := Jcost (measured / expected)The declaration defines its cost using the ratio measured/expected without specifying what "measured" or "expected" mean in lensing terms. domainCost · IndisputableMonolith/Astrophysics/GravitationalLensingFromJCost.lean