Data.Number.Erf:$cinvnormcdf from erf-2.0.0.0, A

Percentage Accurate: 99.6% → 99.8%
Time: 19.4s
Alternatives: 13
Speedup: 1.1×

Specification

?
\[\begin{array}{l} \\ \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (* (* (- (* x 0.5) y) (sqrt (* z 2.0))) (exp (/ (* t t) 2.0))))
double code(double x, double y, double z, double t) {
	return (((x * 0.5) - y) * sqrt((z * 2.0))) * exp(((t * t) / 2.0));
}
real(8) function code(x, y, z, t)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = (((x * 0.5d0) - y) * sqrt((z * 2.0d0))) * exp(((t * t) / 2.0d0))
end function
public static double code(double x, double y, double z, double t) {
	return (((x * 0.5) - y) * Math.sqrt((z * 2.0))) * Math.exp(((t * t) / 2.0));
}
def code(x, y, z, t):
	return (((x * 0.5) - y) * math.sqrt((z * 2.0))) * math.exp(((t * t) / 2.0))
function code(x, y, z, t)
	return Float64(Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(z * 2.0))) * exp(Float64(Float64(t * t) / 2.0)))
end
function tmp = code(x, y, z, t)
	tmp = (((x * 0.5) - y) * sqrt((z * 2.0))) * exp(((t * t) / 2.0));
end
code[x_, y_, z_, t_] := N[(N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(z * 2.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Exp[N[(N[(t * t), $MachinePrecision] / 2.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}}
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

The average percentage accuracy by input value. Horizontal axis shows value of an input variable; the variable is choosen in the title. Vertical axis is accuracy; higher is better. Red represent the original program, while blue represents Herbie's suggestion. These can be toggled with buttons below the plot. The line is an average while dots represent individual samples.

Accuracy vs Speed?

Herbie found 13 alternatives:

AlternativeAccuracySpeedup
The accuracy (vertical axis) and speed (horizontal axis) of each alternatives. Up and to the right is better. The red square shows the initial program, and each blue circle shows an alternative.The line shows the best available speed-accuracy tradeoffs.

Initial Program: 99.6% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (* (* (- (* x 0.5) y) (sqrt (* z 2.0))) (exp (/ (* t t) 2.0))))
double code(double x, double y, double z, double t) {
	return (((x * 0.5) - y) * sqrt((z * 2.0))) * exp(((t * t) / 2.0));
}
real(8) function code(x, y, z, t)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = (((x * 0.5d0) - y) * sqrt((z * 2.0d0))) * exp(((t * t) / 2.0d0))
end function
public static double code(double x, double y, double z, double t) {
	return (((x * 0.5) - y) * Math.sqrt((z * 2.0))) * Math.exp(((t * t) / 2.0));
}
def code(x, y, z, t):
	return (((x * 0.5) - y) * math.sqrt((z * 2.0))) * math.exp(((t * t) / 2.0))
function code(x, y, z, t)
	return Float64(Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(z * 2.0))) * exp(Float64(Float64(t * t) / 2.0)))
end
function tmp = code(x, y, z, t)
	tmp = (((x * 0.5) - y) * sqrt((z * 2.0))) * exp(((t * t) / 2.0));
end
code[x_, y_, z_, t_] := N[(N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(z * 2.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Exp[N[(N[(t * t), $MachinePrecision] / 2.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}}
\end{array}

Alternative 1: 99.8% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot e^{t \cdot t}\right)} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (* (- (* x 0.5) y) (sqrt (* 2.0 (* z (exp (* t t)))))))
double code(double x, double y, double z, double t) {
	return ((x * 0.5) - y) * sqrt((2.0 * (z * exp((t * t)))));
}
real(8) function code(x, y, z, t)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    real(8), intent (in) :: t
    code = ((x * 0.5d0) - y) * sqrt((2.0d0 * (z * exp((t * t)))))
end function
public static double code(double x, double y, double z, double t) {
	return ((x * 0.5) - y) * Math.sqrt((2.0 * (z * Math.exp((t * t)))));
}
def code(x, y, z, t):
	return ((x * 0.5) - y) * math.sqrt((2.0 * (z * math.exp((t * t)))))
function code(x, y, z, t)
	return Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(2.0 * Float64(z * exp(Float64(t * t))))))
end
function tmp = code(x, y, z, t)
	tmp = ((x * 0.5) - y) * sqrt((2.0 * (z * exp((t * t)))));
end
code[x_, y_, z_, t_] := N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(2.0 * N[(z * N[Exp[N[(t * t), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot e^{t \cdot t}\right)}
\end{array}
Derivation
  1. Initial program 99.8%

    \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
  2. Add Preprocessing
  3. Step-by-step derivation
    1. lift-*.f64N/A

      \[\leadsto \left(\left(\color{blue}{x \cdot \frac{1}{2}} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    2. lift--.f64N/A

      \[\leadsto \left(\color{blue}{\left(x \cdot \frac{1}{2} - y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    3. lift-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    4. lift-sqrt.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    5. lift-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{\color{blue}{t \cdot t}}{2}} \]
    6. lift-/.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\color{blue}{\frac{t \cdot t}{2}}} \]
    7. lift-exp.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{e^{\frac{t \cdot t}{2}}} \]
    8. associate-*l*N/A

      \[\leadsto \color{blue}{\left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\frac{t \cdot t}{2}}\right)} \]
    9. lower-*.f64N/A

      \[\leadsto \color{blue}{\left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\frac{t \cdot t}{2}}\right)} \]
    10. lift-sqrt.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\color{blue}{\sqrt{z \cdot 2}} \cdot e^{\frac{t \cdot t}{2}}\right) \]
    11. lift-exp.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot \color{blue}{e^{\frac{t \cdot t}{2}}}\right) \]
    12. lift-/.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\color{blue}{\frac{t \cdot t}{2}}}\right) \]
    13. exp-sqrtN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot \color{blue}{\sqrt{e^{t \cdot t}}}\right) \]
    14. sqrt-unprodN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{\left(z \cdot 2\right) \cdot e^{t \cdot t}}} \]
    15. lower-sqrt.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{\left(z \cdot 2\right) \cdot e^{t \cdot t}}} \]
    16. lift-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\left(z \cdot 2\right)} \cdot e^{t \cdot t}} \]
    17. *-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\left(2 \cdot z\right)} \cdot e^{t \cdot t}} \]
    18. associate-*l*N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
    19. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
    20. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \color{blue}{\left(z \cdot e^{t \cdot t}\right)}} \]
    21. lower-exp.f6499.8

      \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \color{blue}{e^{t \cdot t}}\right)} \]
  4. Applied egg-rr99.8%

    \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
  5. Add Preprocessing

Alternative 2: 94.5% accurate, 2.2× speedup?

\[\begin{array}{l} \\ \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, 0.16666666666666666, 0.5\right), 1\right), 1\right)\right)} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (*
  (- (* x 0.5) y)
  (sqrt
   (*
    2.0
    (*
     z
     (fma
      (* t t)
      (fma (* t t) (fma (* t t) 0.16666666666666666 0.5) 1.0)
      1.0))))))
double code(double x, double y, double z, double t) {
	return ((x * 0.5) - y) * sqrt((2.0 * (z * fma((t * t), fma((t * t), fma((t * t), 0.16666666666666666, 0.5), 1.0), 1.0))));
}
function code(x, y, z, t)
	return Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(2.0 * Float64(z * fma(Float64(t * t), fma(Float64(t * t), fma(Float64(t * t), 0.16666666666666666, 0.5), 1.0), 1.0)))))
end
code[x_, y_, z_, t_] := N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(2.0 * N[(z * N[(N[(t * t), $MachinePrecision] * N[(N[(t * t), $MachinePrecision] * N[(N[(t * t), $MachinePrecision] * 0.16666666666666666 + 0.5), $MachinePrecision] + 1.0), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, 0.16666666666666666, 0.5\right), 1\right), 1\right)\right)}
\end{array}
Derivation
  1. Initial program 99.8%

    \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
  2. Add Preprocessing
  3. Step-by-step derivation
    1. lift-*.f64N/A

      \[\leadsto \left(\left(\color{blue}{x \cdot \frac{1}{2}} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    2. lift--.f64N/A

      \[\leadsto \left(\color{blue}{\left(x \cdot \frac{1}{2} - y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    3. lift-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    4. lift-sqrt.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    5. lift-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{\color{blue}{t \cdot t}}{2}} \]
    6. lift-/.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\color{blue}{\frac{t \cdot t}{2}}} \]
    7. lift-exp.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{e^{\frac{t \cdot t}{2}}} \]
    8. associate-*l*N/A

      \[\leadsto \color{blue}{\left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\frac{t \cdot t}{2}}\right)} \]
    9. lower-*.f64N/A

      \[\leadsto \color{blue}{\left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\frac{t \cdot t}{2}}\right)} \]
    10. lift-sqrt.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\color{blue}{\sqrt{z \cdot 2}} \cdot e^{\frac{t \cdot t}{2}}\right) \]
    11. lift-exp.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot \color{blue}{e^{\frac{t \cdot t}{2}}}\right) \]
    12. lift-/.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\color{blue}{\frac{t \cdot t}{2}}}\right) \]
    13. exp-sqrtN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot \color{blue}{\sqrt{e^{t \cdot t}}}\right) \]
    14. sqrt-unprodN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{\left(z \cdot 2\right) \cdot e^{t \cdot t}}} \]
    15. lower-sqrt.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{\left(z \cdot 2\right) \cdot e^{t \cdot t}}} \]
    16. lift-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\left(z \cdot 2\right)} \cdot e^{t \cdot t}} \]
    17. *-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\left(2 \cdot z\right)} \cdot e^{t \cdot t}} \]
    18. associate-*l*N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
    19. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
    20. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \color{blue}{\left(z \cdot e^{t \cdot t}\right)}} \]
    21. lower-exp.f6499.8

      \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \color{blue}{e^{t \cdot t}}\right)} \]
  4. Applied egg-rr99.8%

    \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
  5. Taylor expanded in t around 0

    \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \color{blue}{\left(1 + {t}^{2} \cdot \left(1 + {t}^{2} \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot {t}^{2}\right)\right)\right)}\right)} \]
  6. Step-by-step derivation
    1. +-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \color{blue}{\left({t}^{2} \cdot \left(1 + {t}^{2} \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot {t}^{2}\right)\right) + 1\right)}\right)} \]
    2. lower-fma.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \color{blue}{\mathsf{fma}\left({t}^{2}, 1 + {t}^{2} \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot {t}^{2}\right), 1\right)}\right)} \]
    3. unpow2N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(\color{blue}{t \cdot t}, 1 + {t}^{2} \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot {t}^{2}\right), 1\right)\right)} \]
    4. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(\color{blue}{t \cdot t}, 1 + {t}^{2} \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot {t}^{2}\right), 1\right)\right)} \]
    5. +-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{{t}^{2} \cdot \left(\frac{1}{2} + \frac{1}{6} \cdot {t}^{2}\right) + 1}, 1\right)\right)} \]
    6. lower-fma.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{2} + \frac{1}{6} \cdot {t}^{2}, 1\right)}, 1\right)\right)} \]
    7. unpow2N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{2} + \frac{1}{6} \cdot {t}^{2}, 1\right), 1\right)\right)} \]
    8. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{2} + \frac{1}{6} \cdot {t}^{2}, 1\right), 1\right)\right)} \]
    9. +-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{\frac{1}{6} \cdot {t}^{2} + \frac{1}{2}}, 1\right), 1\right)\right)} \]
    10. *-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{{t}^{2} \cdot \frac{1}{6}} + \frac{1}{2}, 1\right), 1\right)\right)} \]
    11. lower-fma.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{6}, \frac{1}{2}\right)}, 1\right), 1\right)\right)} \]
    12. unpow2N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{6}, \frac{1}{2}\right), 1\right), 1\right)\right)} \]
    13. lower-*.f6496.9

      \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, 0.16666666666666666, 0.5\right), 1\right), 1\right)\right)} \]
  7. Simplified96.9%

    \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \color{blue}{\mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, 0.16666666666666666, 0.5\right), 1\right), 1\right)}\right)} \]
  8. Add Preprocessing

Alternative 3: 94.8% accurate, 2.2× speedup?

\[\begin{array}{l} \\ \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, 0.020833333333333332, 0.125\right), 0.5\right), 1\right) \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (*
  (* (- (* x 0.5) y) (sqrt (* 2.0 z)))
  (fma
   (* t t)
   (fma (* t t) (fma (* t t) 0.020833333333333332 0.125) 0.5)
   1.0)))
double code(double x, double y, double z, double t) {
	return (((x * 0.5) - y) * sqrt((2.0 * z))) * fma((t * t), fma((t * t), fma((t * t), 0.020833333333333332, 0.125), 0.5), 1.0);
}
function code(x, y, z, t)
	return Float64(Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(2.0 * z))) * fma(Float64(t * t), fma(Float64(t * t), fma(Float64(t * t), 0.020833333333333332, 0.125), 0.5), 1.0))
end
code[x_, y_, z_, t_] := N[(N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(t * t), $MachinePrecision] * N[(N[(t * t), $MachinePrecision] * N[(N[(t * t), $MachinePrecision] * 0.020833333333333332 + 0.125), $MachinePrecision] + 0.5), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, 0.020833333333333332, 0.125\right), 0.5\right), 1\right)
\end{array}
Derivation
  1. Initial program 99.8%

    \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
  2. Add Preprocessing
  3. Taylor expanded in t around 0

    \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\left(1 + {t}^{2} \cdot \left(\frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right)\right)\right)} \]
  4. Step-by-step derivation
    1. +-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\left({t}^{2} \cdot \left(\frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right)\right) + 1\right)} \]
    2. lower-fma.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right), 1\right)} \]
    3. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right), 1\right) \]
    4. lower-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right), 1\right) \]
    5. +-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{{t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right) + \frac{1}{2}}, 1\right) \]
    6. lower-fma.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{8} + \frac{1}{48} \cdot {t}^{2}, \frac{1}{2}\right)}, 1\right) \]
    7. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{8} + \frac{1}{48} \cdot {t}^{2}, \frac{1}{2}\right), 1\right) \]
    8. lower-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{8} + \frac{1}{48} \cdot {t}^{2}, \frac{1}{2}\right), 1\right) \]
    9. +-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{\frac{1}{48} \cdot {t}^{2} + \frac{1}{8}}, \frac{1}{2}\right), 1\right) \]
    10. *-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{{t}^{2} \cdot \frac{1}{48}} + \frac{1}{8}, \frac{1}{2}\right), 1\right) \]
    11. lower-fma.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{48}, \frac{1}{8}\right)}, \frac{1}{2}\right), 1\right) \]
    12. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{48}, \frac{1}{8}\right), \frac{1}{2}\right), 1\right) \]
    13. lower-*.f6496.2

      \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, 0.020833333333333332, 0.125\right), 0.5\right), 1\right) \]
  5. Simplified96.2%

    \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, 0.020833333333333332, 0.125\right), 0.5\right), 1\right)} \]
  6. Final simplification96.2%

    \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, 0.020833333333333332, 0.125\right), 0.5\right), 1\right) \]
  7. Add Preprocessing

Alternative 4: 94.5% accurate, 2.3× speedup?

\[\begin{array}{l} \\ \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, t \cdot \left(t \cdot \left(\left(t \cdot t\right) \cdot 0.020833333333333332\right)\right), 1\right) \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (*
  (* (- (* x 0.5) y) (sqrt (* 2.0 z)))
  (fma (* t t) (* t (* t (* (* t t) 0.020833333333333332))) 1.0)))
double code(double x, double y, double z, double t) {
	return (((x * 0.5) - y) * sqrt((2.0 * z))) * fma((t * t), (t * (t * ((t * t) * 0.020833333333333332))), 1.0);
}
function code(x, y, z, t)
	return Float64(Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(2.0 * z))) * fma(Float64(t * t), Float64(t * Float64(t * Float64(Float64(t * t) * 0.020833333333333332))), 1.0))
end
code[x_, y_, z_, t_] := N[(N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(t * t), $MachinePrecision] * N[(t * N[(t * N[(N[(t * t), $MachinePrecision] * 0.020833333333333332), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, t \cdot \left(t \cdot \left(\left(t \cdot t\right) \cdot 0.020833333333333332\right)\right), 1\right)
\end{array}
Derivation
  1. Initial program 99.8%

    \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
  2. Add Preprocessing
  3. Taylor expanded in t around 0

    \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\left(1 + {t}^{2} \cdot \left(\frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right)\right)\right)} \]
  4. Step-by-step derivation
    1. +-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\left({t}^{2} \cdot \left(\frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right)\right) + 1\right)} \]
    2. lower-fma.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right), 1\right)} \]
    3. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right), 1\right) \]
    4. lower-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{2} + {t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right), 1\right) \]
    5. +-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{{t}^{2} \cdot \left(\frac{1}{8} + \frac{1}{48} \cdot {t}^{2}\right) + \frac{1}{2}}, 1\right) \]
    6. lower-fma.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{8} + \frac{1}{48} \cdot {t}^{2}, \frac{1}{2}\right)}, 1\right) \]
    7. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{8} + \frac{1}{48} \cdot {t}^{2}, \frac{1}{2}\right), 1\right) \]
    8. lower-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{8} + \frac{1}{48} \cdot {t}^{2}, \frac{1}{2}\right), 1\right) \]
    9. +-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{\frac{1}{48} \cdot {t}^{2} + \frac{1}{8}}, \frac{1}{2}\right), 1\right) \]
    10. *-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{{t}^{2} \cdot \frac{1}{48}} + \frac{1}{8}, \frac{1}{2}\right), 1\right) \]
    11. lower-fma.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{48}, \frac{1}{8}\right)}, \frac{1}{2}\right), 1\right) \]
    12. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{48}, \frac{1}{8}\right), \frac{1}{2}\right), 1\right) \]
    13. lower-*.f6496.2

      \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(\color{blue}{t \cdot t}, 0.020833333333333332, 0.125\right), 0.5\right), 1\right) \]
  5. Simplified96.2%

    \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t \cdot t, 0.020833333333333332, 0.125\right), 0.5\right), 1\right)} \]
  6. Taylor expanded in t around inf

    \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\frac{1}{48} \cdot {t}^{4}}, 1\right) \]
  7. Step-by-step derivation
    1. metadata-evalN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \frac{1}{48} \cdot {t}^{\color{blue}{\left(2 \cdot 2\right)}}, 1\right) \]
    2. pow-sqrN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \frac{1}{48} \cdot \color{blue}{\left({t}^{2} \cdot {t}^{2}\right)}, 1\right) \]
    3. associate-*l*N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\left(\frac{1}{48} \cdot {t}^{2}\right) \cdot {t}^{2}}, 1\right) \]
    4. *-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{{t}^{2} \cdot \left(\frac{1}{48} \cdot {t}^{2}\right)}, 1\right) \]
    5. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\left(t \cdot t\right)} \cdot \left(\frac{1}{48} \cdot {t}^{2}\right), 1\right) \]
    6. associate-*l*N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{t \cdot \left(t \cdot \left(\frac{1}{48} \cdot {t}^{2}\right)\right)}, 1\right) \]
    7. lower-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{t \cdot \left(t \cdot \left(\frac{1}{48} \cdot {t}^{2}\right)\right)}, 1\right) \]
    8. lower-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, t \cdot \color{blue}{\left(t \cdot \left(\frac{1}{48} \cdot {t}^{2}\right)\right)}, 1\right) \]
    9. *-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, t \cdot \left(t \cdot \color{blue}{\left({t}^{2} \cdot \frac{1}{48}\right)}\right), 1\right) \]
    10. lower-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, t \cdot \left(t \cdot \color{blue}{\left({t}^{2} \cdot \frac{1}{48}\right)}\right), 1\right) \]
    11. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, t \cdot \left(t \cdot \left(\color{blue}{\left(t \cdot t\right)} \cdot \frac{1}{48}\right)\right), 1\right) \]
    12. lower-*.f6496.0

      \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, t \cdot \left(t \cdot \left(\color{blue}{\left(t \cdot t\right)} \cdot 0.020833333333333332\right)\right), 1\right) \]
  8. Simplified96.0%

    \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{t \cdot \left(t \cdot \left(\left(t \cdot t\right) \cdot 0.020833333333333332\right)\right)}, 1\right) \]
  9. Final simplification96.0%

    \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, t \cdot \left(t \cdot \left(\left(t \cdot t\right) \cdot 0.020833333333333332\right)\right), 1\right) \]
  10. Add Preprocessing

Alternative 5: 92.5% accurate, 2.7× speedup?

\[\begin{array}{l} \\ \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t, t \cdot 0.125, 0.5\right), 1\right) \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (*
  (* (- (* x 0.5) y) (sqrt (* 2.0 z)))
  (fma (* t t) (fma t (* t 0.125) 0.5) 1.0)))
double code(double x, double y, double z, double t) {
	return (((x * 0.5) - y) * sqrt((2.0 * z))) * fma((t * t), fma(t, (t * 0.125), 0.5), 1.0);
}
function code(x, y, z, t)
	return Float64(Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(2.0 * z))) * fma(Float64(t * t), fma(t, Float64(t * 0.125), 0.5), 1.0))
end
code[x_, y_, z_, t_] := N[(N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(N[(t * t), $MachinePrecision] * N[(t * N[(t * 0.125), $MachinePrecision] + 0.5), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t, t \cdot 0.125, 0.5\right), 1\right)
\end{array}
Derivation
  1. Initial program 99.8%

    \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
  2. Add Preprocessing
  3. Taylor expanded in t around 0

    \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\left(1 + {t}^{2} \cdot \left(\frac{1}{2} + \frac{1}{8} \cdot {t}^{2}\right)\right)} \]
  4. Step-by-step derivation
    1. +-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\left({t}^{2} \cdot \left(\frac{1}{2} + \frac{1}{8} \cdot {t}^{2}\right) + 1\right)} \]
    2. lower-fma.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\mathsf{fma}\left({t}^{2}, \frac{1}{2} + \frac{1}{8} \cdot {t}^{2}, 1\right)} \]
    3. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{2} + \frac{1}{8} \cdot {t}^{2}, 1\right) \]
    4. lower-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(\color{blue}{t \cdot t}, \frac{1}{2} + \frac{1}{8} \cdot {t}^{2}, 1\right) \]
    5. +-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\frac{1}{8} \cdot {t}^{2} + \frac{1}{2}}, 1\right) \]
    6. unpow2N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \frac{1}{8} \cdot \color{blue}{\left(t \cdot t\right)} + \frac{1}{2}, 1\right) \]
    7. associate-*r*N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\left(\frac{1}{8} \cdot t\right) \cdot t} + \frac{1}{2}, 1\right) \]
    8. *-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{t \cdot \left(\frac{1}{8} \cdot t\right)} + \frac{1}{2}, 1\right) \]
    9. lower-fma.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \color{blue}{\mathsf{fma}\left(t, \frac{1}{8} \cdot t, \frac{1}{2}\right)}, 1\right) \]
    10. *-commutativeN/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t, \color{blue}{t \cdot \frac{1}{8}}, \frac{1}{2}\right), 1\right) \]
    11. lower-*.f6493.2

      \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t, \color{blue}{t \cdot 0.125}, 0.5\right), 1\right) \]
  5. Simplified93.2%

    \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t, t \cdot 0.125, 0.5\right), 1\right)} \]
  6. Final simplification93.2%

    \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(t \cdot t, \mathsf{fma}\left(t, t \cdot 0.125, 0.5\right), 1\right) \]
  7. Add Preprocessing

Alternative 6: 90.1% accurate, 2.9× speedup?

\[\begin{array}{l} \\ \left(x \cdot 0.5 - y\right) \cdot \sqrt{\mathsf{fma}\left(t \cdot t, z \cdot \mathsf{fma}\left(t, t, 2\right), 2 \cdot z\right)} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (* (- (* x 0.5) y) (sqrt (fma (* t t) (* z (fma t t 2.0)) (* 2.0 z)))))
double code(double x, double y, double z, double t) {
	return ((x * 0.5) - y) * sqrt(fma((t * t), (z * fma(t, t, 2.0)), (2.0 * z)));
}
function code(x, y, z, t)
	return Float64(Float64(Float64(x * 0.5) - y) * sqrt(fma(Float64(t * t), Float64(z * fma(t, t, 2.0)), Float64(2.0 * z))))
end
code[x_, y_, z_, t_] := N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(N[(t * t), $MachinePrecision] * N[(z * N[(t * t + 2.0), $MachinePrecision]), $MachinePrecision] + N[(2.0 * z), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(x \cdot 0.5 - y\right) \cdot \sqrt{\mathsf{fma}\left(t \cdot t, z \cdot \mathsf{fma}\left(t, t, 2\right), 2 \cdot z\right)}
\end{array}
Derivation
  1. Initial program 99.8%

    \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
  2. Add Preprocessing
  3. Step-by-step derivation
    1. lift-*.f64N/A

      \[\leadsto \left(\left(\color{blue}{x \cdot \frac{1}{2}} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    2. lift--.f64N/A

      \[\leadsto \left(\color{blue}{\left(x \cdot \frac{1}{2} - y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    3. lift-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    4. lift-sqrt.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    5. lift-*.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{\color{blue}{t \cdot t}}{2}} \]
    6. lift-/.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\color{blue}{\frac{t \cdot t}{2}}} \]
    7. lift-exp.f64N/A

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{e^{\frac{t \cdot t}{2}}} \]
    8. associate-*l*N/A

      \[\leadsto \color{blue}{\left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\frac{t \cdot t}{2}}\right)} \]
    9. lower-*.f64N/A

      \[\leadsto \color{blue}{\left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\frac{t \cdot t}{2}}\right)} \]
    10. lift-sqrt.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\color{blue}{\sqrt{z \cdot 2}} \cdot e^{\frac{t \cdot t}{2}}\right) \]
    11. lift-exp.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot \color{blue}{e^{\frac{t \cdot t}{2}}}\right) \]
    12. lift-/.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\color{blue}{\frac{t \cdot t}{2}}}\right) \]
    13. exp-sqrtN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot \color{blue}{\sqrt{e^{t \cdot t}}}\right) \]
    14. sqrt-unprodN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{\left(z \cdot 2\right) \cdot e^{t \cdot t}}} \]
    15. lower-sqrt.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{\left(z \cdot 2\right) \cdot e^{t \cdot t}}} \]
    16. lift-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\left(z \cdot 2\right)} \cdot e^{t \cdot t}} \]
    17. *-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\left(2 \cdot z\right)} \cdot e^{t \cdot t}} \]
    18. associate-*l*N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
    19. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
    20. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \color{blue}{\left(z \cdot e^{t \cdot t}\right)}} \]
    21. lower-exp.f6499.8

      \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \color{blue}{e^{t \cdot t}}\right)} \]
  4. Applied egg-rr99.8%

    \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
  5. Taylor expanded in t around 0

    \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot z + {t}^{2} \cdot \left(2 \cdot z + {t}^{2} \cdot z\right)}} \]
  6. Step-by-step derivation
    1. +-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{{t}^{2} \cdot \left(2 \cdot z + {t}^{2} \cdot z\right) + 2 \cdot z}} \]
    2. lower-fma.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left({t}^{2}, 2 \cdot z + {t}^{2} \cdot z, 2 \cdot z\right)}} \]
    3. unpow2N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{t \cdot t}, 2 \cdot z + {t}^{2} \cdot z, 2 \cdot z\right)} \]
    4. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\mathsf{fma}\left(\color{blue}{t \cdot t}, 2 \cdot z + {t}^{2} \cdot z, 2 \cdot z\right)} \]
    5. distribute-rgt-outN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\mathsf{fma}\left(t \cdot t, \color{blue}{z \cdot \left(2 + {t}^{2}\right)}, 2 \cdot z\right)} \]
    6. lower-*.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\mathsf{fma}\left(t \cdot t, \color{blue}{z \cdot \left(2 + {t}^{2}\right)}, 2 \cdot z\right)} \]
    7. +-commutativeN/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\mathsf{fma}\left(t \cdot t, z \cdot \color{blue}{\left({t}^{2} + 2\right)}, 2 \cdot z\right)} \]
    8. unpow2N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\mathsf{fma}\left(t \cdot t, z \cdot \left(\color{blue}{t \cdot t} + 2\right), 2 \cdot z\right)} \]
    9. lower-fma.f64N/A

      \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\mathsf{fma}\left(t \cdot t, z \cdot \color{blue}{\mathsf{fma}\left(t, t, 2\right)}, 2 \cdot z\right)} \]
    10. lower-*.f6491.6

      \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{\mathsf{fma}\left(t \cdot t, z \cdot \mathsf{fma}\left(t, t, 2\right), \color{blue}{2 \cdot z}\right)} \]
  7. Simplified91.6%

    \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{\color{blue}{\mathsf{fma}\left(t \cdot t, z \cdot \mathsf{fma}\left(t, t, 2\right), 2 \cdot z\right)}} \]
  8. Add Preprocessing

Alternative 7: 75.6% accurate, 3.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \sqrt{2 \cdot z}\\ \mathbf{if}\;t \cdot t \leq 6.2 \cdot 10^{+55}:\\ \;\;\;\;\left(x \cdot 0.5 - y\right) \cdot t\_1\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot t\_1\right) \cdot \left(-y\right)\\ \end{array} \end{array} \]
(FPCore (x y z t)
 :precision binary64
 (let* ((t_1 (sqrt (* 2.0 z))))
   (if (<= (* t t) 6.2e+55)
     (* (- (* x 0.5) y) t_1)
     (* (* (fma 0.5 (* t t) 1.0) t_1) (- y)))))
double code(double x, double y, double z, double t) {
	double t_1 = sqrt((2.0 * z));
	double tmp;
	if ((t * t) <= 6.2e+55) {
		tmp = ((x * 0.5) - y) * t_1;
	} else {
		tmp = (fma(0.5, (t * t), 1.0) * t_1) * -y;
	}
	return tmp;
}
function code(x, y, z, t)
	t_1 = sqrt(Float64(2.0 * z))
	tmp = 0.0
	if (Float64(t * t) <= 6.2e+55)
		tmp = Float64(Float64(Float64(x * 0.5) - y) * t_1);
	else
		tmp = Float64(Float64(fma(0.5, Float64(t * t), 1.0) * t_1) * Float64(-y));
	end
	return tmp
end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[(t * t), $MachinePrecision], 6.2e+55], N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * t$95$1), $MachinePrecision], N[(N[(N[(0.5 * N[(t * t), $MachinePrecision] + 1.0), $MachinePrecision] * t$95$1), $MachinePrecision] * (-y)), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \sqrt{2 \cdot z}\\
\mathbf{if}\;t \cdot t \leq 6.2 \cdot 10^{+55}:\\
\;\;\;\;\left(x \cdot 0.5 - y\right) \cdot t\_1\\

\mathbf{else}:\\
\;\;\;\;\left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot t\_1\right) \cdot \left(-y\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 t t) < 6.19999999999999987e55

    1. Initial program 99.7%

      \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
    2. Add Preprocessing
    3. Taylor expanded in t around 0

      \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
    4. Step-by-step derivation
      1. Simplified93.7%

        \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
      2. Step-by-step derivation
        1. lift-*.f64N/A

          \[\leadsto \left(\left(\color{blue}{x \cdot \frac{1}{2}} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
        2. lift--.f64N/A

          \[\leadsto \left(\color{blue}{\left(x \cdot \frac{1}{2} - y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
        3. lift-*.f64N/A

          \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot 1 \]
        4. lift-sqrt.f64N/A

          \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot 1 \]
        5. lift-*.f64N/A

          \[\leadsto \color{blue}{\left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right)} \cdot 1 \]
        6. *-rgt-identity93.7

          \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}} \]
        7. lift-*.f64N/A

          \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}} \]
        8. *-commutativeN/A

          \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
        9. lower-*.f6493.7

          \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
      3. Applied egg-rr93.7%

        \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}} \]

      if 6.19999999999999987e55 < (*.f64 t t)

      1. Initial program 100.0%

        \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
      2. Add Preprocessing
      3. Taylor expanded in t around 0

        \[\leadsto \color{blue}{\frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right) + \sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)} \]
      4. Step-by-step derivation
        1. +-commutativeN/A

          \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) + \frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right)} \]
        2. *-commutativeN/A

          \[\leadsto \color{blue}{\left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) \cdot \sqrt{z}} + \frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right) \]
        3. associate-*r*N/A

          \[\leadsto \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) \cdot \sqrt{z} + \color{blue}{\left(\frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right) \cdot \sqrt{z}} \]
        4. distribute-rgt-outN/A

          \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right)} \]
        5. lower-*.f64N/A

          \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right)} \]
        6. lower-sqrt.f64N/A

          \[\leadsto \color{blue}{\sqrt{z}} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right) \]
        7. associate-*r*N/A

          \[\leadsto \sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \color{blue}{\left(\frac{1}{2} \cdot {t}^{2}\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)}\right) \]
        8. distribute-rgt1-inN/A

          \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\left(\frac{1}{2} \cdot {t}^{2} + 1\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)} \]
        9. +-commutativeN/A

          \[\leadsto \sqrt{z} \cdot \left(\color{blue}{\left(1 + \frac{1}{2} \cdot {t}^{2}\right)} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \]
        10. lower-*.f64N/A

          \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\left(1 + \frac{1}{2} \cdot {t}^{2}\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)} \]
      5. Simplified80.8%

        \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(\sqrt{2} \cdot \left(0.5 \cdot x - y\right)\right)\right)} \]
      6. Taylor expanded in x around 0

        \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(-1 \cdot \left(y \cdot \sqrt{2}\right)\right)}\right) \]
      7. Step-by-step derivation
        1. mul-1-negN/A

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
        2. lower-neg.f64N/A

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
        3. lower-*.f64N/A

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right)\right) \]
        4. lower-sqrt.f6455.0

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(-y \cdot \color{blue}{\sqrt{2}}\right)\right) \]
      8. Simplified55.0%

        \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \color{blue}{\left(-y \cdot \sqrt{2}\right)}\right) \]
      9. Step-by-step derivation
        1. lift-sqrt.f64N/A

          \[\leadsto \color{blue}{\sqrt{z}} \cdot \left(\left(\frac{1}{2} \cdot \left(t \cdot t\right) + 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
        2. lift-*.f64N/A

          \[\leadsto \sqrt{z} \cdot \left(\left(\frac{1}{2} \cdot \color{blue}{\left(t \cdot t\right)} + 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
        3. lift-fma.f64N/A

          \[\leadsto \sqrt{z} \cdot \left(\color{blue}{\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right)} \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
        4. lift-sqrt.f64N/A

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \color{blue}{\sqrt{2}}\right)\right)\right) \]
        5. lift-*.f64N/A

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right)\right) \]
        6. lift-neg.f64N/A

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
        7. lift-*.f64N/A

          \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right)} \]
        8. *-commutativeN/A

          \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \cdot \sqrt{z}} \]
        9. lift-*.f64N/A

          \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right)} \cdot \sqrt{z} \]
        10. associate-*l*N/A

          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right) \cdot \sqrt{z}\right)} \]
        11. lift-neg.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)} \cdot \sqrt{z}\right) \]
        12. lift-*.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right) \cdot \sqrt{z}\right) \]
        13. distribute-lft-neg-inN/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2}\right)} \cdot \sqrt{z}\right) \]
        14. lift-neg.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} \cdot \sqrt{2}\right) \cdot \sqrt{z}\right) \]
        15. associate-*r*N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\sqrt{2} \cdot \sqrt{z}\right)\right)} \]
        16. *-commutativeN/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \color{blue}{\left(\sqrt{z} \cdot \sqrt{2}\right)}\right) \]
        17. lift-sqrt.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\color{blue}{\sqrt{z}} \cdot \sqrt{2}\right)\right) \]
        18. lift-sqrt.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\sqrt{z} \cdot \color{blue}{\sqrt{2}}\right)\right) \]
      10. Applied egg-rr52.3%

        \[\leadsto \color{blue}{\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(\left(-y\right) \cdot \sqrt{2 \cdot z}\right)} \]
      11. Step-by-step derivation
        1. lift-*.f64N/A

          \[\leadsto \left(\frac{1}{2} \cdot \color{blue}{\left(t \cdot t\right)} + 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2 \cdot z}\right) \]
        2. lift-fma.f64N/A

          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right)} \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2 \cdot z}\right) \]
        3. lift-neg.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} \cdot \sqrt{2 \cdot z}\right) \]
        4. lift-*.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{\color{blue}{2 \cdot z}}\right) \]
        5. lift-sqrt.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \color{blue}{\sqrt{2 \cdot z}}\right) \]
        6. *-commutativeN/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\sqrt{2 \cdot z} \cdot \left(\mathsf{neg}\left(y\right)\right)\right)} \]
        7. lift-*.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\sqrt{\color{blue}{2 \cdot z}} \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \]
        8. *-commutativeN/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\sqrt{\color{blue}{z \cdot 2}} \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \]
        9. lift-*.f64N/A

          \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\sqrt{\color{blue}{z \cdot 2}} \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \]
        10. associate-*r*N/A

          \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \sqrt{z \cdot 2}\right) \cdot \left(\mathsf{neg}\left(y\right)\right)} \]
        11. lower-*.f64N/A

          \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \sqrt{z \cdot 2}\right) \cdot \left(\mathsf{neg}\left(y\right)\right)} \]
        12. lower-*.f6455.0

          \[\leadsto \color{blue}{\left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \sqrt{z \cdot 2}\right)} \cdot \left(-y\right) \]
        13. lift-*.f64N/A

          \[\leadsto \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot \left(\mathsf{neg}\left(y\right)\right) \]
        14. *-commutativeN/A

          \[\leadsto \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \sqrt{\color{blue}{2 \cdot z}}\right) \cdot \left(\mathsf{neg}\left(y\right)\right) \]
        15. lift-*.f6455.0

          \[\leadsto \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \sqrt{\color{blue}{2 \cdot z}}\right) \cdot \left(-y\right) \]
      12. Applied egg-rr55.0%

        \[\leadsto \color{blue}{\left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \sqrt{2 \cdot z}\right) \cdot \left(-y\right)} \]
    5. Recombined 2 regimes into one program.
    6. Add Preprocessing

    Alternative 8: 75.7% accurate, 3.0× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_1 := \sqrt{2 \cdot z}\\ \mathbf{if}\;t \cdot t \leq 3.9 \cdot 10^{+55}:\\ \;\;\;\;\left(x \cdot 0.5 - y\right) \cdot t\_1\\ \mathbf{else}:\\ \;\;\;\;t\_1 \cdot \left(-y \cdot \mathsf{fma}\left(0.5, t \cdot t, 1\right)\right)\\ \end{array} \end{array} \]
    (FPCore (x y z t)
     :precision binary64
     (let* ((t_1 (sqrt (* 2.0 z))))
       (if (<= (* t t) 3.9e+55)
         (* (- (* x 0.5) y) t_1)
         (* t_1 (- (* y (fma 0.5 (* t t) 1.0)))))))
    double code(double x, double y, double z, double t) {
    	double t_1 = sqrt((2.0 * z));
    	double tmp;
    	if ((t * t) <= 3.9e+55) {
    		tmp = ((x * 0.5) - y) * t_1;
    	} else {
    		tmp = t_1 * -(y * fma(0.5, (t * t), 1.0));
    	}
    	return tmp;
    }
    
    function code(x, y, z, t)
    	t_1 = sqrt(Float64(2.0 * z))
    	tmp = 0.0
    	if (Float64(t * t) <= 3.9e+55)
    		tmp = Float64(Float64(Float64(x * 0.5) - y) * t_1);
    	else
    		tmp = Float64(t_1 * Float64(-Float64(y * fma(0.5, Float64(t * t), 1.0))));
    	end
    	return tmp
    end
    
    code[x_, y_, z_, t_] := Block[{t$95$1 = N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[(t * t), $MachinePrecision], 3.9e+55], N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * t$95$1), $MachinePrecision], N[(t$95$1 * (-N[(y * N[(0.5 * N[(t * t), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision])), $MachinePrecision]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_1 := \sqrt{2 \cdot z}\\
    \mathbf{if}\;t \cdot t \leq 3.9 \cdot 10^{+55}:\\
    \;\;\;\;\left(x \cdot 0.5 - y\right) \cdot t\_1\\
    
    \mathbf{else}:\\
    \;\;\;\;t\_1 \cdot \left(-y \cdot \mathsf{fma}\left(0.5, t \cdot t, 1\right)\right)\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if (*.f64 t t) < 3.90000000000000027e55

      1. Initial program 99.7%

        \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
      2. Add Preprocessing
      3. Taylor expanded in t around 0

        \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
      4. Step-by-step derivation
        1. Simplified93.7%

          \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
        2. Step-by-step derivation
          1. lift-*.f64N/A

            \[\leadsto \left(\left(\color{blue}{x \cdot \frac{1}{2}} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
          2. lift--.f64N/A

            \[\leadsto \left(\color{blue}{\left(x \cdot \frac{1}{2} - y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
          3. lift-*.f64N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot 1 \]
          4. lift-sqrt.f64N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot 1 \]
          5. lift-*.f64N/A

            \[\leadsto \color{blue}{\left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right)} \cdot 1 \]
          6. *-rgt-identity93.7

            \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}} \]
          7. lift-*.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}} \]
          8. *-commutativeN/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
          9. lower-*.f6493.7

            \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
        3. Applied egg-rr93.7%

          \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}} \]

        if 3.90000000000000027e55 < (*.f64 t t)

        1. Initial program 100.0%

          \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
        2. Add Preprocessing
        3. Taylor expanded in t around 0

          \[\leadsto \color{blue}{\frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right) + \sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)} \]
        4. Step-by-step derivation
          1. +-commutativeN/A

            \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) + \frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right)} \]
          2. *-commutativeN/A

            \[\leadsto \color{blue}{\left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) \cdot \sqrt{z}} + \frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right) \]
          3. associate-*r*N/A

            \[\leadsto \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) \cdot \sqrt{z} + \color{blue}{\left(\frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right) \cdot \sqrt{z}} \]
          4. distribute-rgt-outN/A

            \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right)} \]
          5. lower-*.f64N/A

            \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right)} \]
          6. lower-sqrt.f64N/A

            \[\leadsto \color{blue}{\sqrt{z}} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right) \]
          7. associate-*r*N/A

            \[\leadsto \sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \color{blue}{\left(\frac{1}{2} \cdot {t}^{2}\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)}\right) \]
          8. distribute-rgt1-inN/A

            \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\left(\frac{1}{2} \cdot {t}^{2} + 1\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)} \]
          9. +-commutativeN/A

            \[\leadsto \sqrt{z} \cdot \left(\color{blue}{\left(1 + \frac{1}{2} \cdot {t}^{2}\right)} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \]
          10. lower-*.f64N/A

            \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\left(1 + \frac{1}{2} \cdot {t}^{2}\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)} \]
        5. Simplified80.8%

          \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(\sqrt{2} \cdot \left(0.5 \cdot x - y\right)\right)\right)} \]
        6. Taylor expanded in x around 0

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(-1 \cdot \left(y \cdot \sqrt{2}\right)\right)}\right) \]
        7. Step-by-step derivation
          1. mul-1-negN/A

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
          2. lower-neg.f64N/A

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
          3. lower-*.f64N/A

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right)\right) \]
          4. lower-sqrt.f6455.0

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(-y \cdot \color{blue}{\sqrt{2}}\right)\right) \]
        8. Simplified55.0%

          \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \color{blue}{\left(-y \cdot \sqrt{2}\right)}\right) \]
        9. Step-by-step derivation
          1. lift-sqrt.f64N/A

            \[\leadsto \color{blue}{\sqrt{z}} \cdot \left(\left(\frac{1}{2} \cdot \left(t \cdot t\right) + 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
          2. lift-*.f64N/A

            \[\leadsto \sqrt{z} \cdot \left(\left(\frac{1}{2} \cdot \color{blue}{\left(t \cdot t\right)} + 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
          3. lift-fma.f64N/A

            \[\leadsto \sqrt{z} \cdot \left(\color{blue}{\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right)} \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
          4. lift-sqrt.f64N/A

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \color{blue}{\sqrt{2}}\right)\right)\right) \]
          5. lift-*.f64N/A

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right)\right) \]
          6. lift-neg.f64N/A

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
          7. lift-*.f64N/A

            \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right)} \]
          8. *-commutativeN/A

            \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \cdot \sqrt{z}} \]
          9. lift-*.f64N/A

            \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right)} \cdot \sqrt{z} \]
          10. associate-*l*N/A

            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right) \cdot \sqrt{z}\right)} \]
          11. lift-neg.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)} \cdot \sqrt{z}\right) \]
          12. lift-*.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right) \cdot \sqrt{z}\right) \]
          13. distribute-lft-neg-inN/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2}\right)} \cdot \sqrt{z}\right) \]
          14. lift-neg.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} \cdot \sqrt{2}\right) \cdot \sqrt{z}\right) \]
          15. associate-*r*N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\sqrt{2} \cdot \sqrt{z}\right)\right)} \]
          16. *-commutativeN/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \color{blue}{\left(\sqrt{z} \cdot \sqrt{2}\right)}\right) \]
          17. lift-sqrt.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\color{blue}{\sqrt{z}} \cdot \sqrt{2}\right)\right) \]
          18. lift-sqrt.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\sqrt{z} \cdot \color{blue}{\sqrt{2}}\right)\right) \]
        10. Applied egg-rr52.3%

          \[\leadsto \color{blue}{\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(\left(-y\right) \cdot \sqrt{2 \cdot z}\right)} \]
        11. Step-by-step derivation
          1. lift-*.f64N/A

            \[\leadsto \left(\frac{1}{2} \cdot \color{blue}{\left(t \cdot t\right)} + 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2 \cdot z}\right) \]
          2. lift-fma.f64N/A

            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right)} \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2 \cdot z}\right) \]
          3. lift-neg.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} \cdot \sqrt{2 \cdot z}\right) \]
          4. lift-*.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{\color{blue}{2 \cdot z}}\right) \]
          5. lift-sqrt.f64N/A

            \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \color{blue}{\sqrt{2 \cdot z}}\right) \]
          6. associate-*r*N/A

            \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \cdot \sqrt{2 \cdot z}} \]
          7. lift-*.f64N/A

            \[\leadsto \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
          8. *-commutativeN/A

            \[\leadsto \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \cdot \sqrt{\color{blue}{z \cdot 2}} \]
          9. lift-*.f64N/A

            \[\leadsto \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \cdot \sqrt{\color{blue}{z \cdot 2}} \]
          10. *-commutativeN/A

            \[\leadsto \color{blue}{\sqrt{z \cdot 2} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right)} \]
          11. lower-*.f64N/A

            \[\leadsto \color{blue}{\sqrt{z \cdot 2} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right)} \]
          12. lift-*.f64N/A

            \[\leadsto \sqrt{\color{blue}{z \cdot 2}} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \]
          13. *-commutativeN/A

            \[\leadsto \sqrt{\color{blue}{2 \cdot z}} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \]
          14. lift-*.f64N/A

            \[\leadsto \sqrt{\color{blue}{2 \cdot z}} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y\right)\right)\right) \]
          15. lift-neg.f64N/A

            \[\leadsto \sqrt{2 \cdot z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y\right)\right)}\right) \]
          16. distribute-rgt-neg-outN/A

            \[\leadsto \sqrt{2 \cdot z} \cdot \color{blue}{\left(\mathsf{neg}\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot y\right)\right)} \]
          17. lower-neg.f64N/A

            \[\leadsto \sqrt{2 \cdot z} \cdot \color{blue}{\left(\mathsf{neg}\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot y\right)\right)} \]
          18. lower-*.f6455.0

            \[\leadsto \sqrt{2 \cdot z} \cdot \left(-\color{blue}{\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot y}\right) \]
        12. Applied egg-rr55.0%

          \[\leadsto \color{blue}{\sqrt{2 \cdot z} \cdot \left(-\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot y\right)} \]
      5. Recombined 2 regimes into one program.
      6. Final simplification77.2%

        \[\leadsto \begin{array}{l} \mathbf{if}\;t \cdot t \leq 3.9 \cdot 10^{+55}:\\ \;\;\;\;\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\\ \mathbf{else}:\\ \;\;\;\;\sqrt{2 \cdot z} \cdot \left(-y \cdot \mathsf{fma}\left(0.5, t \cdot t, 1\right)\right)\\ \end{array} \]
      7. Add Preprocessing

      Alternative 9: 74.3% accurate, 3.1× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} t_1 := \sqrt{2 \cdot z}\\ \mathbf{if}\;t \cdot t \leq 6.2 \cdot 10^{+55}:\\ \;\;\;\;\left(x \cdot 0.5 - y\right) \cdot t\_1\\ \mathbf{else}:\\ \;\;\;\;\left(0.5 \cdot \left(t \cdot t\right)\right) \cdot \left(t\_1 \cdot \left(-y\right)\right)\\ \end{array} \end{array} \]
      (FPCore (x y z t)
       :precision binary64
       (let* ((t_1 (sqrt (* 2.0 z))))
         (if (<= (* t t) 6.2e+55)
           (* (- (* x 0.5) y) t_1)
           (* (* 0.5 (* t t)) (* t_1 (- y))))))
      double code(double x, double y, double z, double t) {
      	double t_1 = sqrt((2.0 * z));
      	double tmp;
      	if ((t * t) <= 6.2e+55) {
      		tmp = ((x * 0.5) - y) * t_1;
      	} else {
      		tmp = (0.5 * (t * t)) * (t_1 * -y);
      	}
      	return tmp;
      }
      
      real(8) function code(x, y, z, t)
          real(8), intent (in) :: x
          real(8), intent (in) :: y
          real(8), intent (in) :: z
          real(8), intent (in) :: t
          real(8) :: t_1
          real(8) :: tmp
          t_1 = sqrt((2.0d0 * z))
          if ((t * t) <= 6.2d+55) then
              tmp = ((x * 0.5d0) - y) * t_1
          else
              tmp = (0.5d0 * (t * t)) * (t_1 * -y)
          end if
          code = tmp
      end function
      
      public static double code(double x, double y, double z, double t) {
      	double t_1 = Math.sqrt((2.0 * z));
      	double tmp;
      	if ((t * t) <= 6.2e+55) {
      		tmp = ((x * 0.5) - y) * t_1;
      	} else {
      		tmp = (0.5 * (t * t)) * (t_1 * -y);
      	}
      	return tmp;
      }
      
      def code(x, y, z, t):
      	t_1 = math.sqrt((2.0 * z))
      	tmp = 0
      	if (t * t) <= 6.2e+55:
      		tmp = ((x * 0.5) - y) * t_1
      	else:
      		tmp = (0.5 * (t * t)) * (t_1 * -y)
      	return tmp
      
      function code(x, y, z, t)
      	t_1 = sqrt(Float64(2.0 * z))
      	tmp = 0.0
      	if (Float64(t * t) <= 6.2e+55)
      		tmp = Float64(Float64(Float64(x * 0.5) - y) * t_1);
      	else
      		tmp = Float64(Float64(0.5 * Float64(t * t)) * Float64(t_1 * Float64(-y)));
      	end
      	return tmp
      end
      
      function tmp_2 = code(x, y, z, t)
      	t_1 = sqrt((2.0 * z));
      	tmp = 0.0;
      	if ((t * t) <= 6.2e+55)
      		tmp = ((x * 0.5) - y) * t_1;
      	else
      		tmp = (0.5 * (t * t)) * (t_1 * -y);
      	end
      	tmp_2 = tmp;
      end
      
      code[x_, y_, z_, t_] := Block[{t$95$1 = N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[(t * t), $MachinePrecision], 6.2e+55], N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * t$95$1), $MachinePrecision], N[(N[(0.5 * N[(t * t), $MachinePrecision]), $MachinePrecision] * N[(t$95$1 * (-y)), $MachinePrecision]), $MachinePrecision]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      t_1 := \sqrt{2 \cdot z}\\
      \mathbf{if}\;t \cdot t \leq 6.2 \cdot 10^{+55}:\\
      \;\;\;\;\left(x \cdot 0.5 - y\right) \cdot t\_1\\
      
      \mathbf{else}:\\
      \;\;\;\;\left(0.5 \cdot \left(t \cdot t\right)\right) \cdot \left(t\_1 \cdot \left(-y\right)\right)\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if (*.f64 t t) < 6.19999999999999987e55

        1. Initial program 99.7%

          \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
        2. Add Preprocessing
        3. Taylor expanded in t around 0

          \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
        4. Step-by-step derivation
          1. Simplified93.7%

            \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
          2. Step-by-step derivation
            1. lift-*.f64N/A

              \[\leadsto \left(\left(\color{blue}{x \cdot \frac{1}{2}} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
            2. lift--.f64N/A

              \[\leadsto \left(\color{blue}{\left(x \cdot \frac{1}{2} - y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
            3. lift-*.f64N/A

              \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot 1 \]
            4. lift-sqrt.f64N/A

              \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot 1 \]
            5. lift-*.f64N/A

              \[\leadsto \color{blue}{\left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right)} \cdot 1 \]
            6. *-rgt-identity93.7

              \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}} \]
            7. lift-*.f64N/A

              \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}} \]
            8. *-commutativeN/A

              \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
            9. lower-*.f6493.7

              \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
          3. Applied egg-rr93.7%

            \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}} \]

          if 6.19999999999999987e55 < (*.f64 t t)

          1. Initial program 100.0%

            \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
          2. Add Preprocessing
          3. Taylor expanded in t around 0

            \[\leadsto \color{blue}{\frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right) + \sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)} \]
          4. Step-by-step derivation
            1. +-commutativeN/A

              \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) + \frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right)} \]
            2. *-commutativeN/A

              \[\leadsto \color{blue}{\left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) \cdot \sqrt{z}} + \frac{1}{2} \cdot \left(\left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \cdot \sqrt{z}\right) \]
            3. associate-*r*N/A

              \[\leadsto \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right) \cdot \sqrt{z} + \color{blue}{\left(\frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right) \cdot \sqrt{z}} \]
            4. distribute-rgt-outN/A

              \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right)} \]
            5. lower-*.f64N/A

              \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right)} \]
            6. lower-sqrt.f64N/A

              \[\leadsto \color{blue}{\sqrt{z}} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \frac{1}{2} \cdot \left({t}^{2} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)\right) \]
            7. associate-*r*N/A

              \[\leadsto \sqrt{z} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right) + \color{blue}{\left(\frac{1}{2} \cdot {t}^{2}\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)}\right) \]
            8. distribute-rgt1-inN/A

              \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\left(\frac{1}{2} \cdot {t}^{2} + 1\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)} \]
            9. +-commutativeN/A

              \[\leadsto \sqrt{z} \cdot \left(\color{blue}{\left(1 + \frac{1}{2} \cdot {t}^{2}\right)} \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right) \]
            10. lower-*.f64N/A

              \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\left(1 + \frac{1}{2} \cdot {t}^{2}\right) \cdot \left(\sqrt{2} \cdot \left(\frac{1}{2} \cdot x - y\right)\right)\right)} \]
          5. Simplified80.8%

            \[\leadsto \color{blue}{\sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(\sqrt{2} \cdot \left(0.5 \cdot x - y\right)\right)\right)} \]
          6. Taylor expanded in x around 0

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(-1 \cdot \left(y \cdot \sqrt{2}\right)\right)}\right) \]
          7. Step-by-step derivation
            1. mul-1-negN/A

              \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
            2. lower-neg.f64N/A

              \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
            3. lower-*.f64N/A

              \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right)\right) \]
            4. lower-sqrt.f6455.0

              \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(-y \cdot \color{blue}{\sqrt{2}}\right)\right) \]
          8. Simplified55.0%

            \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \color{blue}{\left(-y \cdot \sqrt{2}\right)}\right) \]
          9. Step-by-step derivation
            1. lift-sqrt.f64N/A

              \[\leadsto \color{blue}{\sqrt{z}} \cdot \left(\left(\frac{1}{2} \cdot \left(t \cdot t\right) + 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
            2. lift-*.f64N/A

              \[\leadsto \sqrt{z} \cdot \left(\left(\frac{1}{2} \cdot \color{blue}{\left(t \cdot t\right)} + 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
            3. lift-fma.f64N/A

              \[\leadsto \sqrt{z} \cdot \left(\color{blue}{\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right)} \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \]
            4. lift-sqrt.f64N/A

              \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \color{blue}{\sqrt{2}}\right)\right)\right) \]
            5. lift-*.f64N/A

              \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right)\right) \]
            6. lift-neg.f64N/A

              \[\leadsto \sqrt{z} \cdot \left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)}\right) \]
            7. lift-*.f64N/A

              \[\leadsto \sqrt{z} \cdot \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right)} \]
            8. *-commutativeN/A

              \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right) \cdot \sqrt{z}} \]
            9. lift-*.f64N/A

              \[\leadsto \color{blue}{\left(\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)\right)} \cdot \sqrt{z} \]
            10. associate-*l*N/A

              \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right) \cdot \sqrt{z}\right)} \]
            11. lift-neg.f64N/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\color{blue}{\left(\mathsf{neg}\left(y \cdot \sqrt{2}\right)\right)} \cdot \sqrt{z}\right) \]
            12. lift-*.f64N/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(\color{blue}{y \cdot \sqrt{2}}\right)\right) \cdot \sqrt{z}\right) \]
            13. distribute-lft-neg-inN/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2}\right)} \cdot \sqrt{z}\right) \]
            14. lift-neg.f64N/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} \cdot \sqrt{2}\right) \cdot \sqrt{z}\right) \]
            15. associate-*r*N/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\sqrt{2} \cdot \sqrt{z}\right)\right)} \]
            16. *-commutativeN/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \color{blue}{\left(\sqrt{z} \cdot \sqrt{2}\right)}\right) \]
            17. lift-sqrt.f64N/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\color{blue}{\sqrt{z}} \cdot \sqrt{2}\right)\right) \]
            18. lift-sqrt.f64N/A

              \[\leadsto \mathsf{fma}\left(\frac{1}{2}, t \cdot t, 1\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \left(\sqrt{z} \cdot \color{blue}{\sqrt{2}}\right)\right) \]
          10. Applied egg-rr52.3%

            \[\leadsto \color{blue}{\mathsf{fma}\left(0.5, t \cdot t, 1\right) \cdot \left(\left(-y\right) \cdot \sqrt{2 \cdot z}\right)} \]
          11. Taylor expanded in t around inf

            \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot {t}^{2}\right)} \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2 \cdot z}\right) \]
          12. Step-by-step derivation
            1. *-commutativeN/A

              \[\leadsto \color{blue}{\left({t}^{2} \cdot \frac{1}{2}\right)} \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2 \cdot z}\right) \]
            2. lower-*.f64N/A

              \[\leadsto \color{blue}{\left({t}^{2} \cdot \frac{1}{2}\right)} \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2 \cdot z}\right) \]
            3. unpow2N/A

              \[\leadsto \left(\color{blue}{\left(t \cdot t\right)} \cdot \frac{1}{2}\right) \cdot \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{2 \cdot z}\right) \]
            4. lower-*.f6452.3

              \[\leadsto \left(\color{blue}{\left(t \cdot t\right)} \cdot 0.5\right) \cdot \left(\left(-y\right) \cdot \sqrt{2 \cdot z}\right) \]
          13. Simplified52.3%

            \[\leadsto \color{blue}{\left(\left(t \cdot t\right) \cdot 0.5\right)} \cdot \left(\left(-y\right) \cdot \sqrt{2 \cdot z}\right) \]
        5. Recombined 2 regimes into one program.
        6. Final simplification76.1%

          \[\leadsto \begin{array}{l} \mathbf{if}\;t \cdot t \leq 6.2 \cdot 10^{+55}:\\ \;\;\;\;\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\\ \mathbf{else}:\\ \;\;\;\;\left(0.5 \cdot \left(t \cdot t\right)\right) \cdot \left(\sqrt{2 \cdot z} \cdot \left(-y\right)\right)\\ \end{array} \]
        7. Add Preprocessing

        Alternative 10: 85.6% accurate, 3.3× speedup?

        \[\begin{array}{l} \\ \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(0.5, t \cdot t, 1\right) \end{array} \]
        (FPCore (x y z t)
         :precision binary64
         (* (* (- (* x 0.5) y) (sqrt (* 2.0 z))) (fma 0.5 (* t t) 1.0)))
        double code(double x, double y, double z, double t) {
        	return (((x * 0.5) - y) * sqrt((2.0 * z))) * fma(0.5, (t * t), 1.0);
        }
        
        function code(x, y, z, t)
        	return Float64(Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(2.0 * z))) * fma(0.5, Float64(t * t), 1.0))
        end
        
        code[x_, y_, z_, t_] := N[(N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(0.5 * N[(t * t), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        
        \\
        \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(0.5, t \cdot t, 1\right)
        \end{array}
        
        Derivation
        1. Initial program 99.8%

          \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
        2. Add Preprocessing
        3. Taylor expanded in t around 0

          \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\left(1 + \frac{1}{2} \cdot {t}^{2}\right)} \]
        4. Step-by-step derivation
          1. +-commutativeN/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\left(\frac{1}{2} \cdot {t}^{2} + 1\right)} \]
          2. lower-fma.f64N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{1}{2}, {t}^{2}, 1\right)} \]
          3. unpow2N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(\frac{1}{2}, \color{blue}{t \cdot t}, 1\right) \]
          4. lower-*.f6488.3

            \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \mathsf{fma}\left(0.5, \color{blue}{t \cdot t}, 1\right) \]
        5. Simplified88.3%

          \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{\mathsf{fma}\left(0.5, t \cdot t, 1\right)} \]
        6. Final simplification88.3%

          \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}\right) \cdot \mathsf{fma}\left(0.5, t \cdot t, 1\right) \]
        7. Add Preprocessing

        Alternative 11: 84.5% accurate, 3.8× speedup?

        \[\begin{array}{l} \\ \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \mathsf{fma}\left(z, t \cdot t, z\right)} \end{array} \]
        (FPCore (x y z t)
         :precision binary64
         (* (- (* x 0.5) y) (sqrt (* 2.0 (fma z (* t t) z)))))
        double code(double x, double y, double z, double t) {
        	return ((x * 0.5) - y) * sqrt((2.0 * fma(z, (t * t), z)));
        }
        
        function code(x, y, z, t)
        	return Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(2.0 * fma(z, Float64(t * t), z))))
        end
        
        code[x_, y_, z_, t_] := N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(2.0 * N[(z * N[(t * t), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        
        \\
        \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \mathsf{fma}\left(z, t \cdot t, z\right)}
        \end{array}
        
        Derivation
        1. Initial program 99.8%

          \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. lift-*.f64N/A

            \[\leadsto \left(\left(\color{blue}{x \cdot \frac{1}{2}} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
          2. lift--.f64N/A

            \[\leadsto \left(\color{blue}{\left(x \cdot \frac{1}{2} - y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
          3. lift-*.f64N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot e^{\frac{t \cdot t}{2}} \]
          4. lift-sqrt.f64N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot e^{\frac{t \cdot t}{2}} \]
          5. lift-*.f64N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{\color{blue}{t \cdot t}}{2}} \]
          6. lift-/.f64N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\color{blue}{\frac{t \cdot t}{2}}} \]
          7. lift-exp.f64N/A

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{e^{\frac{t \cdot t}{2}}} \]
          8. associate-*l*N/A

            \[\leadsto \color{blue}{\left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\frac{t \cdot t}{2}}\right)} \]
          9. lower-*.f64N/A

            \[\leadsto \color{blue}{\left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\frac{t \cdot t}{2}}\right)} \]
          10. lift-sqrt.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\color{blue}{\sqrt{z \cdot 2}} \cdot e^{\frac{t \cdot t}{2}}\right) \]
          11. lift-exp.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot \color{blue}{e^{\frac{t \cdot t}{2}}}\right) \]
          12. lift-/.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot e^{\color{blue}{\frac{t \cdot t}{2}}}\right) \]
          13. exp-sqrtN/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \left(\sqrt{z \cdot 2} \cdot \color{blue}{\sqrt{e^{t \cdot t}}}\right) \]
          14. sqrt-unprodN/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{\left(z \cdot 2\right) \cdot e^{t \cdot t}}} \]
          15. lower-sqrt.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{\left(z \cdot 2\right) \cdot e^{t \cdot t}}} \]
          16. lift-*.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\left(z \cdot 2\right)} \cdot e^{t \cdot t}} \]
          17. *-commutativeN/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{\left(2 \cdot z\right)} \cdot e^{t \cdot t}} \]
          18. associate-*l*N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
          19. lower-*.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
          20. lower-*.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \color{blue}{\left(z \cdot e^{t \cdot t}\right)}} \]
          21. lower-exp.f6499.8

            \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot \color{blue}{e^{t \cdot t}}\right)} \]
        4. Applied egg-rr99.8%

          \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \left(z \cdot e^{t \cdot t}\right)}} \]
        5. Taylor expanded in t around 0

          \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot z + 2 \cdot \left({t}^{2} \cdot z\right)}} \]
        6. Step-by-step derivation
          1. distribute-lft-outN/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z + {t}^{2} \cdot z\right)}} \]
          2. lower-*.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot \left(z + {t}^{2} \cdot z\right)}} \]
          3. +-commutativeN/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \color{blue}{\left({t}^{2} \cdot z + z\right)}} \]
          4. *-commutativeN/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \left(\color{blue}{z \cdot {t}^{2}} + z\right)} \]
          5. lower-fma.f64N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \color{blue}{\mathsf{fma}\left(z, {t}^{2}, z\right)}} \]
          6. unpow2N/A

            \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{2 \cdot \mathsf{fma}\left(z, \color{blue}{t \cdot t}, z\right)} \]
          7. lower-*.f6485.7

            \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot \mathsf{fma}\left(z, \color{blue}{t \cdot t}, z\right)} \]
        7. Simplified85.7%

          \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{\color{blue}{2 \cdot \mathsf{fma}\left(z, t \cdot t, z\right)}} \]
        8. Add Preprocessing

        Alternative 12: 56.8% accurate, 5.2× speedup?

        \[\begin{array}{l} \\ \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z} \end{array} \]
        (FPCore (x y z t) :precision binary64 (* (- (* x 0.5) y) (sqrt (* 2.0 z))))
        double code(double x, double y, double z, double t) {
        	return ((x * 0.5) - y) * sqrt((2.0 * z));
        }
        
        real(8) function code(x, y, z, t)
            real(8), intent (in) :: x
            real(8), intent (in) :: y
            real(8), intent (in) :: z
            real(8), intent (in) :: t
            code = ((x * 0.5d0) - y) * sqrt((2.0d0 * z))
        end function
        
        public static double code(double x, double y, double z, double t) {
        	return ((x * 0.5) - y) * Math.sqrt((2.0 * z));
        }
        
        def code(x, y, z, t):
        	return ((x * 0.5) - y) * math.sqrt((2.0 * z))
        
        function code(x, y, z, t)
        	return Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(2.0 * z)))
        end
        
        function tmp = code(x, y, z, t)
        	tmp = ((x * 0.5) - y) * sqrt((2.0 * z));
        end
        
        code[x_, y_, z_, t_] := N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        
        \\
        \left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}
        \end{array}
        
        Derivation
        1. Initial program 99.8%

          \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
        2. Add Preprocessing
        3. Taylor expanded in t around 0

          \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
        4. Step-by-step derivation
          1. Simplified60.6%

            \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
          2. Step-by-step derivation
            1. lift-*.f64N/A

              \[\leadsto \left(\left(\color{blue}{x \cdot \frac{1}{2}} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
            2. lift--.f64N/A

              \[\leadsto \left(\color{blue}{\left(x \cdot \frac{1}{2} - y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
            3. lift-*.f64N/A

              \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot 1 \]
            4. lift-sqrt.f64N/A

              \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot 1 \]
            5. lift-*.f64N/A

              \[\leadsto \color{blue}{\left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right)} \cdot 1 \]
            6. *-rgt-identity60.6

              \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}} \]
            7. lift-*.f64N/A

              \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{z \cdot 2}} \]
            8. *-commutativeN/A

              \[\leadsto \left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
            9. lower-*.f6460.6

              \[\leadsto \left(x \cdot 0.5 - y\right) \cdot \sqrt{\color{blue}{2 \cdot z}} \]
          3. Applied egg-rr60.6%

            \[\leadsto \color{blue}{\left(x \cdot 0.5 - y\right) \cdot \sqrt{2 \cdot z}} \]
          4. Add Preprocessing

          Alternative 13: 30.1% accurate, 6.5× speedup?

          \[\begin{array}{l} \\ \sqrt{2 \cdot z} \cdot \left(-y\right) \end{array} \]
          (FPCore (x y z t) :precision binary64 (* (sqrt (* 2.0 z)) (- y)))
          double code(double x, double y, double z, double t) {
          	return sqrt((2.0 * z)) * -y;
          }
          
          real(8) function code(x, y, z, t)
              real(8), intent (in) :: x
              real(8), intent (in) :: y
              real(8), intent (in) :: z
              real(8), intent (in) :: t
              code = sqrt((2.0d0 * z)) * -y
          end function
          
          public static double code(double x, double y, double z, double t) {
          	return Math.sqrt((2.0 * z)) * -y;
          }
          
          def code(x, y, z, t):
          	return math.sqrt((2.0 * z)) * -y
          
          function code(x, y, z, t)
          	return Float64(sqrt(Float64(2.0 * z)) * Float64(-y))
          end
          
          function tmp = code(x, y, z, t)
          	tmp = sqrt((2.0 * z)) * -y;
          end
          
          code[x_, y_, z_, t_] := N[(N[Sqrt[N[(2.0 * z), $MachinePrecision]], $MachinePrecision] * (-y)), $MachinePrecision]
          
          \begin{array}{l}
          
          \\
          \sqrt{2 \cdot z} \cdot \left(-y\right)
          \end{array}
          
          Derivation
          1. Initial program 99.8%

            \[\left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot e^{\frac{t \cdot t}{2}} \]
          2. Add Preprocessing
          3. Taylor expanded in t around 0

            \[\leadsto \left(\left(x \cdot \frac{1}{2} - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
          4. Step-by-step derivation
            1. Simplified60.6%

              \[\leadsto \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot \color{blue}{1} \]
            2. Taylor expanded in x around 0

              \[\leadsto \left(\color{blue}{\left(-1 \cdot y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
            3. Step-by-step derivation
              1. mul-1-negN/A

                \[\leadsto \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
              2. lower-neg.f6431.7

                \[\leadsto \left(\color{blue}{\left(-y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
            4. Simplified31.7%

              \[\leadsto \left(\color{blue}{\left(-y\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
            5. Step-by-step derivation
              1. lift-*.f64N/A

                \[\leadsto \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{\color{blue}{z \cdot 2}}\right) \cdot 1 \]
              2. lift-sqrt.f64N/A

                \[\leadsto \left(\left(\mathsf{neg}\left(y\right)\right) \cdot \color{blue}{\sqrt{z \cdot 2}}\right) \cdot 1 \]
              3. lift-neg.f64N/A

                \[\leadsto \left(\color{blue}{\left(\mathsf{neg}\left(y\right)\right)} \cdot \sqrt{z \cdot 2}\right) \cdot 1 \]
              4. lift-*.f64N/A

                \[\leadsto \color{blue}{\left(\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{z \cdot 2}\right)} \cdot 1 \]
              5. *-rgt-identity31.7

                \[\leadsto \color{blue}{\left(-y\right) \cdot \sqrt{z \cdot 2}} \]
              6. lift-*.f64N/A

                \[\leadsto \color{blue}{\left(\mathsf{neg}\left(y\right)\right) \cdot \sqrt{z \cdot 2}} \]
              7. *-commutativeN/A

                \[\leadsto \color{blue}{\sqrt{z \cdot 2} \cdot \left(\mathsf{neg}\left(y\right)\right)} \]
              8. lower-*.f6431.7

                \[\leadsto \color{blue}{\sqrt{z \cdot 2} \cdot \left(-y\right)} \]
              9. lift-*.f64N/A

                \[\leadsto \sqrt{\color{blue}{z \cdot 2}} \cdot \left(\mathsf{neg}\left(y\right)\right) \]
              10. *-commutativeN/A

                \[\leadsto \sqrt{\color{blue}{2 \cdot z}} \cdot \left(\mathsf{neg}\left(y\right)\right) \]
              11. lift-*.f6431.7

                \[\leadsto \sqrt{\color{blue}{2 \cdot z}} \cdot \left(-y\right) \]
            6. Applied egg-rr31.7%

              \[\leadsto \color{blue}{\sqrt{2 \cdot z} \cdot \left(-y\right)} \]
            7. Add Preprocessing

            Developer Target 1: 99.6% accurate, 0.6× speedup?

            \[\begin{array}{l} \\ \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot {\left(e^{1}\right)}^{\left(\frac{t \cdot t}{2}\right)} \end{array} \]
            (FPCore (x y z t)
             :precision binary64
             (* (* (- (* x 0.5) y) (sqrt (* z 2.0))) (pow (exp 1.0) (/ (* t t) 2.0))))
            double code(double x, double y, double z, double t) {
            	return (((x * 0.5) - y) * sqrt((z * 2.0))) * pow(exp(1.0), ((t * t) / 2.0));
            }
            
            real(8) function code(x, y, z, t)
                real(8), intent (in) :: x
                real(8), intent (in) :: y
                real(8), intent (in) :: z
                real(8), intent (in) :: t
                code = (((x * 0.5d0) - y) * sqrt((z * 2.0d0))) * (exp(1.0d0) ** ((t * t) / 2.0d0))
            end function
            
            public static double code(double x, double y, double z, double t) {
            	return (((x * 0.5) - y) * Math.sqrt((z * 2.0))) * Math.pow(Math.exp(1.0), ((t * t) / 2.0));
            }
            
            def code(x, y, z, t):
            	return (((x * 0.5) - y) * math.sqrt((z * 2.0))) * math.pow(math.exp(1.0), ((t * t) / 2.0))
            
            function code(x, y, z, t)
            	return Float64(Float64(Float64(Float64(x * 0.5) - y) * sqrt(Float64(z * 2.0))) * (exp(1.0) ^ Float64(Float64(t * t) / 2.0)))
            end
            
            function tmp = code(x, y, z, t)
            	tmp = (((x * 0.5) - y) * sqrt((z * 2.0))) * (exp(1.0) ^ ((t * t) / 2.0));
            end
            
            code[x_, y_, z_, t_] := N[(N[(N[(N[(x * 0.5), $MachinePrecision] - y), $MachinePrecision] * N[Sqrt[N[(z * 2.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[Power[N[Exp[1.0], $MachinePrecision], N[(N[(t * t), $MachinePrecision] / 2.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
            
            \begin{array}{l}
            
            \\
            \left(\left(x \cdot 0.5 - y\right) \cdot \sqrt{z \cdot 2}\right) \cdot {\left(e^{1}\right)}^{\left(\frac{t \cdot t}{2}\right)}
            \end{array}
            

            Reproduce

            ?
            herbie shell --seed 2024207 
            (FPCore (x y z t)
              :name "Data.Number.Erf:$cinvnormcdf from erf-2.0.0.0, A"
              :precision binary64
            
              :alt
              (! :herbie-platform default (* (* (- (* x 1/2) y) (sqrt (* z 2))) (pow (exp 1) (/ (* t t) 2))))
            
              (* (* (- (* x 0.5) y) (sqrt (* z 2.0))) (exp (/ (* t t) 2.0))))