Encyclopedia Astrophysics Astrophysics Neutron Star Radius Rs
ARTICLE 5 claims 2 theorems 1 measured
Astrophysics Neutron Star Radius Rs
A neutron star packs a sun's mass into a city-sized sphere; this page explains its radius and what a formal framework can and cannot prove about it.
Neutron star radius
A neutron star is the collapsed core of a massive star that exploded as a supernova. It packs roughly 1.4 times the Sun's mass into a sphere only 10 to 13 kilometers across, making it one of the densest objects in the universe. A teaspoon of its material would weigh about a billion tons on Earth. The radius is not a sharp boundary but a practical measure of where the star's matter becomes too dense to behave like ordinary atomic matter.
The framework Recognition Science proposes a specific value for this radius. Its research note states that in the framework's units, the neutron star radius equals phi^5 kilometers, where phi is the golden ratio (1.618...). This gives 11.09 kilometers, which falls inside the observed 10 to 13 kilometer range. The framework derives this value from its forcing chain, which produces the golden ratio as a fundamental scaling constant.
The machine-checked library of formal theorems contains a module named Neutron_Star_Radius_RS. The module defines a cost function as the framework's recognition cost J applied to the ratio of two quantities m and e. It proves three general facts: this cost equals zero when m equals e, it is never negative for positive inputs, and the golden ratio minus 3/2 is positive. The module then packages these three facts into a certificate structure.
These proofs are general properties of the cost function. They do not mention neutron stars. The module does not define what m and e mean for an actual neutron star, so it does not connect the cost function to any physical measurement. The 11.09 kilometer value comes from the research note, which records where the idea was meant to go, not from a theorem. The formal proofs establish the cost function's mathematical behavior, not the star's radius.
The framework's claim about the radius is a hypothesis. It predicts that the neutron star radius is phi^5 kilometers. The falsifier is a measurement of a neutron star radius that clearly falls outside the 10 to 13 kilometer range, or a precise measurement within that range that is inconsistent with 11.09 kilometers. The general cost facts are theorems, but the physical application remains a prediction.
MEASURED cert · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean
noncomputable def cert : NSRadiusCert where
cost_at_eq := domainCost_at_eq
cost_nonneg := domainCost_nonneg
threshold_pos := canonicalThreshold_pos
MODEL domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_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]
HYPOTHESIS cert_inhabited · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean
theorem cert_inhabited : Nonempty NSRadiusCert := ⟨cert⟩
What this page does not claim
The module proves the neutron star radius is 11.09 kilometers. The cost function's three general facts are specific to neutron stars. The framework's radius prediction has been confirmed by a direct measurement.
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_Radius_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 definitions of m and e would connect the cost function to a neutron star's measured radius?
- How does the framework derive the golden ratio as a fundamental scaling constant from its forcing chain?
- What measurement precision would be needed to distinguish 11.09 kilometers from other proposed neutron star radii?
- What is the empirical status of the framework's other predicted constants, such as the fine-structure constant?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MEASURED cert · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean
noncomputable def cert : NSRadiusCert where cost_at_eq := domainCost_at_eq cost_nonneg := domainCost_nonneg threshold_pos := canonicalThreshold_posA neutron star packs roughly 1.4 times the Sun's mass into a sphere only 10 to 13 kilometers across. cert · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.leanMODEL domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The framework's research note states that the neutron star radius equals phi^5 kilometers, giving 11.09 kilometers. domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.leanTHEOREM domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The module defines a cost function as the framework's recognition cost J applied to the ratio of two quantities m and e. domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.leanTHEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_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]It proves three general facts: this cost equals zero when m equals e, it is never negative for positive inputs, and the golden ratio minus 3/2 is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.leanHYPOTHESIS cert_inhabited · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean
theorem cert_inhabited : Nonempty NSRadiusCert := ⟨cert⟩It predicts that the neutron star radius is phi^5 kilometers. cert_inhabited · IndisputableMonolith/Astrophysics/Neutron_Star_Radius_RS.lean