Encyclopedia Astrophysics Astrophysics Neutron Star Max Mass Rs Nsmax Mass Cert
ARTICLE 2 claims 2 theorems
Astrophysics Neutron Star Max Mass Rs Nsmax Mass Cert
A formal certificate about neutron star masses proves only three general facts about a cost function, not the astrophysical limit its name suggests.
The certificate's scope
A neutron star is the collapsed core of a massive star that exploded as a supernova, packing more mass than the Sun into a sphere roughly the size of a city. Physicists have long sought the maximum mass such an object can support before gravity overwhelms the pressure holding it together. The standard theoretical limit comes from the Tolman-Oppenheimer-Volkoff (TOV) equation, and observations of the pulsar MSP J0740 place the heaviest known neutron star at about 2.35 solar masses. The Recognition Science framework's declaration NSMaxMassCert, short for neutron star maximum mass certificate, carries a name that sounds like it settles this question, but it does not.
What the certificate actually establishes is far more modest. It proves three general facts about a cost function, a mathematical device that assigns a nonnegative penalty to a ratio of two positive numbers. First, the cost vanishes when the two numbers are equal. Second, the cost is never negative for positive inputs. Third, a particular constant called the canonical threshold, defined as phi minus 1.5, is positive. Here phi is the golden ratio, about 1.618, so the threshold is about 0.118. These three facts are true for any positive real numbers m and e plugged into the function; nothing in the proof refers to neutron stars, masses, or astrophysics.
The declaration's own documentation is explicit about this gap. It records a research note speculating that phi squared solar masses, about 2.618 solar masses, might represent a maximum neutron star mass, roughly 10 percent above the observed 2.35 solar masses. But the note is not a result. The code defines the cost as Jcost applied to the ratio m over e, without ever defining what m and e mean for a neutron star. The certificate is a template, shared verbatim with 2383 sibling modules, each of which applies the same three facts to a different subject. What would turn this into a theorem about neutron stars is a definition of m and e in that subject's own terms, and that definition does not exist here.
In Recognition Science, the framework's machine-checked library of formal theorems proves the cost function's uniqueness and its chain of consequences, but this particular declaration does not contribute to the astrophysical limit. A reader should take NSMaxMassCert for what it is: a correct but generic piece of mathematics, waiting for a physical model to give its variables meaning. The certificate proves the cost behaves well; it does not prove that neutron stars obey that cost.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Neutron_Star_Max_Mass_RS.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 (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]
THEOREM domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Max_Mass_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The certificate does not establish any maximum mass for neutron stars. The certificate does not derive the golden ratio from neutron star physics. The certificate does not validate the phi squared solar mass conjecture.
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/Neutron_Star_Max_Mass_RS.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 definition of m and e would make the cost function a genuine model of neutron star stability?
- How does the observed 2.35 solar mass limit compare to the TOV prediction for realistic equations of state?
- Which of the 2383 sibling modules have successfully defined their subject's variables in physical terms?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Neutron_Star_Max_Mass_RS.lean
theorem 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 proves three general facts about a cost function: the cost vanishes when the two numbers are equal, the cost is never negative for positive inputs, and the canonical threshold is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Neutron_Star_Max_Mass_RS.leanTHEOREM domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Max_Mass_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The declaration's own documentation is explicit that the research note about phi squared solar masses is not a result. domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Max_Mass_RS.lean