def
definition
ell0
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Constants on GitHub at line 414.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
BridgeData -
computeRatios -
UnitsKGateCert -
c_ell0_tau0 -
E_coh_pos -
ell0_pos -
kappa_einstein_eq -
lambda_rec -
RSUnits -
canonicalUnits -
ell0 -
ell0_ne_zero -
ell0_pos -
units_self_consistent -
display_rate_matches_structural_rate -
displays_invariant_under_equivalence -
ell0_div_tau0_eq_c -
K_gate_check -
KGateMeasurement -
K_gate_units_invariant -
observable_factors_through_quotient -
single_inequality_audit -
UnitsEquivalent -
UnitsEquivalent -
UnitsEquivalent -
units_quotient_preserves_K -
K_gate_eqK -
lambda_kin_display -
lambda_kin_display_ratio -
lambda_kin_from_tau_rec -
lambda_rec_is_root -
lambda_rec_unique_root -
one_over_sqrt_pi_approx -
planck_gate_identity -
U -
U_ell0 -
c_mul_tau0_eq_ell0 -
a0_phi_ladder_formula -
curvature_bounded_at_R0 -
InflationCert
formal source
411 simp [c]
412
413/-- The fundamental length unit ℓ₀ in RS-native units (voxel). -/
414@[simp] noncomputable def ell0 : ℝ := 1
415
416lemma ell0_pos : 0 < ell0 := by
417 simp [ell0]
418
419/-- Light-cone identity: ℓ₀ = c · τ₀ (in RS-native units). -/
420lemma c_ell0_tau0 : c * tau0 = ell0 := by
421 simp [c, tau0, ell0, tick]
422
423/-- Fundamental recognition wavelength λ_rec.
424 In the 8-tick cycle, λ_rec = ℓ₀ (in RS-native units). -/
425noncomputable def lambda_rec : ℝ := ell0
426
427lemma lambda_rec_pos : 0 < lambda_rec := by
428 simp [lambda_rec]
429
430/-- Newton's gravitational constant G derived from first principles (RS-native form).
431 \(G = \lambda_{\text{rec}}^2 c^3 / (\pi \hbar)\). -/
432noncomputable def G : ℝ := (lambda_rec^2) * (c^3) / (Real.pi * hbar)
433
434lemma G_pos : 0 < G := by
435 unfold G
436 apply div_pos
437 · apply mul_pos
438 · exact pow_pos lambda_rec_pos 2
439 · exact pow_pos c_pos 3
440 · apply mul_pos
441 · exact Real.pi_pos
442 · exact hbar_pos
443
444/-- Einstein coupling constant κ = 8πG/c⁴ in RS-native units.