Potential of the SU(5) + U(1) GUT #
i. Overview #
In this module we will write down some of the potential terms appearing in
an SU(5) SUSY GUT model, with matter in the 5-bar and 10d representations.
A future iteration of this file will include all terms, and derive them from symmetry properties.
The terms of the super-potential we will consider are:
W ⊃ μ 5Hu 5̄Hd + 𝛽ᵢ 5̄Mⁱ5Hu + 𝜆ᵢⱼₖ 5̄Mⁱ 5̄Mʲ 10ᵏ + W¹ᵢⱼₖₗ 10ⁱ 10ʲ 10ᵏ 5̄Mˡ
+ W²ᵢⱼₖ 10ⁱ 10ʲ 10ᵏ 5̄Hd + W³ᵢⱼ 5̄Mⁱ 5̄Mʲ 5Hu 5Hu + W⁴ᵢ 5̄Mⁱ 5̄Hd 5Hu 5Hu
The terms of the Kahler potential are:
K ⊃ K¹ᵢⱼₖ 10ⁱ 10ʲ 5Mᵏ + K²ᵢ 5̄Hu 5̄Hd 10ⁱ
ii. Key results #
PotentialTerm: The inductive type indexing the potential terms.violateRParity: The finite set of terms which violate R-parity.β,λ,W²,W⁴,K¹,K²causeProtonDecay: The finite set of terms which contribute to proton decay.W¹,W²,K¹,λ
iii. Table of contents #
- A. The definition of
PotentialTerm - B. Relation to field labels
- C. Presence in the super-potential
- C.1. In super potential implies no conjugate fields
- D. Degree of the potential term
- E. R-parity of the potential terms
- F. Terms which violate proton decay
iv. References #
- The main reference for the terms, and notation used in this module is: arXiv:0912.0853 A previous version of this code was replaced in PR#569.
A. The definition of PotentialTerm #
We define an inductive type with a term for each of the potential terms we are interested in, present in both the super-potential and Kahler potential.
Relevant terms part of the superpotential and Kahler potential of the SU(5) SUSY GUT.
- μ : PotentialTerm
The term
μ 5Hu 5̄Hdappearing in the super-potential. - β : PotentialTerm
The term
𝛽ᵢ 5̄Mⁱ5Huappearing in the super-potential. - Λ : PotentialTerm
The term
𝜆ᵢⱼₖ 5̄Mⁱ 5̄Mʲ 10ᵏappearing in the super-potential. - W1 : PotentialTerm
The term
W¹ᵢⱼₖₗ 10ⁱ 10ʲ 10ᵏ 5̄Mˡappearing in the super-potential. - W2 : PotentialTerm
The term
W²ᵢⱼₖ 10ⁱ 10ʲ 10ᵏ 5̄Hdappearing in the super-potential. - W3 : PotentialTerm
The term
W³ᵢⱼ 5̄Mⁱ 5̄Mʲ 5Hu 5Huappearing in the super-potential. - W4 : PotentialTerm
The term
W⁴ᵢ 5̄Mⁱ 5̄Hd 5Hu 5Huappearing in the super-potential. - K1 : PotentialTerm
The term
K¹ᵢⱼₖ 10ⁱ 10ʲ 5Mᵏappearing in the Kahler potential. - K2 : PotentialTerm
The term
K²ᵢ 5̄Hu 5̄Hd 10ⁱappearing in the Kahler potential. - topYukawa : PotentialTerm
The term
λᵗᵢⱼ 10ⁱ 10ʲ 5Huappearing in the super-potential. - bottomYukawa : PotentialTerm
The term
λᵇᵢⱼ 10ⁱ 5̄Mʲ 5̄Hdappearing in the super-potential.
Instances For
Equations
- One or more equations did not get rendered due to their size.
B. Relation to field labels #
We map each term in the potential to the list of FieldLabels which it contains.
This allows us to define various properties of the potential term in a safe way, based
solely on the field content.
The fields contained within a given term of the potential.
Equations
- One or more equations did not get rendered due to their size.
- SuperSymmetry.SU5.PotentialTerm.μ.toFieldLabel = [SuperSymmetry.SU5.FieldLabel.fiveBarHd, SuperSymmetry.SU5.FieldLabel.fiveHu]
- SuperSymmetry.SU5.PotentialTerm.β.toFieldLabel = [SuperSymmetry.SU5.FieldLabel.fiveHu, SuperSymmetry.SU5.FieldLabel.fiveBarMatter]
- SuperSymmetry.SU5.PotentialTerm.Λ.toFieldLabel = [SuperSymmetry.SU5.FieldLabel.fiveBarMatter, SuperSymmetry.SU5.FieldLabel.fiveBarMatter, SuperSymmetry.SU5.FieldLabel.tenMatter]
- SuperSymmetry.SU5.PotentialTerm.K1.toFieldLabel = [SuperSymmetry.SU5.FieldLabel.tenMatter, SuperSymmetry.SU5.FieldLabel.tenMatter, SuperSymmetry.SU5.FieldLabel.fiveMatter]
- SuperSymmetry.SU5.PotentialTerm.K2.toFieldLabel = [SuperSymmetry.SU5.FieldLabel.fiveBarHu, SuperSymmetry.SU5.FieldLabel.fiveBarHd, SuperSymmetry.SU5.FieldLabel.tenMatter]
- SuperSymmetry.SU5.PotentialTerm.topYukawa.toFieldLabel = [SuperSymmetry.SU5.FieldLabel.tenMatter, SuperSymmetry.SU5.FieldLabel.tenMatter, SuperSymmetry.SU5.FieldLabel.fiveHu]
- SuperSymmetry.SU5.PotentialTerm.bottomYukawa.toFieldLabel = [SuperSymmetry.SU5.FieldLabel.tenMatter, SuperSymmetry.SU5.FieldLabel.fiveBarMatter, SuperSymmetry.SU5.FieldLabel.fiveBarHd]
Instances For
C. Presence in the super-potential #
We define a predicate which is true on those terms which are members of the super-potential. We will also prove that this predicate is decidable.
The proposition which is true on those terms which are members of the super potential.
Equations
- SuperSymmetry.SU5.PotentialTerm.μ.InSuperPotential = True
- SuperSymmetry.SU5.PotentialTerm.β.InSuperPotential = True
- SuperSymmetry.SU5.PotentialTerm.Λ.InSuperPotential = True
- SuperSymmetry.SU5.PotentialTerm.W1.InSuperPotential = True
- SuperSymmetry.SU5.PotentialTerm.W2.InSuperPotential = True
- SuperSymmetry.SU5.PotentialTerm.W3.InSuperPotential = True
- SuperSymmetry.SU5.PotentialTerm.W4.InSuperPotential = True
- SuperSymmetry.SU5.PotentialTerm.K1.InSuperPotential = False
- SuperSymmetry.SU5.PotentialTerm.K2.InSuperPotential = False
- SuperSymmetry.SU5.PotentialTerm.topYukawa.InSuperPotential = True
- SuperSymmetry.SU5.PotentialTerm.bottomYukawa.InSuperPotential = True
Instances For
Equations
- SuperSymmetry.SU5.PotentialTerm.μ.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
- SuperSymmetry.SU5.PotentialTerm.β.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
- SuperSymmetry.SU5.PotentialTerm.Λ.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
- SuperSymmetry.SU5.PotentialTerm.W1.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
- SuperSymmetry.SU5.PotentialTerm.W2.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
- SuperSymmetry.SU5.PotentialTerm.W3.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
- SuperSymmetry.SU5.PotentialTerm.W4.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
- SuperSymmetry.SU5.PotentialTerm.K1.instDecidableInSuperPotential = inferInstanceAs (Decidable False)
- SuperSymmetry.SU5.PotentialTerm.K2.instDecidableInSuperPotential = inferInstanceAs (Decidable False)
- SuperSymmetry.SU5.PotentialTerm.topYukawa.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
- SuperSymmetry.SU5.PotentialTerm.bottomYukawa.instDecidableInSuperPotential = inferInstanceAs (Decidable True)
C.1. In super potential implies no conjugate fields #
Been in the super potential implies that the term contains no conjugate fields.
The terms within the super-potential contain no conjugate fields.
D. Degree of the potential term #
We define the degree of a term in the potential to be the number of fields it contains. The degree of all terms present is less than or equal to four.
E. R-parity of the potential terms #
Based on the R-parity of the underlying fields, we define the R-parity of each term
in the potential. We show that those terms which violate R-parity are exactly those
which are β, Λ, W2, W4, K1, or K2.
The R-parity of a term in the potential.
Equations
- T.RParity = List.foldl (fun (x1 x2 : Fin 2) => x1 + x2) 0 (List.map SuperSymmetry.SU5.FieldLabel.RParity T.toFieldLabel)
Instances For
F. Terms which violate proton decay #
We write down the finite set of terms which contribute to proton decay. We do not at this point prove this result.
The finite set of terms in the superpotential and Kahler potential which are involved in proton decay.
W¹ᵢⱼₖₗ 10ⁱ 10ʲ 10ᵏ 5̄Mˡ𝜆ᵢⱼₖ 5̄Mⁱ 5̄Mʲ 10ᵏW²ᵢⱼₖ 10ⁱ 10ʲ 10ᵏ 5̄HdK¹ᵢⱼₖ 10ⁱ 10ʲ 5Mᵏ
Equations
- One or more equations did not get rendered due to their size.