Encyclopedia Astrophysics Astrophysics Rs Astro Module 003 Rsastro003 Cert
ARTICLE 3 claims 2 theorems 1 model
Astrophysics Rs Astro Module 003 Rsastro003 Cert
A machine-checked certificate in the Recognition Science library proves three general facts about a cost function, but its connection to neutron stars is a research note, not a result.
The certificate's scope
A neutron star is the crushed core left after a massive star explodes, packing more mass than the Sun into a city-sized sphere. Its radius is a hard measurement problem: the dense matter equation of state is unknown, so different models give different sizes. The Recognition Science (RS) framework's astrophysics module 3 opens with a research note claiming a specific value, phi^5 km, about 11.09 km, inside the observed 10 to 13 km range. That note is a research aspiration, not a theorem.
The machine-checked part of the module proves three general facts about a function called domainCost, a cost that measures how far a ratio of two positive numbers sits from unity. The certificate RSAstro003Cert bundles these three facts. First, the cost is zero when the two numbers are equal. Second, the cost is never negative for positive inputs. Third, a threshold constant, phi minus 3/2, is positive; phi here is the golden ratio, about 1.618, so the threshold is about 0.118. Each of these is a proved theorem, checked by the framework's machine-checked library of formal theorems.
What the certificate does not do is connect those facts to neutron stars. The cost function is defined as Jcost of the ratio m over e, where m and e are just real numbers; nothing in the definition ties them to stellar mass or radius. The same three facts are stated once, universally, in a shared template used verbatim by 2383 sibling modules. The certificate would become a theorem about neutron stars only if m and e were defined in astrophysical terms, say as a measured mass and a predicted radius. That definition is absent.
The honest reading is plain: the certificate proves a small, self-contained piece of mathematics about a cost function, and the neutron star paragraph is a note recording where the idea was meant to go. The framework's own documentation says so. A reader should not take the 11.09 km value as derived; it is a research note, and the gap between the note and the certificate is exactly the missing astrophysical definition.
THEOREM RSAstro003Cert · domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.lean
structure RSAstro003Cert 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
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 (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 : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM cert_inhabited · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.lean
theorem cert_inhabited : Nonempty RSAstro003Cert := ⟨cert⟩
What this page does not claim
The neutron star radius of 11.09 km is not a proved result; it is a research note. The certificate does not establish any connection between the cost function and astrophysical quantities. The golden ratio threshold phi minus 3/2 is not shown to have any physical meaning for neutron stars.
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/RS_Astro_Module_003.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 astrophysical definition of m and e would make the certificate a theorem about neutron star radii?
- How does the shared template's universal statement differ across the 2383 sibling modules?
- What observed data constrains the neutron star radius to the 10 to 13 km range?
- What is the status of the phi^5 km value as a prediction rather than a derivation?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM RSAstro003Cert · domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.lean
structure RSAstro003Cert 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 < canonicalThresholdtheorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem 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 : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The certificate RSAstro003Cert bundles three proved facts: the cost is zero when the two numbers are equal, nonnegative for positive inputs, and the threshold phi minus 3/2 is positive. RSAstro003Cert · domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.leanMODEL domainCost · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The cost function is defined as Jcost of the ratio m over e, where m and e are just real numbers; nothing in the definition ties them to stellar mass or radius. domainCost · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.leanTHEOREM cert_inhabited · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.lean
theorem cert_inhabited : Nonempty RSAstro003Cert := ⟨cert⟩The same three facts are stated once, universally, in a shared template used verbatim by 2383 sibling modules. cert_inhabited · IndisputableMonolith/Astrophysics/RS_Astro_Module_003.lean