def
definition
Q_lock
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Physics.CouplingLockIn on GitHub at line 18.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
15open Constants
16
17/-- The lock-in scale is the fundamental recognition scale Q_lock = hbar / ell0. -/
18noncomputable def Q_lock : ℝ := effective_scale ell0
19
20/-- The locked value of the fine-structure constant.
21 By Phase 2, this is alphaLock = (1 - 1/phi) / 2. -/
22noncomputable def alpha_locked : ℝ := alphaLock
23
24/-- **THEOREM: Lock-in Condition**
25 The running coupling alpha_inv_running matches the geometric alphaLock
26 at the lock-in scale lambda_rec = ell0.
27 Note: This is the 'initial condition' for the RG flow from first principles. -/
28theorem alpha_lock_at_scale :
29 alpha_inv_running (effective_scale ell0) (effective_scale ell0) (1 / alpha_locked) = 1 / alpha_locked := by
30 unfold alpha_inv_running
31 rw [div_self (ne_of_gt (effective_scale_pos ell0_pos))]
32 rw [Real.log_one, mul_zero, sub_zero]
33
34/-- **SCAFFOLD: Eight-Beat Plateau Dominance**
35 Below the lock-in scale Q < Q_lock, the discrete eight-beat cycle
36 prevents further running, maintaining the geometric value. -/
37def is_locked_regime (Q : ℝ) : Prop := Q ≤ Q_lock
38
39/-- The physical coupling including the lock-in effect. -/
40noncomputable def alpha_inv_phys (Q : ℝ) : ℝ :=
41 if Q ≥ Q_lock then
42 alpha_inv_running Q Q_lock (1 / alpha_locked)
43 else
44 1 / alpha_locked
45
46/-- **THEOREM: Physical Coupling Continuity**
47 The physical coupling is continuous at the lock-in boundary.
48 Both branches agree at Q = Q_lock (proved in `alpha_lock_at_scale`). -/