Encyclopedia Astrophysics Astrophysics Ultra High Energy Cosmic Ray Uhecrcert

ARTICLE 4 claims 4 theorems

Astrophysics Ultra High Energy Cosmic Ray Uhecrcert

A machine-checked certificate in the Recognition Science framework proves three basic facts about its cost function, but says nothing specific about cosmic rays themselves.

What the certificate proves

Ultra-high-energy cosmic rays are the most energetic particles known, individual protons or nuclei arriving from space with energies above 5×10^19 electronvolts. At such energies, the Greisen-Zatsepin-Kuzmin (GZK) cutoff predicts they cannot travel far: they scatter off the cosmic microwave background and lose energy, so any detected particle above that threshold must have originated relatively nearby. The Recognition Science framework, a body of formal mathematics built from the idea that reality keeps a discrete record of recognition events, has a declaration named UHECRCert in its machine-checked library of formal theorems. That declaration is a certificate: a packaged set of three proved facts about a cost function, which measures the penalty of recognition when two quantities differ.

The cost function in question is defined as J(m/e), where J is the framework's central cost function, J(x) = (x + 1/x)/2 - 1, and m and e are real numbers representing masses or energies. The certificate proves three things. First, the cost is zero when the two quantities are equal: J(r/r) = 0 for any nonzero r. Second, the cost is never negative when both inputs are positive: J(m/e) ≥ 0 for positive m and e. Third, a specific constant, the golden ratio minus 3/2, is positive: φ - 3/2 > 0. These are the complete contents of the certificate, and each is a theorem in the library, checked by a computer against the framework's axioms.

The essential point is that the certificate proves nothing about cosmic rays themselves. The cost function is defined as J(m/e) without any reference to the GZK cutoff, to proton masses, or to any astrophysical quantity. The declaration is a template, shared verbatim with 2383 sibling modules, that states these three general facts about the cost function in a way that could apply to any domain. What would make it a theorem about ultra-high-energy cosmic rays is a definition of m and e in that subject's own terms, for instance a definition that sets m to a proton mass and e to a threshold energy. The research note attached to the module records the intended direction, that the GZK cutoff energy might be expressed as φ^n times a proton mass, but that note is explicitly not a result.

In plain terms, the certificate establishes a small, clean mathematical fact: the framework's cost function behaves sensibly, vanishing at equality, staying nonnegative, and having a positive threshold constant. It does not establish any claim about the actual spectrum of cosmic rays, about the GZK cutoff, or about the value of any astrophysical constant. The distinction is load-bearing for anyone reading the framework's library: a certificate with an astrophysical name may still be a general-purpose result, and the name alone does not make it a physical law. The honest reading is that the framework has proved three facts about its own cost function and has attached them to a cosmic-ray module as a placeholder, not as a discovery.

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

What this page does not claim

The certificate does not prove the GZK cutoff or any property of actual ultra-high-energy cosmic rays. The certificate does not assign values to m or e in astrophysical units. The certificate does not establish that the golden ratio appears in the cosmic-ray spectrum.

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