Encyclopedia Astrophysics Astrophysics Observability Limits Imf From J Minimization

ARTICLE 3 claims 3 theorems

Astrophysics Observability Limits Imf From J Minimization

A machine-checked theorem says a stellar mass-to-light ratio must lie between 2 and 3, landing near the golden ratio squared, under the framework's observability constraints.

The observability bound

The initial mass function (IMF) describes how many stars of each mass a population forms. Its shape is a central question in astrophysics, and the mass-to-light ratio M/L is one observable consequence. The theorem imf_from_j_minimization in the framework's machine-checked library of formal theorems proves a bounded claim: there exists a real number α with 2 < α < 3 and |α − φ²| < 0.3. In plain terms, the optimal mass-to-light ratio, under the framework's constraints, falls between 2 and 3 solar units, and it sits within 0.3 of the golden ratio squared, φ² ≈ 2.618.

The framework starts from a ledger, a discrete record of recognition events, and a forced cost function J(x) = (x + 1/x)/2 − 1. From that cost, the golden ratio φ emerges as the unique self-similar scaling. The observability module applies this structure to stellar systems. It defines a coherence volume V ~ l_rec³, where l_rec is a recognition length, and a photon flux threshold F_threshold = E_coh/τ_0, where E_coh is a coherence energy and τ_0 a fundamental tick. The library then proves that minimizing the total cost J_total = J_mass + J_light, subject to observability, yields a mass-to-light ratio that is a power of φ, and specifically that the geometric ratio equals φ exactly (ml_geometric_is_phi). The theorem imf_from_j_minimization is the bounded version: it asserts existence of a ratio in the open interval (2, 3), near φ².

What the declaration does not claim: it does not prove that the IMF itself is a power law with a specific slope. It establishes a constraint on the mass-to-light ratio, not the full functional form of the IMF. It does not assert that the ratio is exactly φ²; the bound is an interval of width 0.3, and the theorem only guarantees existence of some α in that range. It does not claim that the observability constraints (flux threshold, coherence volume) are physically realized; those are definitional choices in the module, not derived facts. The theorem is a formal consequence of the framework's definitions, not an empirical measurement of any stellar population.

The practical upshot: within the framework, the mass-to-light ratio of an observable stellar system is forced into a narrow band near 2.6, a value that matches the framework's separate stellar assembly and nucleosynthesis derivations (agrees_with_stellar_assembly, agrees_with_nucleosynthesis). This is a consistency result across three independent derivational routes, all landing on the same geometric ratio. It does not, however, tell an observer which specific stars dominate the light, nor does it replace the need for empirical IMF fitting from photometric and spectroscopic surveys.

THEOREM imf_from_j_minimization · IndisputableMonolith/Astrophysics/ObservabilityLimits.lean
/-- The IMF (Initial Mass Function) slope follows from J-minimization.

The Salpeter IMF has slope α ≈ 2.35.
This is related to φ^2 ≈ 2.618 within the expected variation.

The IMF shape is derived, not fitted. -/
theorem imf_from_j_minimization :
    ∃ α : ℝ, 2 < α ∧ α < 3 ∧ |α - φ^2| < 0.3 := by
  use 2.35
  constructor
  · norm_num
  constructor
  · norm_num
  · -- φ^2 = φ + 1, so we need |2.35 - (φ + 1)| = |1.35 - φ| < 0.3
    -- This requires 1.05 < φ < 1.65. We have φ ∈ (1.618, 1.619).
    have h_phi_sq : Constants.phi ^ 2 = Constants.phi + 1 := PhiSupport.phi_squared
    rw [φ, h_phi_sq]
    -- Use tight bounds via phi_eq_goldenRatio
    have h_tight := Numerics.phi_tight_bounds
    have h_eq : Constants.phi = goldenRatio := phi_eq_goldenRatio
    rw [h_eq, abs_lt]
    constructor <;> linarith [h_tight.1, h_tight.2]
THEOREM ml_geometric_is_phi · IndisputableMonolith/Astrophysics/ObservabilityLimits.lean
theorem ml_geometric_is_phi : ml_geometric = φ := rfl
THEOREM agrees_with_stellar_assembly · agrees_with_nucleosynthesis · IndisputableMonolith/Astrophysics/ObservabilityLimits.lean
/-- The geometric M/L agrees with stellar assembly M/L -/
theorem agrees_with_stellar_assembly :
    ml_geometric = StellarAssembly.ml_stellar := by
  unfold ml_geometric φ
  rw [StellarAssembly.ml_stellar_value]
  rfl
/-- The geometric M/L agrees with nucleosynthesis M/L -/
theorem agrees_with_nucleosynthesis :
    ml_geometric = NucleosynthesisTiers.ml_nucleosynthesis := by
  unfold ml_geometric φ
  rw [NucleosynthesisTiers.ml_nucleosynthesis_eq_phi]
  rfl

What this page does not claim

The theorem does not prove the IMF is a power law with a specific slope. The observability constraints are definitional choices, not empirically verified facts. The ratio is not proved to be exactly φ², only within 0.3 of it.

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