lemma
proved
lambda_kin_from_tau_rec
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Constants.KDisplayCore on GitHub at line 35.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
tau0 -
c_ell0_tau0 -
ell0 -
K -
RSUnits -
tau0 -
ell0 -
tau0 -
K_gate_ratio -
lambda_kin_display -
tau_rec_display -
K -
U -
U -
RSUnits
used by
formal source
32 ring
33
34/-- Kinematic consistency: c · τ_rec(display) = λ_kin(display). -/
35lemma lambda_kin_from_tau_rec (U : RSUnits) : U.c * tau_rec_display U = lambda_kin_display U := by
36 simp only [tau_rec_display, lambda_kin_display]
37 -- Goal: U.c * (2 * π * τ₀ / (8 * log φ)) = 2 * π * ℓ₀ / (8 * log φ)
38 have h : U.c * U.tau0 = U.ell0 := U.c_ell0_tau0
39 calc U.c * (2 * Real.pi * U.tau0 / (8 * Real.log phi))
40 = (2 * Real.pi * (U.c * U.tau0)) / (8 * Real.log phi) := by ring
41 _ = (2 * Real.pi * U.ell0) / (8 * Real.log phi) := by rw [h]
42
43/-- Canonical K-gate: both route ratios equal K_gate_ratio. -/
44theorem K_gate_eqK (U : RSUnits) (hτ : U.tau0 ≠ 0) (hℓ : U.ell0 ≠ 0) :
45 ((tau_rec_display U) / U.tau0 = K_gate_ratio) ∧ ((lambda_kin_display U) / U.ell0 = K_gate_ratio) := by
46 exact ⟨tau_rec_display_ratio U hτ, lambda_kin_display_ratio U hℓ⟩
47
48end RSUnits
49end Constants
50end IndisputableMonolith