Encyclopedia Astrophysics Astrophysics Rs Astro Module 011 Rsastro011 Cert
ARTICLE 4 claims 4 theorems
Astrophysics Rs Astro Module 011 Rsastro011 Cert
This machine-checked certificate proves three general facts about a cost function, but its astrophysical label is a research note, not a result.
What the certificate proves
In the Recognition Science framework, a ledger is a discrete record of events, and the cost of recognition is the forced price of recording a comparison. The declaration RSAstro011Cert is a machine-checked certificate, a packaged set of proved statements. It establishes exactly three general facts about the cost function J(x) = (x + 1/x)/2 − 1 when it is applied to a ratio of two positive numbers m and e. First, when m equals e, the cost is zero. Second, for any positive m and e, the cost is never negative. Third, the number φ − 3/2, where φ is the golden ratio, is positive.
These three facts are proved in the machine-checked library of formal theorems. The certificate bundles them into a single structure, and the library confirms that this structure is inhabited, meaning the three proofs exist and fit together. The facts are general properties of the cost function, not properties of any particular physical system. They hold for any positive real numbers m and e, regardless of what those numbers represent.
The module is filed under an astrophysics heading and carries a research note saying that a magnetar field strength of φ^72 Gauss, about 10^14 Gauss, was the intended subject. That note is a statement of where the idea was meant to go, not a result. The certificate itself proves nothing specific to magnetars, because the definition of domainCost uses the ratio m/e without ever defining m or e in astrophysical terms. The three proved facts would be true whether m and e were masses, charges, prices, or any other positive quantities.
What would turn this certificate into a theorem about its subject is a definition of m and e in that subject's own terms. Without such a definition, the astrophysical label is a placeholder, and the certificate is a general mathematical result wearing a subject-specific name. The library states the same content once, universally quantified, in a shared template that 2383 sibling modules also use verbatim.
For a reader, the practical takeaway is precise: the certificate guarantees that the cost function behaves sensibly at equality, never reports a negative cost for positive inputs, and places the golden ratio above 1.5. It does not say anything about magnetars, fields, or any astrophysical quantity. The certificate is a proof of arithmetic facts, not a measurement of the sky.
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.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/RS_Astro_Module_011.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/RS_Astro_Module_011.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM domainCost · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The certificate does not claim that magnetar fields have strength φ^72 Gauss. The certificate does not claim that m and e represent any astrophysical quantities. The certificate does not claim that the golden ratio threshold φ − 3/2 has any physical meaning for magnetars.
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/RS_Astro_Module_011.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 definition of m and e in magnetar terms would make this certificate a theorem about magnetar fields?
- Which of the 2383 sibling modules have made the leap from template to subject-specific theorem?
- What physical interpretation does the framework give to the cost function at equality, where it vanishes?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0First, when m equals e, the cost is zero. domainCost_at_eq · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.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)Second, for any positive m and e, the cost is never negative. domainCost_nonneg · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]Third, the number φ − 3/2, where φ is the golden ratio, is positive. canonicalThreshold_pos · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.leanTHEOREM domainCost · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The certificate itself proves nothing specific to magnetars, because the definition of domainCost uses the ratio m/e without ever defining m or e in astrophysical terms. domainCost · IndisputableMonolith/Astrophysics/RS_Astro_Module_011.lean