PhysLean/HepLean/BeyondTheStandardModel/PatiSalam/Basic.lean

76 lines
3.1 KiB
Text
Raw Normal View History

2024-09-19 06:07:27 -04: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 Pati-Salam Model
2024-09-20 17:38:48 -04:00
The Pati-Salam model is a petite unified theory that unifies the Standard Model gauge group into
2024-09-19 06:07:27 -04:00
`SU(4) x SU(2) x SU(2)`.
2024-09-24 08:55:30 +00:00
This file currently contains informal-results about the Pati-Salam group.
2024-09-19 06:07:27 -04:00
-/
namespace PatiSalam
/-!
## The Pati-Salam gauge group.
-/
informal_definition GaugeGroupI where
math :≈ "The group `SU(4) x SU(2) x SU(2)`."
physics :≈ "The gauge group of the Pati-Salam model (unquotiented by ℤ₂)."
2024-09-20 17:38:48 -04:00
informal_definition inclSM where
physics :≈ "The homomorphism of the Standard Model gauge group into the Pati-Salam gauge group."
2024-09-19 06:07:27 -04:00
math :≈ "The group homomorphism `SU(3) x SU(2) x U(1) -> SU(4) x SU(2) x SU(2)`
taking (h, g, α) to (blockdiag (α h, α ^ (-3)), g, diag(α ^ (3), α ^(-3)))."
ref :≈ "Page 54 of https://math.ucr.edu/home/baez/guts.pdf"
deps :≈ [``GaugeGroupI, ``StandardModel.GaugeGroupI]
2024-09-20 17:38:48 -04:00
informal_lemma inclSM_ker where
math :≈ "The kernel of the map ``inclSM is equal to the subgroup
``StandardModel.gaugeGroup₃SubGroup."
ref :≈ "Footnote 10 of https://arxiv.org/pdf/2201.07245"
deps :≈ [``inclSM, ``StandardModel.gaugeGroup₃SubGroup]
informal_definition embedSM₃ where
math :≈ "The group embedding from ``StandardModel.GaugeGroup₃ to ``GaugeGroupI
induced by ``inclSM by quotienting by the kernal ``inclSM_ker."
deps :≈ [``inclSM, ``StandardModel.GaugeGroup₃, ``GaugeGroupI, ``inclSM_ker]
2024-09-19 06:07:27 -04:00
informal_definition gaugeGroupISpinEquiv where
math :≈ "The equivalence between `GaugeGroupI` and `Spin(6) × Spin(4)`."
deps :≈ [``GaugeGroupI]
informal_definition gaugeGroup₂SubGroup where
physics :≈ "The ℤ₂-subgroup of the un-quotiented gauge group which acts trivially on
all particles in the standard model."
math :≈ "The ℤ₂-subgroup of ``GaugeGroupI with the non-trivial element (-1, -1, -1)."
ref :≈ "https://math.ucr.edu/home/baez/guts.pdf"
deps :≈ [``GaugeGroupI]
informal_definition GaugeGroup₂ where
physics :≈ "The gauge group of the Pati-Salam model with a ℤ₂ quotient."
math :≈ "The quotient of ``GaugeGroupI by the ℤ₂-subgroup `gaugeGroup₂SubGroup`."
ref :≈ "https://math.ucr.edu/home/baez/guts.pdf"
deps :≈ [``GaugeGroupI, ``gaugeGroup₂SubGroup]
informal_lemma sm_₆_factor_through_gaugeGroup₂SubGroup where
math :≈ "The group ``StandardModel.gaugeGroup₆SubGroup under the homomorphism ``embedSM factors
through the subgroup ``gaugeGroup₂SubGroup."
2024-09-20 17:38:48 -04:00
deps :≈ [``inclSM, ``StandardModel.gaugeGroup₆SubGroup, ``gaugeGroup₂SubGroup]
2024-09-19 06:07:27 -04:00
informal_definition embedSM₆To₂ where
math :≈ "The group homomorphism from ``StandardModel.GaugeGroup₆ to ``GaugeGroup
induced by ``embedSM."
2024-09-20 17:38:48 -04:00
deps :≈ [``inclSM, ``StandardModel.GaugeGroup₆, ``GaugeGroup₂,
2024-09-19 06:07:27 -04:00
``sm_₆_factor_through_gaugeGroup₂SubGroup]
end PatiSalam