Kristjan Kannike

RGErun 2: Solving Renormalization Group Equations in Effective Field Theories

A heavy particle has only indirect influence on dynamics at energies below its mass m. Several such mass thresholds mi can exist, with a different effective field theory (EFT) in each interval. At a threshold, parameters of the theories below and above it are matched. Between thresholds, the dependence of parameters such as couplings, masses, or mixing angles is described by renormalization group equations (RGEs). (For reference, see e.g.Effective Field Theory” by Antonio Pich, or Ira Z. Rothstein’s “TASI Lectures on Effective Field Theories”.)

In the program, one can enter initial conditions and the RGEs in an intuitive format and easily choose which RGEs, which thresholds and matching conditions to include (it is useful for debugging). Possible degeneracy of mass thresholds is taken into account.

Vector, matrix, or tensor functions, and term-by-term multiplication of them in RGEs can be used. (As such, Mathematica allows scalar or matrix multiplication in differential equations, but not element-wise multiplication.)

How the Program Works

The run function is used to run up or down the energy scale. In the run, at first the thresholds are sorted and names of degenerate thresholds grouped together with their values. Vector, matrix, or tensor functions with right dimensions are constructed automatically according to the dimensions of their initial conditions. In each effective field theory between thresholds, the RGEs are given the list of the names of all thresholds below the current energy scale as an argument. The name of the threshold at hand can be used in the matching functions to select a right match at each threshold. At each threshold, each variable is given a new value; it can be used in matching condition. One can also use several run-ups and run-downs one after another for iteration. The solutions defined piece-wise in different intervals are put together in functions. If printOut->True, initial conditions for the couplings or variables, intermediate and matched results & parameters at each threshold are printed on the screen together with a plot of running variables.

Usage, Input Parameters & Initial Conditions

A good example is the running of the Standard Model gauge couplings at one-loop level.

  1. Once you have compied the package in your Mathematica library directory, you can import it with Needs["RGErun`"];
  2. Enter threshold values in GeV and the names of the thresholds to use, e.g. mt=173.34; mP=1.2*1019;
    thresholds={"mt" -> mt, "mP" -> mP};
    Their order is not relevant: threshold values are sorted and the names of degenerate thresholds are grouped together automatically.
  3. Initial conditions for functions as function definitions at some constant scale such as the mass of the top quark:g1[mt] = Sqrt[5/3] 0.35940;
    g2[mt] = 0.64754;
    g3[mt] = 1.1666;
  4. The right hand sides of RGEs (the so-called beta functions) as β[g1, "SM", _] := 1/(16 π2) 41/10 g13;
    β[g2, "SM", _] := 1/(16 π2) (-19/6) g23;
    β[g3, "SM", _] := 1/(16 π2) (-7) g33;
    Enter function names without arguments (such as g1, not g1[t]). The second argument to β is a string that specifies the model. The third argument stands for the thresholds of effective theories at which the RGEs can change; here the blank _ indicates that we consider the Standard Model up to any energy scale. The third argument can be given a name, e.g. thresholds. Use If or Which with MemberQ[thresholds, "threshold name"] to check whether the threshold with "threshold name" is in thresholds and choose between variants of the same RGE in different EFTs. To multiply a vector or matrix variable element-wise by a constant vector or matrix, use . (To add a constant vector or matrix, use .) Instead of IdentityMatrix[n], use 𝕀[n] (that is \[DoubleStruckCapitalI][n]). – You can also use the getPyrateRGEs function to import RGEs calculated with the PyR@TE or SARAH packages. For example, read in precalculated RGEs for the two Higgs doublet model: variables = getRGEs["RGEsOutput_numerics.m", returnVariables -> True, replaceNames -> {gSU2L -> g2, gSU3c -> g3, lambda1 -> λ1, lambda2 -> λ2, lambda3 -> λ3, lambda4 -> λ4, lambda5 -> λ5, lambda6 -> λ6, lambda7 -> λ7}]; If returnVariables is true, the getRGEs function returns the list of variables, and the replaceNames option lets you to change names of the variables defined in the original PyR@TE output.
  5. Matching conditions and the list of matching conditions to use as match[coupling][scale_, thresholds_, dir_] := matching condition; and matches={variable -> match[variable], };The name of the matching condition function could have a diffent form than match[coupling] (though it is a useful convention), but the argument structure has to be the same for each matching condition. Unlike for the RGEs, here the argument thresholds that a matching condition will receive is the name(s) list of the current threshold. dir will give the running direction which can be "up" or "down". Again you can use If or Which with MemberQ[thresholds, "threshold name"]&&up or MemberQ[thresholds, "threshold name"]&&down. Enter variable names with scale as argument (see the second example in the notebook).

    Note that if you use values of other variables, the result may depend on the order of matching.

  6. The variables to use as variables={g1, g2, g3}; Their beta functions will be included into the system of RGEs, they will be matched at the thresholds, if necessary, and their initial conditions and intermediate results printed out.
  7. Optionally you can define functions of variables to print out, e.g. masses as functions of mass matrices. A simple example would be massesE[scale_]:=v Eigenvalues[Ye[scale]]; where Ye is the matrix of Yukawa couplings of leptons and v is the Higgs vacuum expectation value. The list of these functions,funs={massesE}; has to be given to run as an argument.
  8. Finally, we are ready to run up or down: use run[thresholds, variables, "up", "model", matches -> matches, functions -> functions, printOut -> True, MaxSteps -> 106, WorkingPrecision -> MachinePrecision] for starting at low energy and going up, or change "up" to "down" to start at some high energy and go down. Lists of possible matchings and functions to pring out at each scale can be given as options. run has the option printOut (True by default) to print out the initial, run and matched values of variables and functions at the thresholds together with a plot of the running variables; note that run also takes any options of NDSolve. The options are used in the above example with their default values (the default of matches and functions is {}). After the running, the variables will be accessible as functions variable [μ] of the renormalisation scale μ. Their values outside the range of running will be set to their values at the initial and final scales (and their derivatives to zero) for definiteness.

For the running of the gauge couplings, we do not have any matchings or functions, so we will simply use

run[thresholds, variables, "up", "SM", {}, {}] The result is ——————————————————————————————————————————————————
RUNNING UP
Results @ mt = 173.34 GeV
Initial variables:
g1 = 0.463983, g2 = 0.64754, g3 = 1.1666
——————————————————————————————————————————————————
Results @ mP = 1.22 × 1019 GeV
Run variables:
g1 = 0.616534, g2 = 0.503751, g3 = 0.489476
——————————————————————————————————————————————————
Running of the gauge couplings in the Standard Model.

The run variables are functions of the renormalization scale μ in GeV: g1[1000]
0.468675

Their derivatives to all orders with respect to μ are also available: g1'[1000]
2.71634*10-6

The name of the model is an optional argument to the running variables: g1[1000, "SM"]
0.468675
to allow for easier comparison of different models, in which case the variable without the model name specified is given by the model that was evaluated last.