Encyclopedia Astrophysics Astrophysics Neutron Star Radius3 From Jcost Nsradius3 Cert

ARTICLE 5 claims 5 theorems

Astrophysics Neutron Star Radius3 From Jcost Nsradius3 Cert

A machine-checked certificate named NSRadius3Cert bundles three general facts about a cost function, but it says nothing about neutron stars.

What the certificate proves

The declaration NSRadius3Cert is a bundled certificate, a small package of three formal statements that a machine has checked. It lives in a file whose name mentions neutron star radius, and it is meant as a step toward deriving a neutron star radius from the framework's phi-ladder scaling. But the certificate itself proves only three general facts about a cost function, and none of them is specific to neutron stars.

The cost function is domainCost m e = Jcost (m / e), where Jcost is the framework's forced cost of recognition, the function J(x) = (x + 1/x)/2 - 1. The three facts are: the cost is zero when the two inputs are equal, the cost is never negative for positive inputs, and the number phi - 3/2 is positive. Here phi is the golden ratio, about 1.618, so the third fact just says the golden ratio is bigger than 1.5. Each fact is proved from the definition of Jcost and basic arithmetic, and the certificate bundles them into one structure with a proof that such a certificate exists.

What the certificate does not do is connect these facts to neutron stars. The definition of domainCost uses m and e only as real numbers; it never defines them as mass and energy, or as any neutron-star quantity. The file's own documentation says so plainly: the paragraph about neutron star radius is a research note recording where the idea was meant to go, not a result. To make this a theorem about neutron stars, one would need a definition of m and e in that subject's own terms, for instance as a star's mass and some reference energy. That definition is absent.

The certificate's value is therefore as a template, not as a physical result. It shows that the three general properties hold for any positive real inputs, and it packages them for reuse. The same three facts are stated once, universally, in a shared template module, and this file is one of many siblings that repeat them. The neutron-star radius, if it is ever derived, will come from a definition that ties the cost to a physical scale, not from this certificate alone.

THEOREM NSRadius3Cert · IndisputableMonolith/Astrophysics/Neutron_Star_Radius3_FromJCost.lean
structure NSRadius3Cert 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 · IndisputableMonolith/Astrophysics/Neutron_Star_Radius3_FromJCost.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/Astrophysics/Neutron_Star_Radius3_FromJCost.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/Astrophysics/Neutron_Star_Radius3_FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Astrophysics/Neutron_Star_Radius3_FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

The certificate does not prove any neutron star radius value, such as 12 km or any other number. The certificate does not derive the phi-ladder scaling or the estimate phi^218 from the framework's axioms. The certificate does not establish that m and e are mass and energy; they are only real numbers.

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_Radius3_FromJCost.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND