Encyclopedia Astrophysics Astrophysics Nucleosynthesis Tiers Tier Difference Value

ARTICLE 5 claims 4 theorems 1 model

Astrophysics Nucleosynthesis Tiers Tier Difference Value

A single machine-checked theorem pins the mass-to-light ratio of stars to the golden ratio, but only after two specific numbers are chosen by hand.

The tier difference

The mass-to-light ratio M/L of a galaxy or star cluster is a simple bookkeeping number: the total mass of stars divided by their total luminosity, usually quoted in solar units where the Sun's ratio is 1. Astronomers measure it to infer how much dark matter a system holds, since a ratio well above 1 means more mass than the starlight can explain. In the Recognition Science framework, this ratio is not a free parameter. The framework's library of machine-checked formal theorems defines a ledger, a discrete record of physical quantities arranged on tiers, and derives M/L as the difference between two tier numbers.

The specific declaration tier_difference_value is a theorem stating that this tier difference equals 1. It does not derive this from physics. It unfolds two definitions that were chosen earlier: the nuclear density tier is set to 12 and the photon luminosity tier is set to 11, both described as falling within a stellar scale window. The theorem then computes 12 minus 11, which is 1. That is the entire proof. The number 1 is a consequence of the two chosen tier values, not a discovery about nature.

Once the difference is 1, the framework's ladder of golden-ratio powers takes over. The mass-to-light ratio is defined as phi raised to the tier difference, where phi is the golden ratio, approximately 1.618. With the difference equal to 1, the ratio becomes phi to the first power, which is phi itself. A separate theorem then states that this agrees with a second, independent stellar assembly calculation, and another theorem bounds the result between 1 and 5, matching the range of typical stellar observations.

What the theorem does not claim is that the tier values 12 and 11 are themselves forced. The proof establishes only the arithmetic consequence of those two choices. The framework's broader claim, that an eight-tick cycle quantizes tiers so that differences are integers, is a separate theorem, and it does not select which integers. The choice of 12 and 11 is a modeling decision, not a derived prediction.

THEOREM tier_difference_value · IndisputableMonolith/Astrophysics/NucleosynthesisTiers.lean
theorem tier_difference_value : tier_difference = 1 := by
  unfold tier_difference nuclear_tier_local luminosity_tier_local
  norm_num
MODEL nuclear_tier_local · luminosity_tier_local · IndisputableMonolith/Astrophysics/NucleosynthesisTiers.lean
/-- Canonical nuclear tier from eight-tick analysis.

The ratio ρ_nuclear/ρ_Planck ≈ 10^(-79) corresponds to:
  log(10^(-79)) / log(φ) ≈ -377

But in recognition units, the relevant tier is the local one. -/
def nuclear_tier_local : PhiTier := 12  -- Within stellar scale window
/-- Canonical luminosity tier for stellar emission.

Solar luminosity L_☉ ≈ 3.8 × 10^26 W corresponds to tier n_photon. -/
def luminosity_tier_local : PhiTier := 11  -- Within stellar scale window
THEOREM ml_nucleosynthesis_eq_phi · IndisputableMonolith/Astrophysics/NucleosynthesisTiers.lean
theorem ml_nucleosynthesis_eq_phi : ml_nucleosynthesis = φ := by
  unfold ml_nucleosynthesis phi_ladder tier_difference
  simp [nuclear_tier_local, luminosity_tier_local, zpow_one]
THEOREM strategies_agree · IndisputableMonolith/Astrophysics/NucleosynthesisTiers.lean
/-- Nucleosynthesis M/L agrees with stellar assembly M/L -/
theorem strategies_agree :
    ml_nucleosynthesis = StellarAssembly.ml_stellar := by
  rw [ml_nucleosynthesis_eq_phi, StellarAssembly.ml_stellar_value]
  rfl
THEOREM tiers_are_quantized · IndisputableMonolith/Astrophysics/NucleosynthesisTiers.lean
theorem tiers_are_quantized : eight_tick_quantizes_tiers := by
  intro ρ L
  use ρ - L

What this page does not claim

The theorem does not prove that the tier values 12 and 11 are physically forced. The theorem does not claim that the golden ratio value is measured from stars. The theorem does not establish that the eight-tick cycle alone determines the specific tier difference.

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