Encyclopedia Astrophysics Astrophysics Circumstellar3 From Jcost Cshz3 Cert
ARTICLE 4 claims 4 theorems
Astrophysics Circumstellar3 From Jcost Cshz3 Cert
A machine-checked certificate in the Recognition Science library proves three small facts about a cost function, but says nothing about planets or habitable zones.
The certification
In the Recognition Science framework, a ledger is a discrete record of events, and the cost of recognizing an event is forced by five plain conditions to equal J(x) = (x + 1/x)/2 - 1. The declaration CSHz3Cert, in the framework's machine-checked library of formal theorems, packages three general facts about this cost function when it is applied to a ratio of two positive numbers. The first fact is that the cost is zero when the ratio equals one. The second is that the cost is never negative for positive inputs. The third is that the golden ratio phi, roughly 1.618, exceeds 1.5 by a positive amount, so the quantity phi - 3/2 is positive.
These three facts are true for any positive numbers, not for any particular subject. The certificate does not define what the numbers m and e mean. In the source file, the cost is defined as J(m / e) without any reference to stellar physics. A research note in the same file records an intended application: that the inner edge of a circumstellar habitable zone might be near phi^(-1) astronomical units and the outer edge near phi AU. The note compares this to empirical values of roughly 0.75 to 1.7 AU and calls them consistent. That note is a research idea, not a theorem. The formal certificate proves nothing about Venus, Earth, or any star.
What the certificate does establish is a reusable template. The same three facts, stated once and universally quantified in a shared module, appear verbatim in 2383 sibling modules. The certificate is inhabited, meaning a proof exists that the structure is nonempty. To turn this into a theorem about habitable zones, one would need a definition of m and e in the subject's own terms, for example a physical model that maps stellar luminosity or orbital distance to these variables. Without that definition, the certificate is a statement about the cost function alone.
The plain takeaway is that the library proves a small, clean fact about its cost function, and the astrophysical story remains a research aspiration. The certificate is honest about its own limits: it proves nothing specific to this subject. A reader should not take the 0.72 AU or 1.77 AU numbers as derived results. They are part of an informal note, not part of the machine-checked proof.
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/Circumstellar3_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/Circumstellar3_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/Circumstellar3_FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
THEOREM cert_inhabited · IndisputableMonolith/Astrophysics/Circumstellar3_FromJCost.lean
theorem cert_inhabited : Nonempty CSHz3Cert := ⟨cert⟩
What this page does not claim
The certificate does not claim that any star has a habitable zone. The certificate does not derive the 0.72 AU or 1.77 AU values from the cost function. The certificate does not prove that the golden ratio is the correct scaling for planetary habitability.
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/Circumstellar3_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:
- What physical definitions of m and e would turn this certificate into a theorem about habitable zones?
- How does the empirical habitable zone range of 0.75 to 1.7 AU compare to the phi-based range in a formal model?
- What does the shared DomainCostTemplate module prove that is not repeated in this certificate?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/Circumstellar3_FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The cost is zero when the ratio equals one. domainCost_at_eq · IndisputableMonolith/Astrophysics/Circumstellar3_FromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Astrophysics/Circumstellar3_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)The cost is never negative for positive inputs. domainCost_nonneg · IndisputableMonolith/Astrophysics/Circumstellar3_FromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Circumstellar3_FromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The golden ratio phi exceeds 1.5 by a positive amount. canonicalThreshold_pos · IndisputableMonolith/Astrophysics/Circumstellar3_FromJCost.leanTHEOREM cert_inhabited · IndisputableMonolith/Astrophysics/Circumstellar3_FromJCost.lean
theorem cert_inhabited : Nonempty CSHz3Cert := ⟨cert⟩The certificate is inhabited, meaning a proof exists that the structure is nonempty. cert_inhabited · IndisputableMonolith/Astrophysics/Circumstellar3_FromJCost.lean