Encyclopedia Astrophysics Astrophysics Grb Duration Rs
ARTICLE 3 claims 3 theorems
Astrophysics Grb Duration Rs
A machine-checked library proves three general facts about a cost function, but the numbers in its research note are not among them.
What a gamma-ray burst module proves
Gamma-ray bursts are the brightest explosions in the universe, brief flashes of high-energy light that outshine entire galaxies for a moment. Astronomers split them into two families by duration: short bursts, which last from about 0.1 to 2 seconds, and long bursts, which can stretch for minutes. The short ones are thought to come from merging neutron stars; the long ones from collapsing massive stars. The boundary between the two classes is a working convention, not a sharp physical line, and it has shifted as detectors have improved.
In Recognition Science, the framework models recognition events as costs, and its central object is the cost function J(x) = (x + 1/x)/2 - 1, which a proved theorem forces to be the only function satisfying five plain conditions. The module named astrophysics grb duration rs applies this cost function to a ratio of two quantities, m and e, by defining a cost as J(m/e). It proves three general facts about that cost: it is zero when m equals e, it is never negative for positive inputs, and a threshold value involving the golden ratio is positive. These are all true statements, and the machine-checked library of formal theorems verifies each one.
The research note attached to the module goes further. It claims that short gamma-ray bursts fall in a band from phi^(-3) seconds, about 0.236 seconds, to phi^(-1) seconds, about 0.618 seconds, where phi is the golden ratio. It calls this band consistent with observations. That note is not a theorem. The formal proofs do not mention gamma-ray bursts, seconds, or any astronomical quantity. The module defines m and e as real numbers without saying what they mean in the astrophysical context, so the note records where the idea was meant to go, not a result the library establishes.
What the module does establish is a template. The same three facts, stated once in a shared parent module, apply to any subject where a cost is defined as J(m/e). The gamma-ray burst module is one of more than two thousand siblings that instantiate this template. To turn it into a theorem about bursts, someone would need to define m and e in the burst's own terms, for example as a measured duration and a predicted duration. Until that definition exists, the connection between the golden-ratio band and observed bursts remains a research idea, not a proved claim.
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GRB_Duration_RS.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 · IndisputableMonolith/Astrophysics/GRB_Duration_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM cert_inhabited · IndisputableMonolith/Astrophysics/GRB_Duration_RS.lean
theorem cert_inhabited : Nonempty GRBDurationCert := ⟨cert⟩
What this page does not claim
The golden-ratio band for short gamma-ray burst durations is not a proved result; it is a research note. The module does not define what m and e mean for gamma-ray bursts. The three proved facts are not specific to gamma-ray bursts; they hold for any positive real numbers 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/GRB_Duration_RS.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 quantities would m and e need to represent for the golden-ratio band to become a theorem about short gamma-ray bursts?
- How do observed short-burst durations compare with the phi^(-3) to phi^(-1) band across different detector generations?
- Does the cost function J(m/e) have a natural interpretation when m is a measured duration and e is a predicted one?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GRB_Duration_RS.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]It proves three general facts about that cost: it is zero when m equals e, it is never negative for positive inputs, and a threshold value involving the golden ratio is positive. domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GRB_Duration_RS.leanTHEOREM domainCost · IndisputableMonolith/Astrophysics/GRB_Duration_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The formal proofs do not mention gamma-ray bursts, seconds, or any astronomical quantity. domainCost · IndisputableMonolith/Astrophysics/GRB_Duration_RS.leanTHEOREM cert_inhabited · IndisputableMonolith/Astrophysics/GRB_Duration_RS.lean
theorem cert_inhabited : Nonempty GRBDurationCert := ⟨cert⟩The same three facts, stated once in a shared parent module, apply to any subject where a cost is defined as J(m/e). cert_inhabited · IndisputableMonolith/Astrophysics/GRB_Duration_RS.lean