Encyclopedia Astrophysics Astrophysics Star Cluster Mass From Phi Ladder Star Cluster Cert

ARTICLE 4 claims 3 theorems 1 model

Astrophysics Star Cluster Mass From Phi Ladder Star Cluster Cert

A machine-checked certificate in the Recognition Science library proves three general facts about a cost function, but it says nothing specific about star clusters.

What the certificate proves

The declaration StarClusterCert is a formal certificate in the Recognition Science framework's machine-checked library of formal theorems. A certificate in this setting is a packaged bundle of proved statements, a way of saying "these facts are established together" so other work can rely on them as a unit. The certificate itself is a structure, a container that holds three proofs about a function called domainCost, which is defined as Jcost applied to the ratio of two real numbers, written J(m/e).

The three facts the certificate proves are general properties of that cost function, not properties of any specific physical system. First, when the two numbers in the ratio are equal, the cost is zero: J(m/m) = 0 for any nonzero m. Second, for positive inputs, the cost is never negative: J(m/e) ≥ 0 whenever m and e are both greater than zero. Third, a particular constant called the canonical threshold, defined as phi minus 3/2, is positive; phi is the golden ratio, about 1.618, so this threshold is about 0.118. Each of these is a proved theorem in the library, and the certificate simply bundles them together.

What the certificate does not do is say anything about star clusters. The library's documentation notes that the module was intended to connect this cost function to the mass hierarchy between open clusters (roughly 10^2 to 10^4 solar masses) and globular clusters (roughly 10^5 to 10^6 solar masses), a ratio of about 100 to 1000, which spans several rungs of the framework's phi-ladder. But that connection was never formalized. The definition of domainCost makes no reference to cluster masses, to solar masses, or to any astronomical quantity. The research note in the source file says plainly that the paragraph describing the intended application is "a research note recording where the idea was meant to go, not a result."

In plain terms, the certificate establishes a small piece of mathematical hygiene: a cost function behaves sensibly at equality and stays nonnegative for positive inputs, and a certain threshold is positive. Those facts are true and machine-checked. What would turn this into a theorem about star clusters is a definition of m and e in terms of cluster masses, and that definition does not exist in the library. The certificate is a foundation stone, not a building.

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

What this page does not claim

The certificate does not prove that open and globular cluster masses follow a phi-ladder scaling. The certificate does not establish any physical property of star clusters. The certificate does not derive the golden ratio from astrophysical data.

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