The vector space HiggsVec
is defined to be the complex Euclidean space of dimension 2.
For a given spacetime point a Higgs field gives a value in HiggsVec
.
5.1.Ā Higgs potential
5.1.1.Ā Introduction
The Higgs potential is a key part of the Standard Model of particle physics. It is a scalar potential which is used to give mass to the elementary particles. The Higgs potential is a polynomial of degree four in the Higgs field.
5.1.2.Ā The Higgs field
StandardModel.HiggsVec : TypeStandardModel.HiggsVec : Type
StandardModel.HiggsBundle : SpaceTime ā TypeStandardModel.HiggsBundle : SpaceTime ā Type
The HiggsBundle
is defined as the trivial vector bundle with base SpaceTime
and
fiber HiggsVec
. Thus as a manifold it corresponds to āā“ Ć ā²
.
StandardModel.HiggsField : TypeStandardModel.HiggsField : Type
The type HiggsField
is defined such that elements are smooth sections of the trivial
vector bundle HiggsBundle
. Such elements are Higgs fields. Since HiggsField
is
trivial as a vector bundle, a Higgs field is equivalent to a smooth map
from SpaceTime
to HiggsVec
.
5.1.3.Ā The Higgs potential
StandardModel.HiggsField.Potential : TypeStandardModel.HiggsField.Potential : Type
The structure Potential
is defined with two fields, μ2
corresponding
to the mass-squared of the Higgs boson, and l
corresponding to the coefficent
of the quartic term in the Higgs potential. Note that l
is usually denoted Ī»
.
Constructor
StandardModel.HiggsField.Potential.mk
Fields
μ2 : ā
The mass-squared of the Higgs boson.
šµ : ā
The quartic coupling of the Higgs boson. Usually denoted Ī».
Given an element Ļ
of HiggsField
, normSq Ļ
is defined as the
the function SpaceTime ā ā
obtained by taking the square norm of the
pointwise Higgs vector. In other words, normSq Ļ x = āĻ xā ^ 2
.
The notation āĻā_H^2
is used for the normSq Ļ
.
5.1.3.1.Ā Properties of the Higgs potential
For an element P
of Potential
with l < 0
and a real c : ā
, there exists
a Higgs field Ļ
and a spacetime point x
such that P.toFun Ļ x = c
iff one of the
following two conditions hold:
-
0 < μ2
andc ⤠0
. That is, ifl
is negative andμ2
positive, then the potential takes every non-positive value. -
or
μ2 ⤠0
andc ⤠- μ2 ^ 2 / (4 * šµ)
. That is, ifl
is negative andμ2
non-positive, then the potential takes every value less then or equal to its bound.
For an element P
of Potential
with 0 < l
and a real c : ā
, there exists
a Higgs field Ļ
and a spacetime point x
such that P.toFun Ļ x = c
iff one of the
following two conditions hold:
-
μ2 < 0
and0 ⤠c
. That is, ifl
is positive andμ2
negative, then the potential takes every non-negative value. -
or
0 ⤠μ2
and- μ2 ^ 2 / (4 * šµ) ⤠c
. That is, ifl
is positive andμ2
non-negative, then the potential takes every value greater then or equal to its bound.
5.1.3.2.Ā Boundedness of the Higgs potential
5.1.3.3.Ā Maximum and minimum of the Higgs potential
Given an element P
of Potential
with l < 0
, then the Higgs field Ļ
and
spacetime point x
maximizes the potential if and only if one of the following conditions
holds
-
μ2 ⤠0
andāĻā_H^2 x = μ2 / (2 * šµ)
. -
or
0 < μ2
andĻ x = 0
.
Given an element P
of Potential
with 0 < l
, then the Higgs field Ļ
and
spacetime point x
minimize the potential if and only if one of the following conditions
holds
-
0 ⤠μ2
andāĻā_H^2 x = μ2 / (2 * šµ)
. -
or
μ2 < 0
andĻ x = 0
.