Encyclopedia Astrophysics Astrophysics Globular Cluster Metallicity From Jcost Gcmetallicity Cert
ARTICLE 3 claims 3 theorems
Astrophysics Globular Cluster Metallicity From Jcost Gcmetallicity Cert
A machine-checked certificate in the Recognition Science library proves three general facts about a cost function, but it does not prove anything about globular clusters.
What the certificate proves
Globular clusters are dense, roughly spherical groups of old stars that orbit a galaxy's center. Astronomers have long observed that these clusters come in two broad chemical families: one poor in elements heavier than helium, with an iron abundance ratio near [Fe/H] = -1.5, and one richer in those elements, near [Fe/H] = -0.5. The gap between the two families is about a factor of ten in iron content. In the Recognition Science framework, that factor of ten is close to the fifth power of the golden ratio, about 11.09, and the framework's research notes propose that this five-rung gap separates the two populations.
What the machine-checked library establishes is narrower and purely formal. The declaration GCMetallicityCert, a certificate in the framework's library of formal theorems, bundles three proved facts about a cost function. The cost function here is J-cost, a measure of recognition cost that the framework proves must take the form J(x) = (x + 1/x)/2 - 1. The certificate proves that this cost vanishes when the two inputs are equal, that it is never negative for positive inputs, and that the golden-ratio-based threshold phi - 3/2 is positive. These are general facts about the cost function, not facts about stars.
The library defines the domain cost as J-cost applied to the ratio m/e, where m and e are real numbers. The certificate does not define what m and e mean for a globular cluster. Nothing in the code says m is iron abundance or e is hydrogen abundance. The docstring itself states plainly that the module proves nothing specific to the subject, because the cost is defined without reference to one. The astronomical bimodality is a research note, a record of where the idea was meant to go, not a result.
What the certificate does give a reader is a template. It shows that if one could define m and e in a subject's own terms, then the three proved facts would apply: equal inputs cost nothing, positive inputs never cost less than zero, and the golden-ratio threshold is a usable positive cutoff. That is the honest extent of the formal result. The leap from a factor of ten to the golden ratio remains an empirical observation, not a theorem.
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/GlobularClusterMetallicityFromJCost.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/GlobularClusterMetallicityFromJCost.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/GlobularClusterMetallicityFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
What this page does not claim
The certificate does not prove that globular cluster metallicity is bimodal. The certificate does not define m or e in astronomical terms. The certificate does not prove the golden-ratio relation to the observed metallicity gap.
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/GlobularClusterMetallicityFromJCost.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 globular cluster terms would turn the general cost facts into a theorem about metallicity?
- How well does the factor-of-ten gap between the two cluster populations match the golden-ratio fifth power across different galaxies?
- What other astrophysical bimodalities might fit the same five-rung template?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Astrophysics/GlobularClusterMetallicityFromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The certificate proves that the cost vanishes when the two inputs are equal. domainCost_at_eq · IndisputableMonolith/Astrophysics/GlobularClusterMetallicityFromJCost.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Astrophysics/GlobularClusterMetallicityFromJCost.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 certificate proves that the cost is never negative for positive inputs. domainCost_nonneg · IndisputableMonolith/Astrophysics/GlobularClusterMetallicityFromJCost.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GlobularClusterMetallicityFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The certificate proves that the golden-ratio-based threshold phi - 3/2 is positive. canonicalThreshold_pos · IndisputableMonolith/Astrophysics/GlobularClusterMetallicityFromJCost.lean