Physlib

Physlib.StringTheory.FTheory.SU5.Quanta.IsViable

Viable Quanta with Yukawa

i. Overview

We say a term of a type `Quanta` is viable if it satisfies the following properties: - It has a `Hd`, `Hu` and at least one matter particle in the 5 and 10 representation. - It has no exotic chiral particles. - It leads to a top Yukawa coupling. - It does not lead to a pheno constraining terms. - It does not lead to a dangerous Yukawa coupling at one insertion of the Yukawa singlets. - It satisfies linear anomaly cancellation. - The charges are allowed by an `I` configuration.

We also write down the explicit set of viable quanta, and prove that this set is complete.

One can view the dependencies of this module with:

``` lake exe graph --from Physlib.StringTheory.FTheory.SU5.Fluxes.Basic,Physlib.Particles.SuperSymmetry.SU5.FieldLabels my_graph.pdf ```

ii. Key results

- `Quanta.IsViable` : The proposition on a `Quanta` that it is viable. - `Quanta.viableElems` : The multiset of viable quanta. - `Quanta.isViable_iff_mem_viableElems` : A quanta is viable if and only if it is in the `Quanta.viableElems`.

iii. Table of contents

- A. The condition for a `Quanta` to be viable - A.1. Simplification of the prop to use the set of viable charges `viableCharges I` - A.2. Further simplification of the prop to use the set of viable charges `Quanta.liftCharge` - A.3. Further simplification of the prop to use the anomaly free set of viable charges - B. The multiset of viable quanta - B.1. Every element of the multiset is viable - B.2. A quanta is viable if and only if it is in the multiset - B.3. Every element of the multiset regenerates Yukawa at two insertions of the Yukawa singlets - B.4. Those quanta which satisfy the quartic anomaly cancellation condition - B.5. Map down to Z2

iv. References

The key reference for the material in this module is: arXiv:1507.05961.

A. The condition for a `Quanta` to be viable

A.1. Simplification of the prop to use the set of viable charges `viableCharges I`

A.2. Further simplification of the prop to use the set of viable charges `Quanta.liftCharge`

A.3. Further simplification of the prop to use the anomaly free set of viable charges

B. The multiset of viable quanta

We find all the viable quanta. This can be evaluated with

``` ((((viableCharges .same ∪ viableCharges .nearestNeighbor ∪ viableCharges .nextToNearestNeighbor).filter IsAnomalyFree).bind Quanta.liftCharge).filter LinearAnomalyCancellation) ```

B.1. Every element of the multiset is viable

B.2. A quanta is viable if and only if it is in the multiset

B.3. Every element of the multiset regenerates Yukawa at two insertions of the Yukawa singlets

B.4. Those quanta which satisfy the quartic anomaly cancellation condition

B.5. Map down to Z2

10 declarations

theorem

Viability Criteria for SU(5)SU(5) F-theory Quanta

A configuration of quanta xx in an SU(5)×U(1)SU(5) \times U(1) F-theory model is **viable** if and only if it satisfies the following conditions: 1. **Completeness**: The charge spectrum is complete, meaning it contains U(1)U(1) charges for the Higgs fields HdH_d and HuH_u, and the sets of charges for the 5ˉ\bar{\mathbf{5}} and 10\mathbf{10} representations are non-empty. 2. **Phenomenological Safety**: The charge spectrum does not allow gauge-invariant potential terms that are phenomenologically constrained (such as μ,β,Λ,Wi,Ki\mu, \beta, \Lambda, W_i, K_i which lead to proton decay or R-parity violation) and no such terms are regenerated by a single insertion of Yukawa-related singlets. 3. **Geometric Consistency**: There exists a codimension-one fiber configuration I{same, nearestNeighbor, nextToNearestNeighbor}I \in \{\text{same, nearestNeighbor, nextToNearestNeighbor}\} such that the charges in xx are elements of the allowed charge sets S5ˉ(I)S_{\bar{\mathbf{5}}}(I) and S10(I)S_{\mathbf{10}}(I). 4. **Uniqueness of Matter Charges**: The multisets of U(1)U(1) charges associated with the 5ˉ\bar{\mathbf{5}} and 10\mathbf{10} matter curves do not contain duplicate elements. 5. **Top Yukawa Coupling**: The charge spectrum allows for a gauge-invariant top-quark Yukawa coupling. 6. **Matter Content and Fluxes**: The fluxes associated with the 5ˉ\bar{\mathbf{5}} and 10\mathbf{10} sectors contain no zero entries and result in exactly three generations of Minimal Supersymmetric Standard Model (MSSM) matter fields (Q,U,E,L,DQ, U, E, L, D) with no chiral exotics. 7. **Linear Anomaly Cancellation**: The configuration satisfies the linear anomaly cancellation condition: qHdqHu+iqiNi+aqaNa=0q_{H_d} - q_{H_u} + \sum_{i} q_i N_i + \sum_{a} q_a N_a = 0 where qq are the U(1)U(1) charges and NN are the multiplicities (fluxes) for the 5ˉ\bar{\mathbf{5}} and 10\mathbf{10} representations.

theorem

IsViablexIsViable \, x iff x.toChargesviableCharges(I)x.\text{toCharges} \in \text{viableCharges}(I) and Flux/Anomaly Conditions hold

A configuration of quanta xx in an SU(5)×U(1)SU(5) \times U(1) F-theory model is **viable** (IsViablexIsViable \, x) if and only if the following conditions are satisfied: 1. **Charge Viability**: There exists a codimension-one configuration II such that the charge spectrum of xx, denoted x.toChargesx.\text{toCharges}, is an element of the multiset viableCharges(I)\text{viableCharges}(I). 2. **Charge Uniqueness**: The multisets of U(1)U(1) charges associated with the 5ˉ\bar{\mathbf{5}} (F) and 10\mathbf{10} (T) representation matter curves do not contain duplicate entries (`Nodup`). 3. **Flux Consistency**: The fluxes associated with the 5ˉ\bar{\mathbf{5}} and 10\mathbf{10} representations contain no zero entries (`HasNoZero`) and result in exactly three generations of MSSM matter fields with no chiral exotics (`NoExotics`). 4. **Anomaly Cancellation**: The linear anomaly cancellation condition is satisfied: qHdqHu+iqiNi+aqaNa=0q_{H_d} - q_{H_u} + \sum_{i} q_i N_i + \sum_{a} q_a N_a = 0 where qq are the U(1)U(1) charges and NN are the multiplicities (fluxes) for the 5ˉ\bar{\mathbf{5}} and 10\mathbf{10} representations.

theorem

Viability iff Viable Charge Spectrum, Valid Lift, and Linear Anomaly Cancellation

A configuration of quanta xx in an SU(5)×U(1)SU(5) \times U(1) F-theory model is viable (IsViablexIsViable \, x) if and only if the following three conditions are satisfied: 1. There exists a codimension-one configuration II such that the charge spectrum of xx, denoted x.toChargesx.\text{toCharges}, is an element of the multiset of viable charge spectra viableCharges(I)\text{viableCharges}(I). This implies the spectrum permits a top Yukawa coupling and is phenomenologically safe. 2. xx belongs to the multiset of configurations obtained by lifting its charge spectrum, liftCharge(x.toCharges)\text{liftCharge}(x.\text{toCharges}). This condition ensures that the matter curves associated with xx have no chiral exotics, no zero fluxes, and unique U(1)U(1) charges. 3. The linear anomaly cancellation condition is satisfied: qHdqHu+iqiNi+aqaNa=0q_{H_d} - q_{H_u} + \sum_{i} q_i N_i + \sum_{a} q_a N_a = 0 where qq are the U(1)U(1) charges and NN are the multiplicities (fluxes) for the 5ˉ\bar{\mathbf{5}} and 10\mathbf{10} representations.

theorem

IsViable x    Filtered Viable Charges, Valid Lift, and Linear Anomaly Cancellation\text{IsViable } x \iff \text{Filtered Viable Charges, Valid Lift, and Linear Anomaly Cancellation}

A configuration of quanta xx in an SU(5)×U(1)SU(5) \times U(1) F-theory model is viable (IsViable x\text{IsViable } x) if and only if the following three conditions are satisfied: 1. There exists a codimension-one configuration II such that the U(1)U(1) charge spectrum of xx, denoted x.toChargesx.\text{toCharges}, is an element of the multiset of viable charge spectra viableCharges(I)\text{viableCharges}(I) that satisfies the IsAnomalyFree\text{IsAnomalyFree} property. 2. xx belongs to the multiset of configurations liftCharge(x.toCharges)\text{liftCharge}(x.\text{toCharges}) obtained by lifting its charge spectrum, ensuring no chiral exotics and no zero fluxes. 3. xx satisfies the linear anomaly cancellation condition: qHdqHu+iqiNi+aqaNa=0q_{H_d} - q_{H_u} + \sum_{i} q_i N_i + \sum_{a} q_a N_a = 0 where qHdq_{H_d} and qHuq_{H_u} are the U(1)U(1) charges of the Higgs particles, qi,qaq_i, q_a are the charges of the 5\overline{\mathbf{5}} and 10\mathbf{10} representations, and Ni,NaN_i, N_a are their respective multiplicities (fluxes).

definition

Multiset of viable quanta

The multiset of viable quanta, `viableElems`, is the collection of 36 specific configurations of the type `Quanta` that satisfy the physical viability predicate `IsViable` in the context of SU(5)SU(5) FF-theory. A configuration is considered viable if it contains the Higgs fields HdH_d and HuH_u, matter in the 5\mathbf{5} and 10\mathbf{10} representations, satisfies linear anomaly cancellation, and supports a top Yukawa coupling while avoiding exotic chiral particles and phenomenologically dangerous couplings. The multiset explicitly enumerates these valid configurations, including several duplicate entries as specified in the formal definition.

theorem

xviableElems    IsViable xx \in \text{viableElems} \implies \text{IsViable } x

For any configuration of quanta xx in the SU(5)SU(5) F-theory model, if xx is an element of the multiset of viable quanta viableElems\text{viableElems}, then xx satisfies the physical viability predicate IsViable x\text{IsViable } x.

theorem

IsViable x    xviableElems\text{IsViable } x \iff x \in \text{viableElems}

In the SU(5)SU(5) F-theory model, a configuration of quanta xx satisfies the physical viability predicate IsViable x\text{IsViable } x if and only if xx is an element of the explicitly enumerated multiset of viable quanta viableElems\text{viableElems}.

theorem

Every Viable Quanta Regenerates a Dangerous Coupling at Level 2

In the context of an SU(5)SU(5) F-theory model, for any configuration of quanta xx that satisfies the physical viability predicate IsViable(x)\text{IsViable}(x), the associated charge spectrum of xx (denoted toCharges(x)\text{toCharges}(x)) necessarily satisfies the condition YukawaGeneratesDangerousAtLevel(x,2)\text{YukawaGeneratesDangerousAtLevel}(x, 2). This means that the insertions of at most two Yukawa-related singlets are capable of regenerating a phenomenologically dangerous superpotential term. Mathematically, the intersection of the multiset of charges formed by summing up to two Yukawa-associated charges, Y2(x)Y_2(x), and the multiset of phenomenologically constraining superpotential charges, P(x)P(x), is non-empty: Y2(x)P(x) Y_2(x) \cap P(x) \neq \emptyset

theorem

IsViable x    (x.QuarticAnomalyCancellation    xSviable)\text{IsViable } x \implies (x.\text{QuarticAnomalyCancellation} \iff x \in S_{\text{viable}})

In the SU(5)SU(5) F-theory model, let xx be a configuration of quanta that is physically viable (i.e., satisfies the predicate IsViable x\text{IsViable } x). Then xx satisfies the quartic anomaly cancellation condition qHd2qHu2+iqi2Ni+3aqa2Na=0 q_{H_d}^2 - q_{H_u}^2 + \sum_{i} q_i^2 N_i + 3 \sum_{a} q_a^2 N_a = 0 if and only if xx is one of the following six configurations (defined by the Higgs charges qHd,qHuq_{H_d}, q_{H_u} and the sets of charge-flux pairs for the 5\overline{\mathbf{5}} and 10\mathbf{10} representations): 1. qHd=2,qHu=2,F={(1,1,2),(1,2,2)},T={(1,3,0)}q_{H_d} = 2, q_{H_u} = -2, \mathcal{F} = \{(-1, \langle 1, 2 \rangle), (1, \langle 2, -2 \rangle)\}, \mathcal{T} = \{(-1, \langle 3, 0 \rangle)\} 2. qHd=2,qHu=2,F={(1,0,2),(1,3,2)},T={(1,3,0)}q_{H_d} = 2, q_{H_u} = -2, \mathcal{F} = \{(-1, \langle 0, 2 \rangle), (1, \langle 3, -2 \rangle)\}, \mathcal{T} = \{(-1, \langle 3, 0 \rangle)\} 3. qHd=2,qHu=2,F={(1,2,2),(1,1,2)},T={(1,3,0)}q_{H_d} = -2, q_{H_u} = 2, \mathcal{F} = \{(-1, \langle 2, -2 \rangle), (1, \langle 1, 2 \rangle)\}, \mathcal{T} = \{(1, \langle 3, 0 \rangle)\} 4. qHd=2,qHu=2,F={(1,3,2),(1,0,2)},T={(1,3,0)}q_{H_d} = -2, q_{H_u} = 2, \mathcal{F} = \{(-1, \langle 3, -2 \rangle), (1, \langle 0, 2 \rangle)\}, \mathcal{T} = \{(1, \langle 3, 0 \rangle)\} 5. qHd=6,qHu=14,F={(9,1,2),(1,2,2)},T={(7,3,0)}q_{H_d} = 6, q_{H_u} = -14, \mathcal{F} = \{(-9, \langle 1, 2 \rangle), (1, \langle 2, -2 \rangle)\}, \mathcal{T} = \{(-7, \langle 3, 0 \rangle)\} 6. qHd=6,qHu=14,F={(9,0,2),(1,3,2)},T={(7,3,0)}q_{H_d} = 6, q_{H_u} = -14, \mathcal{F} = \{(-9, \langle 0, 2 \rangle), (1, \langle 3, -2 \rangle)\}, \mathcal{T} = \{(-7, \langle 3, 0 \rangle)\}

theorem

Z2\mathbb{Z}_2 Classification of Viable SU(5)SU(5) Charge Spectra

For any viable configuration of quanta xx in an SU(5)SU(5) F-theory model with integer U(1)U(1) charges, its charge spectrum reduced modulo 2 is one of the following three configurations in ChargeSpectrum(Z2)\text{ChargeSpectrum}(\mathbb{Z}_2): 1. qHd=0,qHu=0,Q5ˉ={1},Q10={1}\langle q_{H_d} = 0, q_{H_u} = 0, Q_{\bar{\mathbf{5}}} = \{1\}, Q_{\mathbf{10}} = \{1\} \rangle 2. qHd=0,qHu=0,Q5ˉ={0,1},Q10={1}\langle q_{H_d} = 0, q_{H_u} = 0, Q_{\bar{\mathbf{5}}} = \{0, 1\}, Q_{\mathbf{10}} = \{1\} \rangle 3. qHd=0,qHu=0,Q5ˉ={0,1},Q10={0}\langle q_{H_d} = 0, q_{H_u} = 0, Q_{\bar{\mathbf{5}}} = \{0, 1\}, Q_{\mathbf{10}} = \{0\} \rangle Here, qHdq_{H_d} and qHuq_{H_u} denote the U(1)U(1) charges of the Higgs fields HdH_d and HuH_u (mapped to Z2\mathbb{Z}_2), while Q5ˉQ_{\bar{\mathbf{5}}} and Q10Q_{\mathbf{10}} denote the sets of U(1)U(1) charges for the matter particles in the 5ˉ\bar{\mathbf{5}} and 10\mathbf{10} representations, respectively.