theorem
proved
ml_from_geometry_only
show as:
view math explainer →
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
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