def
definition
lambda_rec
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Constants on GitHub at line 425.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
lambda_rec -
lambda_rec_dimensionless_id -
lambda_rec_dimensionless_id_physical -
lambda_rec_pos -
G -
kappa_einstein_eq -
lambda_rec_pos -
GDerivationChain -
K -
lambda_rec_is_forced -
lambda_rec_is_root -
lambda_rec_unique_root -
one_over_sqrt_pi_approx -
planck_gate_identity -
planck_gate_normalized -
G_div_hbar -
alpha_locked -
pbh_shadow_detectable -
shadow_diameter_correction -
G_derived -
G_eq_inv_pi_hbar
formal source
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.
445 Using G = λ_rec² c³ / (π ℏ) with λ_rec = c = 1 and ℏ = φ⁻⁵:
446 κ = 8π · (φ⁵/π) / 1 = 8φ⁵.
447
448 This is the coefficient in front of T_μν in the Einstein field equations. -/
449noncomputable def kappa_einstein : ℝ := 8 * Real.pi * G / (c^4)
450
451lemma kappa_einstein_eq : kappa_einstein = 8 * phi ^ (5 : ℝ) := by
452 unfold kappa_einstein G hbar cLagLock lambda_rec ell0 c tau0 tick
453 simp only [one_pow, mul_one, div_one]
454 have hpi : Real.pi ≠ 0 := Real.pi_ne_zero
455 field_simp [hpi]