Encyclopedia Astrophysics Astrophysics Active Galactic Nuclei From Jcost

ARTICLE 4 claims 4 theorems

Astrophysics Active Galactic Nuclei From Jcost

Active galactic nuclei are the bright cores of some galaxies, powered by gas falling onto a supermassive black hole.

The Eddington boundary

Active galactic nuclei (AGN) are the compact, intensely bright centers of certain galaxies. Their energy comes from matter spiraling into a supermassive black hole, not from stars. The standard picture, developed through decades of observation, holds that this infalling gas forms a hot disk that radiates across the electromagnetic spectrum. A key quantity in this picture is the Eddington luminosity: the maximum brightness a black hole of a given mass can sustain before radiation pressure blows away the infalling gas. Above that limit, accretion stalls; below it, the disk can feed steadily. This boundary, discovered by Arthur Eddington in the 1920s, sets a natural scale for how bright an AGN can be for its black hole mass.

In Recognition Science, the framework models this same boundary using its central object, the cost function, a measure of how expensive a recognition event is. The framework's library of machine-checked theorems proves three general facts about this cost. First, when the two inputs to the cost are equal, the cost is exactly zero. Second, for positive inputs the cost is never negative. Third, a specific constant, the golden ratio minus 1.5, is positive. These three facts are assembled into a structure that certifies the cost behaves as a sensible measure of recognition difficulty. The framework's definition of the AGN domain cost is simply the cost of the ratio of two masses, m over e, without yet specifying what those masses are in astrophysical terms.

The framework's research note proposes a specific identification: the AGN luminosity function, which counts how many AGN shine at each brightness, breaks at a knee L* near 10^45 erg/s. The note suggests this knee equals the Eddington luminosity times an inverse cost factor times a black hole mass correction. In plain language, the idea is that the same cost function that governs recognition events also sets where the Eddington boundary falls in the observed distribution of AGN brightness. The luminosity function's break would then mark the Eddington-J(φ) boundary, the point where radiation pressure and the cost of continued accretion balance.

What the module actually establishes is narrower and fully rigorous. The Lean code proves the three general cost facts and packages them into a certificate. It proves nothing specific to AGN, because the definition of domainCost uses the cost of m over e without defining either mass in astrophysical terms. The research note records where the idea was meant to go, not a result. The module is one of 2383 siblings sharing the same body, all citing the universal template. To turn this into a theorem about AGN, someone must define m and e using the physics of accretion disks and black hole masses. That step remains open.

What the module does establish, then, is a reusable scaffold. Any future work that supplies the missing definitions can inherit the three proved facts about the cost: zero at equality, nonnegativity, and the positive threshold. The threshold constant, phi minus 1.5, is approximately 0.118, a small positive number that could mark a sharp transition in a physical model. The framework's contribution here is not a measurement or a prediction about real AGN, but a disciplined way to attach its cost function to a concrete astrophysical problem. The payoff would come when someone closes the gap between the general cost facts and the specific physics of Eddington-limited accretion.

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

What this page does not claim

The module does not prove that the AGN luminosity function actually breaks at the proposed knee. The module does not identify m and e with any specific astrophysical masses. The module does not derive the Eddington luminosity from first principles.

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