Encyclopedia Astrophysics Astrophysics Nucleosynthesis Tiers Ml From Phi Tier Structure

ARTICLE 4 claims 4 theorems

Astrophysics Nucleosynthesis Tiers Ml From Phi Tier Structure

A machine-checked theorem says a galaxy's mass-to-light ratio must be a power of the golden ratio, but it starts from a choice, not a measurement.

The tier ladder

The mass-to-light ratio M/L is a standard astrophysical number: the mass of a galaxy or stellar population divided by its luminosity, usually quoted in solar units. In the Recognition Science framework, this ratio is not a free parameter. The declaration ml_from_phi_tier_structure proves that M/L must be a power of the golden ratio φ, the number satisfying φ² = φ + 1, which is about 1.618. The theorem states that there exists an integer Δn such that M/L = φ^Δn, with the value lying between 1 and 5. A companion theorem pins the value down exactly: M/L = φ, about 1.618 solar units.

The proof works by assigning physical quantities to discrete tiers, meaning integer rungs on a ladder of powers of φ. Nuclear density sits on one tier, photon luminosity on another. The framework's eight-tick cycle, a discrete record of recognition events, forces the tier difference to be an integer. The local stellar-scale window sets the nuclear tier at 12 and the luminosity tier at 11, so the difference is 1, and the ratio is φ^1. The theorem tiers_are_quantized shows that any two tiers differ by an integer, which is what makes the ladder discrete.

This result is a theorem in the framework's machine-checked library of formal theorems, meaning the steps are verified by a computer. The framework also proves that this nucleosynthesis-derived value agrees with a separate stellar-assembly calculation, so two independent routes land on the same ratio. The classical entry point is the golden ratio itself, known since antiquity as the extreme and mean ratio, and it appears here as the unique self-similar scaling that the framework's cost function forces.

What the declaration does not claim is just as important. It does not derive the tier numbers 12 and 11 from first principles; those are chosen to match a stellar-scale window. It does not claim that real galaxies all have M/L exactly φ; that is a prediction to be checked against observation, not a theorem about the sky. The theorem establishes a structural constraint within the framework, not an empirical law. The framework's claim is that if you accept its starting points, the ratio must be a power of φ, and the specific value follows from the local tier assignment.

THEOREM ml_from_phi_tier_structure · IndisputableMonolith/Astrophysics/NucleosynthesisTiers.lean
/-- **Main Theorem**: The stellar M/L ratio is derived from φ-tier structure
of nucleosynthesis, quantized by the eight-tick cycle.

This provides an independent derivation matching Strategy 1. -/
theorem ml_from_phi_tier_structure :
    ∃ Δn : ℤ, Δn ∈ population_tiers ∧
    ml_nucleosynthesis = φ ^ Δn ∧
    1 ≤ ml_nucleosynthesis ∧ ml_nucleosynthesis < 5 := by
  use 1
  refine ⟨?_, ?_, ?_, ?_⟩
  · simp only [population_tiers, Set.mem_insert_iff, Set.mem_singleton_iff]
    simp
  · rw [ml_nucleosynthesis_eq_phi]; simp [zpow_one]
  · rw [ml_nucleosynthesis_eq_phi]; exact le_of_lt Constants.one_lt_phi
  · rw [ml_nucleosynthesis_eq_phi]
    calc φ < 2 := Constants.phi_lt_two
      _ < 5 := by norm_num
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 tiers_are_quantized · IndisputableMonolith/Astrophysics/NucleosynthesisTiers.lean
theorem tiers_are_quantized : eight_tick_quantizes_tiers := by
  intro ρ L
  use ρ - L
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

What this page does not claim

The tier numbers 12 and 11 are chosen, not derived from the framework's axioms. The theorem does not assert that all real galaxies have M/L exactly equal to φ. The result is a structural constraint within the framework, not an empirical law of astrophysics.

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