Encyclopedia Astrophysics Astrophysics Mass To Light Phi Bounds

ARTICLE 3 claims 3 theorems

Astrophysics Mass To Light Phi Bounds

A single theorem in a machine-checked library pins the golden ratio between 1 and 2, but says nothing about stars.

A narrow bound, honestly stated

The golden ratio φ, defined as the positive solution to r² = r + 1, is approximately 1.618. The declaration phi_bounds is a formal theorem in the framework's machine-checked library of formal theorems. It proves a simple inequality: 1 < φ < 2. This is a statement about the real number φ itself, not about any physical system.

In the Recognition Science framework, φ emerges from a proved chain of reasoning about the cost of recognition events. The framework models this cost with a function J(x) = (x + 1/x)/2 - 1, forced by five plain conditions. From that function, the framework derives φ as the unique self-similar scaling. The phi_bounds theorem is a small, rigorous step in that chain: it confirms that this derived constant lies strictly between 1 and 2.

The theorem is proved in the module IndisputableMonolith/Astrophysics/MassToLight.lean. Its proof is direct: it unfolds the definition of φ as (1 + √5)/2, uses the facts that √5 > 0 and √5 < 3, and concludes with linear arithmetic. The declaration establishes a property of a number, nothing more.

What phi_bounds does not claim is any observational content. It does not say that any star, galaxy, or cluster has a mass-to-light ratio equal to φ. It does not assert that the golden ratio appears in astrophysical data. The theorem is silent on all empirical matters. It is a piece of pure mathematics about a number that the framework derives from first principles.

The framework's broader astrophysical claims, such as a characteristic stellar mass-to-light ratio of φ solar units, depend on additional hypotheses and definitions that are not part of this theorem. Those claims are tagged as hypotheses in the framework's own documentation, with explicit falsifiers. The phi_bounds theorem itself carries no such weight. It is a narrow, clean, and fully proved statement about the location of a constant on the real line.

THEOREM phi_bounds · IndisputableMonolith/Astrophysics/MassToLight.lean
/-- **THEOREM (RIGOROUS)**: φ is strictly between 1 and 2. -/
theorem phi_bounds : 1 < φ ∧ φ < 2 := by
  constructor
  · -- 1 < φ: Since √5 > 1, we have (1 + √5)/2 > 1
    unfold φ Constants.phi
    have h_sqrt5_gt_1 : 1 < Real.sqrt 5 := by
      rw [show (1 : ℝ) = Real.sqrt 1 by norm_num]
      exact Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
    linarith
  · -- φ < 2: Since √5 < 3, we have (1 + √5)/2 < 2
    unfold φ Constants.phi
    have h_sqrt5_lt_3 : Real.sqrt 5 < 3 := by
      rw [show (3 : ℝ) = Real.sqrt 9 by norm_num]
      exact Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
    linarith
THEOREM phi_bounds · IndisputableMonolith/Astrophysics/MassToLight.lean
/-- **THEOREM (RIGOROUS)**: φ is strictly between 1 and 2. -/
theorem phi_bounds : 1 < φ ∧ φ < 2 := by
  constructor
  · -- 1 < φ: Since √5 > 1, we have (1 + √5)/2 > 1
    unfold φ Constants.phi
    have h_sqrt5_gt_1 : 1 < Real.sqrt 5 := by
      rw [show (1 : ℝ) = Real.sqrt 1 by norm_num]
      exact Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
    linarith
  · -- φ < 2: Since √5 < 3, we have (1 + √5)/2 < 2
    unfold φ Constants.phi
    have h_sqrt5_lt_3 : Real.sqrt 5 < 3 := by
      rw [show (3 : ℝ) = Real.sqrt 9 by norm_num]
      exact Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
    linarith
THEOREM phi_bounds · IndisputableMonolith/Astrophysics/MassToLight.lean
/-- **THEOREM (RIGOROUS)**: φ is strictly between 1 and 2. -/
theorem phi_bounds : 1 < φ ∧ φ < 2 := by
  constructor
  · -- 1 < φ: Since √5 > 1, we have (1 + √5)/2 > 1
    unfold φ Constants.phi
    have h_sqrt5_gt_1 : 1 < Real.sqrt 5 := by
      rw [show (1 : ℝ) = Real.sqrt 1 by norm_num]
      exact Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
    linarith
  · -- φ < 2: Since √5 < 3, we have (1 + √5)/2 < 2
    unfold φ Constants.phi
    have h_sqrt5_lt_3 : Real.sqrt 5 < 3 := by
      rw [show (3 : ℝ) = Real.sqrt 9 by norm_num]
      exact Real.sqrt_lt_sqrt (by norm_num) (by norm_num)
    linarith

What this page does not claim

The theorem does not state that any observed star has a mass-to-light ratio equal to φ. The theorem does not assert that the golden ratio appears in any astrophysical data set. The theorem does not establish the framework's broader claim of a characteristic stellar M/L of φ solar units.

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