Encyclopedia Astrophysics Astrophysics Supernova Nucleo From Phi Ladder Supernova Yield Cert
ARTICLE 5 claims 4 theorems 1 model
Astrophysics Supernova Nucleo From Phi Ladder Supernova Yield Cert
A machine-checked certificate about supernova yields is, on inspection, a certificate about a cost function's simplest properties, not about stars.
The certificate's scope
Core-collapse supernovae release about 3×10^53 ergs, mostly as neutrinos, with a neutrino luminosity peak near 10^53 erg/s lasting roughly ten seconds. A framework called Recognition Science, which derives physical structure from a forced cost function, has a library module named SupernovaYieldCert that appears to address this yield. The declaration's own docstring is explicit: the module proves three general facts about the cost function J(x) = (x + 1/x)/2 − 1, and nothing specific to supernovae.
The three proved facts are elementary. First, the cost vanishes when its two inputs are equal: for any nonzero real r, J(r/r) = 0. Second, the cost is never negative for positive inputs: if m and e are both positive, then J(m/e) ≥ 0. Third, the golden ratio φ satisfies φ − 3/2 > 0, a positive threshold. These are all theorems in the machine-checked library, each proved from the definition of J and the properties of division and positivity.
What the certificate does not do is connect these facts to supernova physics. The module defines domainCost(m, e) as J(m/e) without specifying what m or e mean in stellar terms. The docstring notes that a theorem about this subject would require defining m and e in that subject's own terms. The research note mentions that 10 seconds is approximately φ^5 × 1 second, and calls the cooling timescale φ^5 recognition ticks, but that is a stated intention, not a proved result.
The certificate bundles the three general facts into a structure and proves the structure is inhabited. That is the full extent of the formal content. A reader who wants a supernova yield prediction will not find one here; the module is a template shared verbatim with 2383 sibling modules, differing only in name. The honest summary is that SupernovaYieldCert proves properties of a cost function, and records an aspiration for astrophysics, without bridging the two.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.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 domainCost_at_eq · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.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/SupernovaNucleoFromPhiLadder.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/SupernovaNucleoFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
No supernova yield value is derived or predicted. No physical meaning is assigned to the inputs m and e in stellar terms. The φ^5 cooling timescale is a research note, 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/SupernovaNucleoFromPhiLadder.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 definitions of m and e would turn the cost function into a supernova yield statement?
- How does the φ^5 scaling of the neutrino cooling timescale relate to measured supernova light curves?
- Which of the 2383 sibling modules have made the leap from template to subject-specific theorem?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0theorem 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]The module proves three general facts about the cost function J(x) = (x + 1/x)/2 − 1, and nothing specific to supernovae. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.leanTHEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The cost vanishes when its two inputs are equal: for any nonzero real r, J(r/r) = 0. domainCost_at_eq · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.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 cost is never negative for positive inputs: if m and e are both positive, then J(m/e) ≥ 0. domainCost_nonneg · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The golden ratio φ satisfies φ − 3/2 > 0, a positive threshold. canonicalThreshold_pos · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.leanMODEL domainCost · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The module defines domainCost(m, e) as J(m/e) without specifying what m or e mean in stellar terms. domainCost · IndisputableMonolith/Astrophysics/SupernovaNucleoFromPhiLadder.lean