Mapping charge spectra values #
i. Overview #
In this module we define a function map
which takes an additive monoid homomorphism
f : 𝓩 →+ 𝓩1
and a charge spectra x : ChargeSpectrum 𝓩
, and returns the charge
x.map f : ChargeSpectrum 𝓩1
obtained by mapping the elements of x
by f
.
There are various properties which are preserved under this mapping:
- Anomaly cancellation.
- The presence of a specific term in the potential.
- Being complete.
There are some properties which are reflected under this mapping:
- Not being pheno-constrained.
- Not regenerating dangerous Yukawa terms at a given level.
We define the preimage of this mapping within a subset ofFinset S5 S10
of Charges 𝓩
in
a computationaly efficient way.
ii. Key results #
map
: The mapping of charge spectra under an additive monoid homomorphism.map_allowsTerm
: If a charge spectrum allows a potential term, then so does its mapping.map_isPhenoConstrained
: If a charge spectrum is pheno-constrained, then so is its mapping.map_isComplete_iff
: A charge spectrum is complete if and only if its mapping is complete.map_yukawaGeneratesDangerousAtLevel
: A charge spectrum regenerates dangerous Yukawa terms at a given level then so does its mapping.preimageOfFinset
: The preimage of a charge spectrum inofFinset S5 S10
under a mapping.preimageOfFinsetCard
: The cardinality of the preimage of a charge spectrum inofFinset S5 S10
under a mapping.
iii. Table of contents #
- A. The mapping of charge spectra
- A.1. Mapping the empty charge spectrum gives the empty charge spectrum
- A.2. Mapping of charge spectra obeys composing maps
- A.3. Mapping of charge spectra obeys the identity
- A.4. The charges of a field label commute with mapping of charge spectra
- A.5. Mappings of charge spectra preserve the subset relation
- A.6. Mappings of charge spectra and charges of potential terms
- A.7. Mapping charge spectra of `allowsTermForm
- A.8. Mapping preserves whether a charge spectrum allows a potential term
- A.9. Mapping preserves if a charge spectrum is pheno-constrained
- A.10. Mapping preserves completeness of charge spectra
- A.11. Mapping commutes with charges of Yukawa terms
- A.12. Mapping of chareg spectra and regenerating dangerous Yukawa terms
- B. Preimage of a charge spectrum under a mapping
- B.1.
preimageOfFinset
gives the actual preimage - B.2. Efficient definition for the cardinality of the preimage
- B.3. Definition for the cardinality equals cardinality of the preimage
- B.1.
iv. References #
There are no known references for the material in this module.
A. The mapping of charge spectra #
Given an additive monoid homomorphisms f : 𝓩 →+ 𝓩1
, for a charge
x : Charges 𝓩
, x.map f
is the charge of Charges 𝓩1
obtained by mapping the elements
of x
by f
.
Equations
- SuperSymmetry.SU5.ChargeSpectrum.map f x = { qHd := ⇑f <$> x.qHd, qHu := ⇑f <$> x.qHu, Q5 := Finset.image (⇑f) x.Q5, Q10 := Finset.image (⇑f) x.Q10 }
Instances For
A.2. Mapping of charge spectra obeys composing maps #
A.3. Mapping of charge spectra obeys the identity #
A.4. The charges of a field label commute with mapping of charge spectra #
A.5. Mappings of charge spectra preserve the subset relation #
A.6. Mappings of charge spectra and charges of potential terms #
A.7. Mapping charge spectra of `allowsTermForm #
A.8. Mapping preserves whether a charge spectrum allows a potential term #
A.9. Mapping preserves if a charge spectrum is pheno-constrained #
A.10. Mapping preserves completeness of charge spectra #
A.11. Mapping commutes with charges of Yukawa terms #
A.12. Mapping of chareg spectra and regenerating dangerous Yukawa terms #
B. Preimage of a charge spectrum under a mapping #
We give a computationally efficient way of calculating the preimage of a charge
s : Charges 𝓩1
in a subset ofFinset S5 S10
, and then show it is
equal to the actual preimage.
The preimage of a charge Charges 𝓩1
in ofFinset S5 S10 ⊆ Charges 𝓩
under
mapping charges through f : 𝓩 →+ 𝓩1
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
B.1. preimageOfFinset
gives the actual preimage #
B.2. Efficient definition for the cardinality of the preimage #
The cardiniality of the
preimage of a charge Charges 𝓩1
in ofFinset S5 S10 ⊆ Charges 𝓩
under
mapping charges through f : 𝓩 →+ 𝓩1
.
Equations
- One or more equations did not get rendered due to their size.