Encyclopedia Astrophysics Astrophysics Active Galactic Nuclei From Jcost Agnlum Func Cert
ARTICLE 4 claims 4 theorems
Astrophysics Active Galactic Nuclei From Jcost Agnlum Func Cert
A machine-checked library file named for active galactic nuclei actually proves three general facts about a cost function, and nothing specific to galaxies.
A formal certificate for AGN luminosity
Active galactic nuclei (AGN) are the extremely luminous centers of some galaxies, powered by gas falling into a supermassive black hole. Their luminosity function describes how many AGN shine at each brightness level, and it famously breaks or bends at a characteristic luminosity L* around 10^45 erg/s. The Recognition Science framework contains a declaration named AGNLumFuncCert that sounds like it certifies a derivation of this break. In plain terms, the declaration is a small machine-checked structure that bundles three proved facts about a cost function. The first fact: when the two inputs to the cost function are equal, the cost is zero. The second: for positive inputs, the cost is never negative. The third: a certain constant built from the golden ratio phi, namely phi minus 3/2, is positive.
These three facts are general properties of the cost function, a measure of recognition effort in the framework. They are proved in the machine-checked library of formal theorems, not assumed. The library defines the cost at a point as J(m/e), where J is the framework's forced cost function and m and e are real numbers. The three theorems follow from the general properties of J, and the structure AGNLumFuncCert simply packages them together with a proof that the structure is inhabited. The declaration's own documentation is explicit: it proves nothing specific to AGN, because the cost function is defined without any reference to black holes, accretion, or luminosity.
In Recognition Science, the idea was that the AGN luminosity break might correspond to an Eddington boundary modified by the cost function. The research note in the file records this ambition: L* equals an Eddington luminosity times an inverse cost factor times a black hole mass correction. But that formula is a note about where the idea was meant to go, not a result. The file itself contains no definition of m or e in astrophysical terms, so it cannot connect the cost function to any measured AGN property. What the declaration does establish is a clean, checked foundation: the cost function behaves sensibly (zero at equality, nonnegative for positive inputs) and the golden-ratio threshold is positive. That is the certified content, and it is general mathematics, not astrophysics.
What the declaration does not claim is the interesting part. It does not claim that the AGN luminosity function has been derived from first principles, nor that the break at L* has been explained. It does not claim that the Eddington-J(phi) boundary formula is proved or even stated as a theorem. The three proved facts are true of the cost function for any positive real inputs, which means they would hold identically for a cost function in chemistry or economics. The file is a template, shared with 2383 sibling modules, and the subject-specific content is a research note, not a proof. A reader who wants a derivation of the AGN luminosity break will not find it here; what they will find is a careful, machine-checked certificate that the framework's cost function has the basic properties any such derivation would need.
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 AGNLumFuncCert · IndisputableMonolith/Astrophysics/ActiveGalacticNucleiFromJCost.lean
structure AGNLumFuncCert 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
What this page does not claim
The AGN luminosity break at L* has been derived from the cost function. The formula L* = E_Edd × J(phi)^(-1) × M_BH correction is a proved theorem. The declaration contains any astrophysical definition of the inputs m and e.
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:
- What physical definition of m and e would turn the general cost facts into a theorem about AGN luminosity?
- Does the Eddington-J(phi) boundary formula reproduce the measured L* break within observational error?
- Which of the 2383 sibling modules have made the transition from template to subject-specific theorem?
- What is the empirical status of the phi-based threshold in the AGN luminosity function?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
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_unit0The first fact: when the two inputs to the cost function are equal, the cost is zero. domainCost_at_eq · IndisputableMonolith/Astrophysics/ActiveGalacticNucleiFromJCost.leanTHEOREM 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)The second: for positive inputs, the cost is never negative. domainCost_nonneg · IndisputableMonolith/Astrophysics/ActiveGalacticNucleiFromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Astrophysics/ActiveGalacticNucleiFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The third: a certain constant built from the golden ratio phi, namely phi minus 3/2, is positive. canonicalThreshold_pos · IndisputableMonolith/Astrophysics/ActiveGalacticNucleiFromJCost.leanTHEOREM AGNLumFuncCert · IndisputableMonolith/Astrophysics/ActiveGalacticNucleiFromJCost.lean
structure AGNLumFuncCert 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 < canonicalThresholdThe declaration's own documentation is explicit: it proves nothing specific to AGN, because the cost function is defined without any reference to black holes, accretion, or luminosity. AGNLumFuncCert · IndisputableMonolith/Astrophysics/ActiveGalacticNucleiFromJCost.lean