Imports
/- Copyright (c) 2024 Joseph Tooby-Smith. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Joseph Tooby-Smith -/ module public import Physlib.Particles.BeyondTheStandardModel.RHN.AnomalyCancellation.Permutations public import Physlib.QFT.AnomalyCancellation.GroupActions

ACC system for SM with RHN (without hypercharge).

We define the ACC system for the Standard Model (without hypercharge) with right-handed neutrinos.

@[expose] public section

The ACC system for the SM plus RHN.

@[simps!] def SM (n : ) : ACCSystem where toACCSystemCharges := SMνCharges n numberLinear := 3 linearACCs := fun i => match i with | 0 => @accGrav n | 1 => accSU2 | 2 => accSU3 numberQuadratic := 0 quadraticACCs := fun i Fin.elim0 i cubicACC := accCube
lemma gravSol (S : (SM n).LinSols) : accGrav S.val = 0 := S.linearSol 0, n:S:(SM n).LinSols0 < (SM n).numberLinear All goals completed! 🐙lemma SU2Sol (S : (SM n).LinSols) : accSU2 S.val = 0 := S.linearSol 1, n:S:(SM n).LinSols1 < (SM n).numberLinear All goals completed! 🐙lemma SU3Sol (S : (SM n).LinSols) : accSU3 S.val = 0 := S.linearSol 2, n:S:(SM n).LinSols2 < (SM n).numberLinear All goals completed! 🐙lemma cubeSol (S : (SM n).Sols) : accCube S.val = 0 := S.cubicSol

An element of charges which satisfies the linear ACCs gives us a element of LinSols.

def chargeToLinear (S : (SM n).Charges) (hGrav : accGrav S = 0) (hSU2 : accSU2 S = 0) (hSU3 : accSU3 S = 0) : (SM n).LinSols := S, n:S:(SM n).ChargeshGrav:accGrav S = 0hSU2:accSU2 S = 0hSU3:accSU3 S = 0 (i : Fin (SM n).numberLinear), ((SM n).linearACCs i) S = 0 n:S:(SM n).ChargeshGrav:accGrav S = 0hSU2:accSU2 S = 0hSU3:accSU3 S = 0i:Fin (SM n).numberLinear((SM n).linearACCs i) S = 0 match i with n:S:(SM n).ChargeshGrav:accGrav S = 0hSU2:accSU2 S = 0hSU3:accSU3 S = 0i:Fin (SM n).numberLinearisLt✝:0 < (SM n).numberLinear((SM n).linearACCs 0, isLt✝) S = 0 All goals completed! 🐙 n:S:(SM n).ChargeshGrav:accGrav S = 0hSU2:accSU2 S = 0hSU3:accSU3 S = 0i:Fin (SM n).numberLinearisLt✝:1 < (SM n).numberLinear((SM n).linearACCs 1, isLt✝) S = 0 All goals completed! 🐙 n:S:(SM n).ChargeshGrav:accGrav S = 0hSU2:accSU2 S = 0hSU3:accSU3 S = 0i:Fin (SM n).numberLinearisLt✝:2 < (SM n).numberLinear((SM n).linearACCs 2, isLt✝) S = 0 All goals completed! 🐙

An element of LinSols which satisfies the quadratic ACCs gives us a element of QuadSols.

def linearToQuad (S : (SM n).LinSols) : (SM n).QuadSols := S, fun i Fin.elim0 i

An element of QuadSols which satisfies the quadratic ACCs gives us a element of Sols.

def quadToAF (S : (SM n).QuadSols) (hc : accCube S.val = 0) : (SM n).Sols := S, hc

An element of charges which satisfies the linear and quadratic ACCs gives us a element of QuadSols.

def chargeToQuad (S : (SM n).Charges) (hGrav : accGrav S = 0) (hSU2 : accSU2 S = 0) (hSU3 : accSU3 S = 0) : (SM n).QuadSols := linearToQuad $ chargeToLinear S hGrav hSU2 hSU3

An element of charges which satisfies the linear, quadratic and cubic ACCs gives us a element of Sols.

def chargeToAF (S : (SM n).Charges) (hGrav : accGrav S = 0) (hSU2 : accSU2 S = 0) (hSU3 : accSU3 S = 0) (hc : accCube S = 0) : (SM n).Sols := quadToAF (chargeToQuad S hGrav hSU2 hSU3) hc

An element of LinSols which satisfies the quadratic and cubic ACCs gives us a element of Sols.

def linearToAF (S : (SM n).LinSols) (hc : accCube S.val = 0) : (SM n).Sols := quadToAF (linearToQuad S) hc

The permutations acting on the ACC system corresponding to the SM with RHN.

def perm (n : ) : ACCSystemGroupAction (SM n) where group := PermGroup n groupInst := inferInstance rep := repCharges linearInvariant := n✝:n: (i : Fin (SM n).numberLinear) (g : PermGroup n) (S : (SM n).Charges), ((SM n).linearACCs i) ((repCharges g) S) = ((SM n).linearACCs i) S n✝:n:i:Fin (SM n).numberLinear (g : PermGroup n) (S : (SM n).Charges), ((SM n).linearACCs i) ((repCharges g) S) = ((SM n).linearACCs i) S match i with n✝:n:i:Fin (SM n).numberLinearisLt✝:0 < (SM n).numberLinear (g : PermGroup n) (S : (SM n).Charges), ((SM n).linearACCs 0, isLt✝) ((repCharges g) S) = ((SM n).linearACCs 0, isLt✝) S All goals completed! 🐙 n✝:n:i:Fin (SM n).numberLinearisLt✝:1 < (SM n).numberLinear (g : PermGroup n) (S : (SM n).Charges), ((SM n).linearACCs 1, isLt✝) ((repCharges g) S) = ((SM n).linearACCs 1, isLt✝) S All goals completed! 🐙 n✝:n:i:Fin (SM n).numberLinearisLt✝:2 < (SM n).numberLinear (g : PermGroup n) (S : (SM n).Charges), ((SM n).linearACCs 2, isLt✝) ((repCharges g) S) = ((SM n).linearACCs 2, isLt✝) S All goals completed! 🐙 quadInvariant := n✝:n: (i : Fin (SM n).numberQuadratic) (g : PermGroup n) (S : (SM n).Charges), ((SM n).quadraticACCs i) ((repCharges g) S) = ((SM n).quadraticACCs i) S n✝:n:i:Fin (SM n).numberQuadratic (g : PermGroup n) (S : (SM n).Charges), ((SM n).quadraticACCs i) ((repCharges g) S) = ((SM n).quadraticACCs i) S n✝:n:i✝:Fin (SM n).numberQuadratici:Fin 0 (g : PermGroup n) (S : (SM n).Charges), ((SM n).quadraticACCs i) ((repCharges g) S) = ((SM n).quadraticACCs i) S All goals completed! 🐙 cubicInvariant := accCube_invariant