pith. machine review for the scientific record. sign in
theorem proved term proof high

grb_energy_range

show as:
view Lean formalization →

The theorem asserts existence of a real E satisfying 10^51 < E < 10^54 in erg, where E stands for the isotropic energy of a typical gamma-ray burst. Astrophysicists using Recognition Science to bound GRB energetics would cite the result when fixing the canonical scale. The proof is a direct term construction that supplies the typical energy value and the two sides of its range theorem.

claimThere exists a real number $E$ such that $10^{51} < E < 10^{54}$, where $E$ denotes the isotropic energy of a typical gamma-ray burst in erg.

background

The GammaRayBursts module develops GRB phenomenology inside Recognition Science following the outline of RS_Gamma_Ray_Bursts.tex. It imports the J-cost core and spectral emergence primitives. The typical_grb_energy definition fixes the efficiency parameter at 0.1 inside the grb_energy function, which itself unfolds to solar_mass_energy scaled by accretion_efficiency. The companion theorem typical_grb_in_range establishes the numerical bounds by simp and norm_num after these unfoldings. The E definition from SpectralEmergence counts edges of the D-cube but is not invoked in the range statement itself.

proof idea

The proof is a term-mode construction that directly packages the typical_grb_energy definition with the left and right conjuncts of typical_grb_in_range. No further tactics or lemmas are applied.

why it matters in Recognition Science

The result supplies the canonical isotropic energy window for GRBs inside the Recognition Science framework as stated in the accompanying paper. It anchors later module calculations of luminosities and Lorentz factors. No downstream uses are recorded, leaving open its integration with the phi-ladder or J-cost derivations.

scope and limits

formal statement (Lean)

  65theorem grb_energy_range :
  66    ∃ E : ℝ, 1e51 < E ∧ E < 1e54 :=

proof body

Term-mode proof.

  67  ⟨typical_grb_energy, typical_grb_in_range.1, typical_grb_in_range.2⟩
  68
  69end GRB
  70end Physics
  71end IndisputableMonolith

depends on (3)

Lean names referenced from this declaration's body.