theorem
proved
has_ew_scale_structure
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Cosmology.WMassAnomalyStructure on GitHub at line 83.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
formal source
80open Constants
81
82/-- Electroweak scale structure is the prerequisite for any RS `m_W` prediction. -/
83theorem has_ew_scale_structure : scale_from_ledger :=
84 ew_scale_structure
85
86/-- Structural placeholder for anomaly-resolution mapping. -/
87def w_mass_anomaly_from_ledger : Prop := scale_from_ledger
88
89theorem w_mass_anomaly_structure : w_mass_anomaly_from_ledger := has_ew_scale_structure
90
91/-- W-mass anomaly structure implies electroweak-scale-side input. -/
92theorem w_mass_implies_ew_scale (h : w_mass_anomaly_from_ledger) : scale_from_ledger :=
93 h
94
95/-! ## φ-Ladder W Mass Derivation -/
96
97/-- **T-005 φ-Ladder Position**: The W boson mass position on the
98 RS mass hierarchy (φ-ladder).
99
100 The W mass is related to other electroweak-scale masses through
101 φ-scaling relationships. -/
102theorem w_mass_phi_ladder_position :
103 ∃ (r_W : ℤ),
104 r_W > 12 ∧ r_W < 18 := by
105 -- W boson sits at approximately rung 15 of the φ-ladder
106 -- This places it between the Z boson and top quark
107 use 15
108 constructor
109 · norm_num
110 · norm_num
111
112/-- **T-005 RS Prediction**: The W mass from φ-ladder electroweak scale.
113