def
definition
W
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Physics.MassTopology on GitHub at line 48.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
canonicalRecognitionCostSystem -
canonicalRecognitionCostSystem_cost_inv -
canonicalRecognitionCostSystem_cost_one -
canonicalSigma -
RecognitionCostSystem -
seqShift -
windowSums -
windowSums_shift_equivariant -
LuminosityTier -
prefersBCC -
stability_tradeoff -
c020_derivation_strategy -
vev_phi_ladder_position -
su3_sector -
w_mass_anomaly_structure -
w_mass_atlas_measurement -
w_mass_implies_ew_scale -
w_mass_phi_ladder_position -
w_mass_sigma_comparison -
w_z_mass_ratio -
flyby_significance -
GaugeTreeProcess -
is -
simplicialFieldCurvatureCert -
SimplicialFieldCurvatureCert -
deficitLinearizationCert -
DeficitLinearizationCert -
linear_regge_vanishes -
solution_exists -
bilinearCoefficient -
bilinearCoefficient_symm -
dirichletForm_edgeArea -
dirichletForm_neg -
edgeArea -
edgeAreaGraph -
edgeArea_symm -
SchlaefliRowSum -
secondOrder_eq_half_laplacian_action -
secondOrderReggeAction -
secondOrderReggeAction_flat
formal source
45def E_passive : ℕ := passive_field_edges 3
46
47/-- Wallpaper groups (Face symmetries). -/
48def W : ℕ := wallpaper_groups
49
50/-! ## The Ledger Fraction -/
51
52/-- The base topological fraction: (W + E) / 4E_p. -/
53def ledger_fraction : ℚ := (W + E_total) / (4 * E_passive)
54
55/-- The base shift: 2W + Fraction. -/
56noncomputable def base_shift : ℝ := 2 * W + ledger_fraction
57
58/-! ## Radiative Corrections -/
59
60/-- Primary radiative correction: α². -/
61noncomputable def correction_order_2 : ℝ := alpha ^ 2
62
63/-- Secondary radiative correction: E · α³. -/
64noncomputable def correction_order_3 : ℝ := E_total * (alpha ^ 3)
65
66/-- Total radiative correction. -/
67noncomputable def radiative_correction : ℝ := correction_order_2 + correction_order_3
68
69/-! ## The Refined Shift -/
70
71/-- The complete predicted shift. -/
72noncomputable def refined_shift : ℝ := base_shift + radiative_correction
73
74end MassTopology
75end Physics
76end IndisputableMonolith