Encyclopedia Astrophysics Astrophysics Star Cluster Mass From Phi Ladder

ARTICLE 2 claims 1 theorem 1 model

Astrophysics Star Cluster Mass From Phi Ladder

Open clusters hold hundreds to thousands of stars; globular clusters hold hundreds of thousands. The ratio between them is a familiar number with a surprising source.

Star cluster masses

In astronomy, open clusters are loose groups of young stars, typically holding 10^2 to 10^4 solar masses, while globular clusters are dense, ancient balls of stars with 10^5 to 10^6 solar masses. The mass ratio between the two types spans roughly 100 to 1000, a factor that appears in many physical contexts. One such context is the golden ratio phi, about 1.618, whose powers climb quickly: phi^10 is about 122, and phi^15 is about 1364, which brackets the observed range.

The framework called Recognition Science (RS) starts from a single idea: reality keeps a discrete record of recognition events, and the cost of each recognition is forced by a few plain conditions. From those conditions, the framework derives the golden ratio as the unique self-similar scaling, and places particle masses on a phi-power ladder. The module in question, StarClusterMassFromPhiLadder, was intended to apply that ladder to star clusters, so that the mass hierarchy between cluster types spans about 5 rungs of the phi ladder.

What the module actually establishes is more modest. It defines a cost function, domainCost, as Jcost(m/e), where Jcost is the framework's central cost function. The Lean code proves three general facts about this cost: it vanishes when m equals e, it is nonnegative for positive inputs, and the threshold phi minus 3/2 is positive. These are true for any positive numbers m and e, with no reference to star clusters. The module does not define m and e in terms of cluster masses, so the cluster-specific claim remains a research note, not a proven result.

The distinction matters. The library proves the cost properties rigorously; the leap from those properties to a statement about open and globular clusters is not yet made. That leap would require a definition of m and e in the subject's own terms, which the module lacks. The general facts stand, and the cluster application remains an open target.

THEOREM domainCost_at_eq · domainCost_nonneg · canonicalThreshold_pos · 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 (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 : 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 module does not prove that open and globular cluster masses follow a phi-ladder. The module does not establish a specific numerical mass for any cluster type. The cost function properties do not, by themselves, identify cluster masses.

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