2024-09-24 08:55:30 +00:00
|
|
|
|
/-
|
|
|
|
|
Copyright (c) 2024 Joseph Tooby-Smith. All rights reserved.
|
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
Authors: Joseph Tooby-Smith
|
|
|
|
|
-/
|
|
|
|
|
import HepLean.StandardModel.Basic
|
|
|
|
|
/-!
|
|
|
|
|
|
|
|
|
|
# The Georgi-Glashow Model
|
|
|
|
|
|
|
|
|
|
The Georgi-Glashow model is a grand unified theory that unifies the Standard Model gauge group into
|
|
|
|
|
`SU(5)`.
|
|
|
|
|
|
|
|
|
|
This file currently contains informal-results about the Georgi-Glashow group.
|
|
|
|
|
|
|
|
|
|
-/
|
|
|
|
|
|
|
|
|
|
namespace GeorgiGlashow
|
|
|
|
|
|
2025-02-02 03:17:17 +08:00
|
|
|
|
/-- The gauge group of the Georgi-Glashow model, i.e., `SU(5)`. -/
|
2024-09-24 08:55:30 +00:00
|
|
|
|
informal_definition GaugeGroupI where
|
2025-02-02 03:17:17 +08:00
|
|
|
|
deps := []
|
2024-09-24 08:55:30 +00:00
|
|
|
|
|
2025-02-02 03:17:17 +08:00
|
|
|
|
/-- The homomorphism of the Standard Model gauge group into the Georgi-Glashow gauge group, i.e.,
|
|
|
|
|
the group homomorphism `SU(3) × SU(2) × U(1) → SU(5)` taking `(h, g, α)` to
|
|
|
|
|
`blockdiag (α ^ 3 g, α ^ (-2) h)`.
|
|
|
|
|
|
|
|
|
|
See page 34 of https://math.ucr.edu/home/baez/guts.pdf
|
|
|
|
|
-/
|
2024-09-24 08:55:30 +00:00
|
|
|
|
informal_definition inclSM where
|
2025-02-02 03:17:17 +08:00
|
|
|
|
deps := [``GaugeGroupI, ``StandardModel.GaugeGroupI]
|
|
|
|
|
|
|
|
|
|
/-- The kernel of the map `inclSM` is equal to the subgroup `StandardModel.gaugeGroupℤ₆SubGroup`.
|
2024-09-24 08:55:30 +00:00
|
|
|
|
|
2025-02-02 03:17:17 +08:00
|
|
|
|
See page 34 of https://math.ucr.edu/home/baez/guts.pdf
|
|
|
|
|
-/
|
2024-09-24 08:55:30 +00:00
|
|
|
|
informal_lemma inclSM_ker where
|
2025-02-02 03:17:17 +08:00
|
|
|
|
deps := [``inclSM, ``StandardModel.gaugeGroupℤ₆SubGroup]
|
2024-09-24 08:55:30 +00:00
|
|
|
|
|
2025-02-02 03:17:17 +08:00
|
|
|
|
/-- The group embedding from `StandardModel.GaugeGroupℤ₆` to `GaugeGroupI` induced by `inclSM` by
|
|
|
|
|
quotienting by the kernal `inclSM_ker`.
|
|
|
|
|
-/
|
2024-09-24 08:55:30 +00:00
|
|
|
|
informal_definition embedSMℤ₆ where
|
2025-02-02 03:17:17 +08:00
|
|
|
|
deps := [``inclSM, ``StandardModel.GaugeGroupℤ₆, ``GaugeGroupI, ``inclSM_ker]
|
2024-09-24 08:55:30 +00:00
|
|
|
|
|
|
|
|
|
end GeorgiGlashow
|