pith. machine review for the scientific record. sign in
def

recognitionStrength

definition
show as:
view math explainer →
module
IndisputableMonolith.Unification.CouplingLaw
domain
Unification
line
222 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Unification.CouplingLaw on GitHub at line 222.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

 219  positive : 0 < value
 220
 221/-- Recognition strength: the ratio geometric/perturbative. -/
 222def recognitionStrength {f : Fermion} (pr : PerturbativeResidue f) : ℝ :=
 223  geometricResidue f / pr.value
 224
 225/-- **THE COUPLING LAW**: Recognition strength equals the cosh enhancement
 226evaluated at the perturbative residue.
 227
 228  S_i = F(Z_i) / f_RG_i = coshEnhancement(f_RG_i)
 229
 230The ratio between geometric and perturbative physics is not free — it is
 231determined by the Taylor structure of cosh, forced by the RCL. -/
 232theorem coupling_law_determines_strength {f : Fermion}
 233    (pr : PerturbativeResidue f)
 234    (hlaw : geometricResidue f = coshEnhancement pr.value * pr.value) :
 235    recognitionStrength pr = coshEnhancement pr.value := by
 236  unfold recognitionStrength
 237  rw [hlaw, mul_div_assoc]
 238  simp [ne_of_gt pr.positive]
 239
 240/-- **STRUCTURAL DOMINANCE**: Under the coupling law, geometric always
 241exceeds perturbative for any species with non-vanishing coupling. -/
 242theorem structural_dominance {f : Fermion} (pr : PerturbativeResidue f)
 243    (hlaw : geometricResidue f = coshEnhancement pr.value * pr.value) :
 244    pr.value < geometricResidue f := by
 245  rw [hlaw]
 246  have hS := enhancement_gt_one pr.value (ne_of_gt pr.positive)
 247  have hv := pr.positive
 248  nlinarith
 249
 250/-! ## §7. The Coupling Certificate -/
 251
 252/-- The coupling law certificate: packages the full bridge. -/