Encyclopedia Astrophysics Astrophysics Grbjet Angle From Jcost

ARTICLE 4 claims 3 theorems 1 model

Astrophysics Grbjet Angle From Jcost

Gamma-ray bursts fire narrow jets; one formula in the Recognition Science framework yields an angle near the top of the observed range, but the module itself proves only general cost properties, not the astrophysical link.

GRB jet angles and the cost function

Gamma-ray bursts (GRBs) are the brightest explosions in the universe, and their energy emerges in narrow jets rather than in all directions. The opening angle of those jets, theta_j, is a measured quantity: observations place it between roughly 3 and 15 degrees, with many bursts clustering in the 3 to 10 degree range. The angle matters because it converts a burst's apparent brightness into its true energy output; a narrower jet means the same flash is more powerful.

The Recognition Science framework defines a cost function J(x) = (x + 1/x)/2 - 1, which measures the price of a recognition event when reality's ledger records a ratio between two quantities. The framework's library contains a module named GRBJetAngle_FromJCost. Its research note records the intended application: take J evaluated at the golden ratio phi, multiply by pi/2, and the result is 0.118 times 90 degrees, or 10.6 degrees, a value consistent with the observed 3 to 15 degree range. That arithmetic is a research note, not a proved result.

What the module actually proves in machine-checked form is narrower. It defines domainCost(m, e) as J(m/e), the cost when a ledger event compares two positive real numbers m and e. Three general facts are proved: the cost is zero when m equals e, the cost is never negative for positive inputs, and the constant phi minus 3/2 is positive. These are properties of the cost function itself, universally quantified, with no reference to gamma-ray bursts, jets, or angles.

The gap is definitional. To turn the cost function into a statement about GRB jet angles, the module would need to define m and e in astrophysical terms, such as a ratio of energies or timescales specific to a burst. No such definition appears in the module. The structure GRBJetAngleCert packages the three general properties into a certificate, and the theorem cert_inhabited shows that such a certificate exists, but the certificate says nothing about jets.

In plain language: the framework's library proves that its cost function has certain clean mathematical properties, and a research note in the same file suggests how those properties might one day connect to GRB jet angles. The connection itself is not established by the module. The 10.6 degree value is a stated intention, not a derived theorem.

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

What this page does not claim

The module does not prove that any GRB jet angle equals 10.6 degrees. The module does not define m and e in terms of any gamma-ray burst property. The module does not establish that the cost function applies to astrophysics at all.

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