pith. machine review for the scientific record. sign in
theorem

ml_from_geometry_only

proved
show as:
view math explainer →
module
IndisputableMonolith.Astrophysics.ObservabilityLimits
domain
Astrophysics
line
191 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Astrophysics.ObservabilityLimits on GitHub at line 191.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

formal source

 188observability constraints (l_rec, τ_0, E_coh) via J-cost minimization.
 189
 190This provides a third independent derivation agreeing with Strategies 1 and 2. -/
 191theorem ml_from_geometry_only :
 192    ∃ (ml : ℝ),
 193    ml = φ ∧
 194    1 < ml ∧ ml < 5 ∧
 195    ml = StellarAssembly.ml_stellar ∧
 196    ml = NucleosynthesisTiers.ml_nucleosynthesis := by
 197  use ml_geometric
 198  refine ⟨rfl, ?_, ?_, agrees_with_stellar_assembly, agrees_with_nucleosynthesis⟩
 199  · exact ml_geometric_bounds.1
 200  · linarith [ml_geometric_bounds.2]
 201
 202/-! ## Zero-Parameter Status -/
 203
 204/-- **Certificate**: M/L is derived with zero external parameters.
 205
 206The derivation uses only:
 2071. The Meta-Principle (MP) → ledger structure
 2082. The cost functional J(x) = ½(x + 1/x) - 1 from T5
 2093. The eight-tick structure from T6
 2104. The recognition length l_rec from the Planck identity
 211
 212All of these are derived from MP. Therefore M/L is derived. -/
 213theorem ml_zero_parameter_certificate :
 214    ∃ (ml : ℝ), ml = φ ∧ ml > 0 := by
 215  use φ
 216  constructor
 217  · rfl
 218  · exact Constants.phi_pos
 219
 220/-!
 221## RS Zero-Parameter Status