Encyclopedia Astrophysics Astrophysics Starburst Galaxies From Jcost Starburst Gal Cert

ARTICLE 2 claims 1 theorem 1 model

Astrophysics Starburst Galaxies From Jcost Starburst Gal Cert

A machine-checked certificate proves three general facts about a cost function, but says nothing specific about starburst galaxies.

A certificate for a threshold

A starburst galaxy is one that forms stars at an exceptionally high rate, typically more than 10 solar masses per year, compared with a normal galaxy's less than 1 solar mass per year. Astronomers use this threshold to separate extreme star-forming systems from ordinary ones. The Recognition Science framework, a research program that derives physical structure from a forced cost function, contains a small formal object named StarburstGalCert (a certificate, a machine-checked collection of proved facts) tied to this idea.

The certificate itself proves three general facts about the framework's cost function J(x) = (x + 1/x)/2 - 1. First, when the two inputs are equal, the cost is zero: J(r/r) = 0 for any nonzero r. Second, for positive inputs, the cost is never negative: J(m/e) ≥ 0. Third, the number phi - 3/2, where phi is the golden ratio, is positive. Each of these is a fully proved theorem in the framework's machine-checked library of formal theorems, with no gaps. The certificate simply bundles these three proved facts into one structure and shows that structure exists.

What the certificate does not do is connect those facts to starburst galaxies. The cost function is defined as J(m/e) with no definition of what m and e mean for a galaxy. The threshold of 10 solar masses per year appears only in a research note, not in the formal proof. The note observes that 10 is close to phi^5, the fifth power of the golden ratio, and calls this the phi^5-rung threshold. But that observation is a research intention, not a proved result. The formal library states this explicitly: the module proves nothing specific to starburst galaxies because the quantities m and e are never defined in astronomical terms.

In plain terms, the certificate is like a box labeled for a galaxy that contains only general facts about numbers. The label is a hope, not a finding. To make this a real theorem about starbursts, someone would need to define m and e using galaxy properties, such as gas mass and some reference mass, and then prove the threshold follows. Until that definition exists, the certificate is a formal placeholder, not a physical claim.

THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/StarburstGalaxiesFromJCost.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]
MODEL domainCost · IndisputableMonolith/Astrophysics/StarburstGalaxiesFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

The certificate proves that starburst galaxies exist or that any real galaxy satisfies the threshold. The framework derives the 10 solar masses per year value from first principles. The phi^5 observation is a proved result rather than a research note.

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/StarburstGalaxiesFromJCost.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