Encyclopedia Astrophysics Astrophysics Starburst Galaxies From Jcost

ARTICLE 3 claims 2 theorems 1 model

Astrophysics Starburst Galaxies From Jcost

A starburst galaxy is one forming stars at a furious rate; a framework module tries to tie that rate to a universal cost function, but proves only general properties, not the astrophysical link.

Starburst galaxies and the cost ratio

Starburst galaxies are galaxies undergoing an exceptionally intense episode of star formation. Astronomers usually define the threshold by the star formation rate (SFR): a starburst produces more than about 10 solar masses of new stars per year, whereas a normal galaxy like the Milky Way forms less than about 1 solar mass per year. The name comes from the sudden, concentrated burst of star birth, often triggered by a galaxy collision or a close gravitational encounter. These systems are laboratories for how galaxies evolve, because they convert gas into stars so quickly that they exhaust their fuel in a relatively short cosmic time.

The classical study of starbursts goes back to the 1960s and 1970s, when astronomers first identified galaxies with unusually blue colors and strong emission lines, signatures of young massive stars. The infrared satellite IRAS in the 1980s revealed that many of these galaxies emit most of their energy in the far infrared, re-radiated by dust heated by the young stars. The standard SFR threshold of 10 solar masses per year is a working convention, not a sharp physical boundary; it separates the extreme tail of the star-forming population from the ordinary disk galaxies. The ratio between the starburst threshold and the normal rate is about 10, a factor that appears repeatedly in the framework below.

In Recognition Science, the framework models the cost of a recognition event, a discrete record of something being recognized, through a forced function J(x) = (x + 1/x)/2 - 1. The module StarburstGalaxiesFromJCost defines a domain cost as J(m/e), where m and e are two positive real numbers. The machine-checked library of formal theorems proves three general facts about this expression: it equals zero when m equals e, it is never negative for positive inputs, and a certain threshold constant phi - 3/2 is positive. These are properties of the cost function itself, not of galaxies.

The research note attached to the module records the intended astrophysical interpretation: identify m with the starburst SFR and e with the normal SFR, so that the ratio 10 is approximately phi^5, the fifth power of the golden ratio. The framework's ledger, a discrete record of events, would then place starbursts at a specific rung of a phi-power ladder. But the formal code does not define m and e in astrophysical terms. The module proves nothing about galaxies; it proves facts about J applied to a ratio. The connection to starbursts remains a research note, not a theorem.

What the module does establish in plain language is narrow and precise: for any positive numbers m and e, the cost J(m/e) is zero only when the two are equal, and is positive otherwise. The threshold phi - 3/2, about 0.118, is a positive constant, but the module does not show it corresponds to any observed SFR boundary. A reader should take away the general cost properties as proved, and the starburst interpretation as an untested hypothesis awaiting a definition of m and e in galaxy terms.

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

What this page does not claim

The module does not prove that starburst galaxies exist or that their SFR threshold is 10 solar masses per year. No claim is made that the golden ratio phi determines any measured astrophysical quantity. The research note's identification of m with SFR is a hypothesis, not a proved result.

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