Encyclopedia Astrophysics Astrophysics Observability Limits Agrees With Stellar Assembly

ARTICLE 4 claims 3 theorems 1 model

Astrophysics Observability Limits Agrees With Stellar Assembly

A machine-checked theorem states that a purely geometric estimate of a galaxy's mass-to-light ratio equals the value derived from stellar assembly, with no free parameters.

The agreement theorem

The mass-to-light ratio (M/L) of a galaxy, usually quoted in solar units, is the mass of a galaxy divided by the light it emits, compared to the Sun. A high ratio means the galaxy is dim for its mass, often interpreted as dark matter. Astronomers estimate this ratio from stellar population models, which depend on assumptions about star formation history. A different, geometric route to M/L comes from the Recognition Science framework, which models reality as storing a discrete record of recognition events, where recognition is the act of distinguishing one state from another. The framework's library, a machine-checked collection of formal theorems, derives an estimate from observability constraints alone.

The theorem agrees_with_stellar_assembly states that the geometric estimate, ml_geometric, equals the value from the framework's stellar assembly model, ml_stellar. The geometric estimate is defined as the golden ratio φ, approximately 1.618 solar units. The stellar assembly value is also φ. The proof is a direct computation, unfolding definitions and rewriting, with no free parameters fitted to data. The same geometric value also agrees with a nucleosynthesis-based estimate, and a combined theorem, ml_from_geometry_only, packages all three equalities together.

The derivation starts from physical constraints. For a stellar system to be observable, the photon flux must exceed a threshold set by a coherence energy divided by a fundamental tick, the smallest time unit in the framework. The mass that can assemble is limited by a coherence volume, the cube of a recognition length. Minimizing the framework's cost function, J, under these constraints yields the golden ratio as the optimal M/L. The theorem ml_geometric_bounds confirms this value lies between 1 and 2, and information_balance_gives_phi shows it satisfies φ² = φ + 1.

This agreement is a structural result within the framework, not an empirical measurement. It shows that two different routes, one geometric and one based on stellar assembly, converge on the same number. The framework does not claim this replaces observational astronomy; the value is a prediction, not a measurement of any specific galaxy. It also does not claim that all galaxies have M/L exactly 1.618; real galaxies vary widely. The theorem is a consistency check between two internal derivations, and its significance is that a single number emerges from two independent constraints.

THEOREM agrees_with_stellar_assembly · 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
MODEL ml_geometric · IndisputableMonolith/Astrophysics/ObservabilityLimits.lean
/-- The M/L ratio from geometric constraints -/
noncomputable def ml_geometric : ℝ := φ
THEOREM ml_geometric_bounds · IndisputableMonolith/Astrophysics/ObservabilityLimits.lean
/-- The geometric M/L matches observations -/
theorem ml_geometric_bounds : 1 < ml_geometric ∧ ml_geometric < 2 := by
  unfold ml_geometric φ
  constructor
  · exact Constants.one_lt_phi
  · exact Constants.phi_lt_two
THEOREM ml_from_geometry_only · IndisputableMonolith/Astrophysics/ObservabilityLimits.lean
/-- **Main Theorem**: The stellar M/L ratio is derived from geometric
observability constraints (l_rec, τ_0, E_coh) via J-cost minimization.

This provides a third independent derivation agreeing with Strategies 1 and 2. -/
theorem ml_from_geometry_only :
    ∃ (ml : ℝ),
    ml = φ ∧
    1 < ml ∧ ml < 5 ∧
    ml = StellarAssembly.ml_stellar ∧
    ml = NucleosynthesisTiers.ml_nucleosynthesis := by
  use ml_geometric
  refine ⟨rfl, ?_, ?_, agrees_with_stellar_assembly, agrees_with_nucleosynthesis⟩
  · exact ml_geometric_bounds.1
  · linarith [ml_geometric_bounds.2]

What this page does not claim

This does not claim that any real galaxy has a measured mass-to-light ratio of exactly 1.618. This does not claim that the framework's geometric estimate is derived from observational data. This does not claim that the agreement with nucleosynthesis or stellar assembly is a proof of the framework's physical correctness.

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