3.1. Higgs potential
3.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.
3.1.2. The Higgs field
Show Lean signature:
StandardModel.HiggsVec : Type
The HiggsBundle
is defined as the trivial vector bundle with base SpaceTime
and
fiber HiggsVec
. Thus as a manifold it corresponds to ℝ⁴ × ℂ²
.
Show Lean signature:
StandardModel.HiggsBundle : SpaceTime → 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
.
Show Lean signature:
StandardModel.HiggsField : Type
3.1.3. The Higgs potential
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 λ
.
Show Lean signature:
StandardModel.HiggsField.Potential : Type
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 φ
.
Show Lean signature:
StandardModel.HiggsField.normSq (φ : HiggsField) : SpaceTime → ℝ
Show Lean signature:
StandardModel.HiggsField.Potential.toFun (P : Potential) (φ : HiggsField) (x : SpaceTime) : ℝ
3.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.
3.1.3.2. Boundedness of the Higgs potential
Show Lean signature:
StandardModel.HiggsField.Potential.IsBounded (P : Potential) : Prop
Given a element P
of Potential
which is bounded,
the quartic coefficent 𝓵
of P
is non-negative.
3.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
.