structure
definition
RSBridge
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.RecogSpec.RSBridge on GitHub at line 62.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
of -
Structure -
default -
bridge -
default -
of -
is -
of -
from -
is -
of -
for -
is -
of -
correction -
is -
V_cb -
V_ub -
L -
L -
Bridge -
cabibboProjection -
edgeDualCount -
radiativeCoeff -
V_cb -
V_ub
used by
-
l0_pos -
rung -
affine_log_collapses_from_three_point_calibration -
affine_log_collapses_to_canonical_gap -
ThreePointAffineLogClosure -
gap_down_pos -
QuarkAbsoluteMassResidual -
AdmissibleFamily -
sectorOf -
Species -
tildeQ -
compute_rung -
compute_rung_sdgt -
match_boson_H -
match_rsbridge_rung -
match_rsbridge_rung_charged_leptons -
match_rsbridge_rung_down_quarks -
match_rsbridge_rung_neutrinos -
match_rsbridge_rung_up_quarks -
phi_ladder_verified -
canonicalAnchor -
canonicalZBands -
display_identity_at_anchor_hypothesis -
F -
lnphi -
gap_lepton -
r_charm -
composite_rung -
Hadron -
lepton_residues_distinct -
lepton_rungs_forced -
LeptonTorsionCert -
lepton_torsion_verified -
derived_parameters -
PMNSUnitarity -
genOf_hyp -
HypotheticalFermion -
no_sterile -
sterile_bound -
complete_summary
formal source
59This extends the minimal `Bridge` with fields that determine the CKM matrix
60from geometric structure rather than arbitrary parameters.
61-/
62structure RSBridge (L : RSLedger) where
63 /-- The underlying bridge -/
64 toBridge : Bridge L.toLedger
65 /-- Edge count of dual structure (default: 24) -/
66 edgeDual : ℕ := edgeDualCount
67 /-- Fine structure exponent for V_ub -/
68 alphaExponent : ℝ
69 /-- Golden projection exponent for Cabibbo (default: -3) -/
70 phiProj : ℤ := cabibboProjection
71 /-- Radiative correction coefficient (default: 3/2) -/
72 radCoeff : ℚ := radiativeCoeff
73 /-- Loop order exponent for g-2 derivation (default: 5) -/
74 loopOrder : ℕ := 5
75
76/-! ## Mixing Angles from Bridge Structure -/
77
78variable {L : RSLedger}
79
80/-- V_cb from edge-dual geometry: 1/24
81
82This is EXACT — the mixing is the inverse of the dual edge count.
83-/
84def V_cb_from_bridge (B : RSBridge L) : ℚ := 1 / B.edgeDual
85
86/-- V_cb = 1/24 for canonical bridge -/
87theorem V_cb_canonical (B : RSBridge L) (hB : B.edgeDual = 24) :
88 V_cb_from_bridge B = 1 / 24 := by
89 simp [V_cb_from_bridge, hB]
90
91/-- V_cb as a real number -/
92noncomputable def V_cb_real (B : RSBridge L) : ℝ := (V_cb_from_bridge B : ℝ)