Statistics.Distribution.Beta:$cvariance from math-functions-0.1.5.2

Percentage Accurate: 82.6% → 98.0%
Time: 12.7s
Alternatives: 16
Speedup: 1.1×

Specification

?
\[\begin{array}{l} \\ \frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \end{array} \]
(FPCore (x y z) :precision binary64 (/ (* x y) (* (* z z) (+ z 1.0))))
double code(double x, double y, double z) {
	return (x * y) / ((z * z) * (z + 1.0));
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = (x * y) / ((z * z) * (z + 1.0d0))
end function
public static double code(double x, double y, double z) {
	return (x * y) / ((z * z) * (z + 1.0));
}
def code(x, y, z):
	return (x * y) / ((z * z) * (z + 1.0))
function code(x, y, z)
	return Float64(Float64(x * y) / Float64(Float64(z * z) * Float64(z + 1.0)))
end
function tmp = code(x, y, z)
	tmp = (x * y) / ((z * z) * (z + 1.0));
end
code[x_, y_, z_] := N[(N[(x * y), $MachinePrecision] / N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)}
\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 16 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: 82.6% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \end{array} \]
(FPCore (x y z) :precision binary64 (/ (* x y) (* (* z z) (+ z 1.0))))
double code(double x, double y, double z) {
	return (x * y) / ((z * z) * (z + 1.0));
}
real(8) function code(x, y, z)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8), intent (in) :: z
    code = (x * y) / ((z * z) * (z + 1.0d0))
end function
public static double code(double x, double y, double z) {
	return (x * y) / ((z * z) * (z + 1.0));
}
def code(x, y, z):
	return (x * y) / ((z * z) * (z + 1.0))
function code(x, y, z)
	return Float64(Float64(x * y) / Float64(Float64(z * z) * Float64(z + 1.0)))
end
function tmp = code(x, y, z)
	tmp = (x * y) / ((z * z) * (z + 1.0));
end
code[x_, y_, z_] := N[(N[(x * y), $MachinePrecision] / N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)}
\end{array}

Alternative 1: 98.0% accurate, 0.5× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 0:\\ \;\;\;\;\frac{\frac{x\_m}{z}}{z \cdot \frac{z + 1}{y\_m}}\\ \mathbf{else}:\\ \;\;\;\;\frac{y\_m}{z + 1} \cdot \frac{\frac{x\_m}{z}}{z}\\ \end{array}\right) \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
y\_m = (fabs.f64 y)
y\_s = (copysign.f64 #s(literal 1 binary64) y)
NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
(FPCore (y_s x_s x_m y_m z)
 :precision binary64
 (*
  y_s
  (*
   x_s
   (if (<= (* (* z z) (+ z 1.0)) 0.0)
     (/ (/ x_m z) (* z (/ (+ z 1.0) y_m)))
     (* (/ y_m (+ z 1.0)) (/ (/ x_m z) z))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
y\_m = fabs(y);
y\_s = copysign(1.0, y);
assert(x_m < y_m && y_m < z);
double code(double y_s, double x_s, double x_m, double y_m, double z) {
	double tmp;
	if (((z * z) * (z + 1.0)) <= 0.0) {
		tmp = (x_m / z) / (z * ((z + 1.0) / y_m));
	} else {
		tmp = (y_m / (z + 1.0)) * ((x_m / z) / z);
	}
	return y_s * (x_s * tmp);
}
x\_m = abs(x)
x\_s = copysign(1.0d0, x)
y\_m = abs(y)
y\_s = copysign(1.0d0, y)
NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
real(8) function code(y_s, x_s, x_m, y_m, z)
    real(8), intent (in) :: y_s
    real(8), intent (in) :: x_s
    real(8), intent (in) :: x_m
    real(8), intent (in) :: y_m
    real(8), intent (in) :: z
    real(8) :: tmp
    if (((z * z) * (z + 1.0d0)) <= 0.0d0) then
        tmp = (x_m / z) / (z * ((z + 1.0d0) / y_m))
    else
        tmp = (y_m / (z + 1.0d0)) * ((x_m / z) / z)
    end if
    code = y_s * (x_s * tmp)
end function
x\_m = Math.abs(x);
x\_s = Math.copySign(1.0, x);
y\_m = Math.abs(y);
y\_s = Math.copySign(1.0, y);
assert x_m < y_m && y_m < z;
public static double code(double y_s, double x_s, double x_m, double y_m, double z) {
	double tmp;
	if (((z * z) * (z + 1.0)) <= 0.0) {
		tmp = (x_m / z) / (z * ((z + 1.0) / y_m));
	} else {
		tmp = (y_m / (z + 1.0)) * ((x_m / z) / z);
	}
	return y_s * (x_s * tmp);
}
x\_m = math.fabs(x)
x\_s = math.copysign(1.0, x)
y\_m = math.fabs(y)
y\_s = math.copysign(1.0, y)
[x_m, y_m, z] = sort([x_m, y_m, z])
def code(y_s, x_s, x_m, y_m, z):
	tmp = 0
	if ((z * z) * (z + 1.0)) <= 0.0:
		tmp = (x_m / z) / (z * ((z + 1.0) / y_m))
	else:
		tmp = (y_m / (z + 1.0)) * ((x_m / z) / z)
	return y_s * (x_s * tmp)
x\_m = abs(x)
x\_s = copysign(1.0, x)
y\_m = abs(y)
y\_s = copysign(1.0, y)
x_m, y_m, z = sort([x_m, y_m, z])
function code(y_s, x_s, x_m, y_m, z)
	tmp = 0.0
	if (Float64(Float64(z * z) * Float64(z + 1.0)) <= 0.0)
		tmp = Float64(Float64(x_m / z) / Float64(z * Float64(Float64(z + 1.0) / y_m)));
	else
		tmp = Float64(Float64(y_m / Float64(z + 1.0)) * Float64(Float64(x_m / z) / z));
	end
	return Float64(y_s * Float64(x_s * tmp))
end
x\_m = abs(x);
x\_s = sign(x) * abs(1.0);
y\_m = abs(y);
y\_s = sign(y) * abs(1.0);
x_m, y_m, z = num2cell(sort([x_m, y_m, z])){:}
function tmp_2 = code(y_s, x_s, x_m, y_m, z)
	tmp = 0.0;
	if (((z * z) * (z + 1.0)) <= 0.0)
		tmp = (x_m / z) / (z * ((z + 1.0) / y_m));
	else
		tmp = (y_m / (z + 1.0)) * ((x_m / z) / z);
	end
	tmp_2 = y_s * (x_s * tmp);
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
y\_m = N[Abs[y], $MachinePrecision]
y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * If[LessEqual[N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision], 0.0], N[(N[(x$95$m / z), $MachinePrecision] / N[(z * N[(N[(z + 1.0), $MachinePrecision] / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(y$95$m / N[(z + 1.0), $MachinePrecision]), $MachinePrecision] * N[(N[(x$95$m / z), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
y\_m = \left|y\right|
\\
y\_s = \mathsf{copysign}\left(1, y\right)
\\
[x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
\\
y\_s \cdot \left(x\_s \cdot \begin{array}{l}
\mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 0:\\
\;\;\;\;\frac{\frac{x\_m}{z}}{z \cdot \frac{z + 1}{y\_m}}\\

\mathbf{else}:\\
\;\;\;\;\frac{y\_m}{z + 1} \cdot \frac{\frac{x\_m}{z}}{z}\\


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 0.0

    1. Initial program 72.0%

      \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. times-fracN/A

        \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
      2. *-commutativeN/A

        \[\leadsto \color{blue}{\frac{y}{z + 1} \cdot \frac{x}{z \cdot z}} \]
      3. clear-numN/A

        \[\leadsto \color{blue}{\frac{1}{\frac{z + 1}{y}}} \cdot \frac{x}{z \cdot z} \]
      4. associate-/r*N/A

        \[\leadsto \frac{1}{\frac{z + 1}{y}} \cdot \color{blue}{\frac{\frac{x}{z}}{z}} \]
      5. frac-timesN/A

        \[\leadsto \color{blue}{\frac{1 \cdot \frac{x}{z}}{\frac{z + 1}{y} \cdot z}} \]
      6. metadata-evalN/A

        \[\leadsto \frac{\color{blue}{{1}^{-1}} \cdot \frac{x}{z}}{\frac{z + 1}{y} \cdot z} \]
      7. clear-numN/A

        \[\leadsto \frac{{1}^{-1} \cdot \color{blue}{\frac{1}{\frac{z}{x}}}}{\frac{z + 1}{y} \cdot z} \]
      8. inv-powN/A

        \[\leadsto \frac{{1}^{-1} \cdot \color{blue}{{\left(\frac{z}{x}\right)}^{-1}}}{\frac{z + 1}{y} \cdot z} \]
      9. unpow-prod-downN/A

        \[\leadsto \frac{\color{blue}{{\left(1 \cdot \frac{z}{x}\right)}^{-1}}}{\frac{z + 1}{y} \cdot z} \]
      10. associate-/l*N/A

        \[\leadsto \frac{{\color{blue}{\left(\frac{1 \cdot z}{x}\right)}}^{-1}}{\frac{z + 1}{y} \cdot z} \]
      11. *-lft-identityN/A

        \[\leadsto \frac{{\left(\frac{\color{blue}{z}}{x}\right)}^{-1}}{\frac{z + 1}{y} \cdot z} \]
      12. inv-powN/A

        \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}}}{\frac{z + 1}{y} \cdot z} \]
      13. clear-numN/A

        \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{\frac{z + 1}{y} \cdot z} \]
      14. /-lowering-/.f64N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\frac{z + 1}{y} \cdot z}} \]
      15. /-lowering-/.f64N/A

        \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{\frac{z + 1}{y} \cdot z} \]
      16. *-lowering-*.f64N/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\frac{z + 1}{y} \cdot z}} \]
      17. /-lowering-/.f64N/A

        \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\frac{z + 1}{y}} \cdot z} \]
      18. +-lowering-+.f6497.4

        \[\leadsto \frac{\frac{x}{z}}{\frac{\color{blue}{z + 1}}{y} \cdot z} \]
    4. Applied egg-rr97.4%

      \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\frac{z + 1}{y} \cdot z}} \]

    if 0.0 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

    1. Initial program 82.6%

      \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. times-fracN/A

        \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
      2. associate-/r*N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
      3. associate-*l/N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
      4. clear-numN/A

        \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
      5. inv-powN/A

        \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
      6. clear-numN/A

        \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
      7. inv-powN/A

        \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
      8. unpow-prod-downN/A

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

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

        \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
    4. Applied egg-rr92.4%

      \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
    5. Step-by-step derivation
      1. associate-/l*N/A

        \[\leadsto \color{blue}{\frac{y}{z + 1} \cdot \frac{\frac{x}{z}}{z}} \]
      2. clear-numN/A

        \[\leadsto \color{blue}{\frac{1}{\frac{z + 1}{y}}} \cdot \frac{\frac{x}{z}}{z} \]
      3. frac-2negN/A

        \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{z + 1}{y}\right)}} \cdot \frac{\frac{x}{z}}{z} \]
      4. metadata-evalN/A

        \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{z + 1}{y}\right)} \cdot \frac{\frac{x}{z}}{z} \]
      5. times-fracN/A

        \[\leadsto \color{blue}{\frac{-1 \cdot \frac{x}{z}}{\left(\mathsf{neg}\left(\frac{z + 1}{y}\right)\right) \cdot z}} \]
      6. distribute-lft-neg-inN/A

        \[\leadsto \frac{-1 \cdot \frac{x}{z}}{\color{blue}{\mathsf{neg}\left(\frac{z + 1}{y} \cdot z\right)}} \]
      7. distribute-rgt-neg-inN/A

        \[\leadsto \frac{-1 \cdot \frac{x}{z}}{\color{blue}{\frac{z + 1}{y} \cdot \left(\mathsf{neg}\left(z\right)\right)}} \]
      8. times-fracN/A

        \[\leadsto \color{blue}{\frac{-1}{\frac{z + 1}{y}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
      9. metadata-evalN/A

        \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(1\right)}}{\frac{z + 1}{y}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      10. distribute-neg-fracN/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\frac{1}{\frac{z + 1}{y}}\right)\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      11. clear-numN/A

        \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\frac{y}{z + 1}}\right)\right) \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      12. *-lowering-*.f64N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\frac{y}{z + 1}\right)\right) \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
      13. distribute-frac-neg2N/A

        \[\leadsto \color{blue}{\frac{y}{\mathsf{neg}\left(\left(z + 1\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      14. /-lowering-/.f64N/A

        \[\leadsto \color{blue}{\frac{y}{\mathsf{neg}\left(\left(z + 1\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      15. +-commutativeN/A

        \[\leadsto \frac{y}{\mathsf{neg}\left(\color{blue}{\left(1 + z\right)}\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      16. distribute-neg-inN/A

        \[\leadsto \frac{y}{\color{blue}{\left(\mathsf{neg}\left(1\right)\right) + \left(\mathsf{neg}\left(z\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      17. metadata-evalN/A

        \[\leadsto \frac{y}{\color{blue}{-1} + \left(\mathsf{neg}\left(z\right)\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      18. unsub-negN/A

        \[\leadsto \frac{y}{\color{blue}{-1 - z}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      19. --lowering--.f64N/A

        \[\leadsto \frac{y}{\color{blue}{-1 - z}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
      20. /-lowering-/.f64N/A

        \[\leadsto \frac{y}{-1 - z} \cdot \color{blue}{\frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
      21. /-lowering-/.f64N/A

        \[\leadsto \frac{y}{-1 - z} \cdot \frac{\color{blue}{\frac{x}{z}}}{\mathsf{neg}\left(z\right)} \]
      22. neg-sub0N/A

        \[\leadsto \frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{\color{blue}{0 - z}} \]
      23. --lowering--.f6493.0

        \[\leadsto \frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{\color{blue}{0 - z}} \]
    6. Applied egg-rr93.0%

      \[\leadsto \color{blue}{\frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{0 - z}} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification95.0%

    \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 0:\\ \;\;\;\;\frac{\frac{x}{z}}{z \cdot \frac{z + 1}{y}}\\ \mathbf{else}:\\ \;\;\;\;\frac{y}{z + 1} \cdot \frac{\frac{x}{z}}{z}\\ \end{array} \]
  5. Add Preprocessing

Alternative 2: 97.1% accurate, 0.3× speedup?

\[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ \begin{array}{l} t_0 := \frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\ t_1 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -1 \cdot 10^{+14}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-321}:\\ \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{z}\\ \mathbf{elif}\;t\_1 \leq 1.5 \cdot 10^{+191}:\\ \;\;\;\;y\_m \cdot \frac{x\_m}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array}\right) \end{array} \end{array} \]
x\_m = (fabs.f64 x)
x\_s = (copysign.f64 #s(literal 1 binary64) x)
y\_m = (fabs.f64 y)
y\_s = (copysign.f64 #s(literal 1 binary64) y)
NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
(FPCore (y_s x_s x_m y_m z)
 :precision binary64
 (let* ((t_0 (/ x_m (* z (* z (/ z y_m))))) (t_1 (* (* z z) (+ z 1.0))))
   (*
    y_s
    (*
     x_s
     (if (<= t_1 -1e+14)
       t_0
       (if (<= t_1 5e-321)
         (/ (* (/ x_m z) y_m) z)
         (if (<= t_1 1.5e+191) (* y_m (/ x_m (* z (fma z z z)))) t_0)))))))
x\_m = fabs(x);
x\_s = copysign(1.0, x);
y\_m = fabs(y);
y\_s = copysign(1.0, y);
assert(x_m < y_m && y_m < z);
double code(double y_s, double x_s, double x_m, double y_m, double z) {
	double t_0 = x_m / (z * (z * (z / y_m)));
	double t_1 = (z * z) * (z + 1.0);
	double tmp;
	if (t_1 <= -1e+14) {
		tmp = t_0;
	} else if (t_1 <= 5e-321) {
		tmp = ((x_m / z) * y_m) / z;
	} else if (t_1 <= 1.5e+191) {
		tmp = y_m * (x_m / (z * fma(z, z, z)));
	} else {
		tmp = t_0;
	}
	return y_s * (x_s * tmp);
}
x\_m = abs(x)
x\_s = copysign(1.0, x)
y\_m = abs(y)
y\_s = copysign(1.0, y)
x_m, y_m, z = sort([x_m, y_m, z])
function code(y_s, x_s, x_m, y_m, z)
	t_0 = Float64(x_m / Float64(z * Float64(z * Float64(z / y_m))))
	t_1 = Float64(Float64(z * z) * Float64(z + 1.0))
	tmp = 0.0
	if (t_1 <= -1e+14)
		tmp = t_0;
	elseif (t_1 <= 5e-321)
		tmp = Float64(Float64(Float64(x_m / z) * y_m) / z);
	elseif (t_1 <= 1.5e+191)
		tmp = Float64(y_m * Float64(x_m / Float64(z * fma(z, z, z))));
	else
		tmp = t_0;
	end
	return Float64(y_s * Float64(x_s * tmp))
end
x\_m = N[Abs[x], $MachinePrecision]
x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
y\_m = N[Abs[y], $MachinePrecision]
y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := Block[{t$95$0 = N[(x$95$m / N[(z * N[(z * N[(z / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(x$95$s * If[LessEqual[t$95$1, -1e+14], t$95$0, If[LessEqual[t$95$1, 5e-321], N[(N[(N[(x$95$m / z), $MachinePrecision] * y$95$m), $MachinePrecision] / z), $MachinePrecision], If[LessEqual[t$95$1, 1.5e+191], N[(y$95$m * N[(x$95$m / N[(z * N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0]]]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
x\_m = \left|x\right|
\\
x\_s = \mathsf{copysign}\left(1, x\right)
\\
y\_m = \left|y\right|
\\
y\_s = \mathsf{copysign}\left(1, y\right)
\\
[x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
\\
\begin{array}{l}
t_0 := \frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\
t_1 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\
y\_s \cdot \left(x\_s \cdot \begin{array}{l}
\mathbf{if}\;t\_1 \leq -1 \cdot 10^{+14}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-321}:\\
\;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{z}\\

\mathbf{elif}\;t\_1 \leq 1.5 \cdot 10^{+191}:\\
\;\;\;\;y\_m \cdot \frac{x\_m}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\

\mathbf{else}:\\
\;\;\;\;t\_0\\


\end{array}\right)
\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < -1e14 or 1.4999999999999999e191 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

    1. Initial program 77.2%

      \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. times-fracN/A

        \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
      2. associate-/r*N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
      3. associate-*l/N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
      4. clear-numN/A

        \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
      5. inv-powN/A

        \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
      6. clear-numN/A

        \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
      7. inv-powN/A

        \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
      8. unpow-prod-downN/A

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

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

        \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
    4. Applied egg-rr97.4%

      \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
    5. Taylor expanded in z around inf

      \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
    6. Step-by-step derivation
      1. /-lowering-/.f6496.9

        \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
    7. Simplified96.9%

      \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
    8. Step-by-step derivation
      1. associate-/l*N/A

        \[\leadsto \color{blue}{\frac{y}{z} \cdot \frac{\frac{x}{z}}{z}} \]
      2. clear-numN/A

        \[\leadsto \color{blue}{\frac{1}{\frac{z}{y}}} \cdot \frac{\frac{x}{z}}{z} \]
      3. associate-/r*N/A

        \[\leadsto \frac{1}{\frac{z}{y}} \cdot \color{blue}{\frac{x}{z \cdot z}} \]
      4. frac-timesN/A

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

        \[\leadsto \frac{\color{blue}{x}}{\frac{z}{y} \cdot \left(z \cdot z\right)} \]
      6. /-lowering-/.f64N/A

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

        \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
      8. *-lowering-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
      9. *-lowering-*.f64N/A

        \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right)} \cdot z} \]
      10. /-lowering-/.f6489.4

        \[\leadsto \frac{x}{\left(\color{blue}{\frac{z}{y}} \cdot z\right) \cdot z} \]
    9. Applied egg-rr89.4%

      \[\leadsto \color{blue}{\frac{x}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]

    if -1e14 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 4.99994e-321

    1. Initial program 59.8%

      \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. times-fracN/A

        \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
      2. associate-/r*N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
      3. associate-*l/N/A

        \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
      4. clear-numN/A

        \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
      5. inv-powN/A

        \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
      6. clear-numN/A

        \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
      7. inv-powN/A

        \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
      8. unpow-prod-downN/A

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

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

        \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
    4. Applied egg-rr98.0%

      \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
    5. Taylor expanded in z around 0

      \[\leadsto \frac{\color{blue}{y} \cdot \frac{x}{z}}{z} \]
    6. Step-by-step derivation
      1. Simplified98.0%

        \[\leadsto \frac{\color{blue}{y} \cdot \frac{x}{z}}{z} \]

      if 4.99994e-321 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 1.4999999999999999e191

      1. Initial program 89.4%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. *-commutativeN/A

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

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

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

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

          \[\leadsto \color{blue}{\frac{x}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \cdot y \]
        6. associate-*l*N/A

          \[\leadsto \frac{x}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot y \]
        7. *-lowering-*.f64N/A

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

          \[\leadsto \frac{x}{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}} \cdot y \]
        9. *-rgt-identityN/A

          \[\leadsto \frac{x}{z \cdot \left(z \cdot z + \color{blue}{z}\right)} \cdot y \]
        10. accelerator-lowering-fma.f6490.0

          \[\leadsto \frac{x}{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
      4. Applied egg-rr90.0%

        \[\leadsto \color{blue}{\frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)} \cdot y} \]
    7. Recombined 3 regimes into one program.
    8. Final simplification91.3%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq -1 \cdot 10^{+14}:\\ \;\;\;\;\frac{x}{z \cdot \left(z \cdot \frac{z}{y}\right)}\\ \mathbf{elif}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 5 \cdot 10^{-321}:\\ \;\;\;\;\frac{\frac{x}{z} \cdot y}{z}\\ \mathbf{elif}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 1.5 \cdot 10^{+191}:\\ \;\;\;\;y \cdot \frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z \cdot \left(z \cdot \frac{z}{y}\right)}\\ \end{array} \]
    9. Add Preprocessing

    Alternative 3: 96.4% accurate, 0.4× speedup?

    \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ \begin{array}{l} t_0 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;t\_0 \leq 0:\\ \;\;\;\;\frac{x\_m \cdot \frac{y\_m}{\mathsf{fma}\left(z, z, z\right)}}{z}\\ \mathbf{elif}\;t\_0 \leq 1.5 \cdot 10^{+191}:\\ \;\;\;\;y\_m \cdot \frac{\frac{x\_m}{z}}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\ \end{array}\right) \end{array} \end{array} \]
    x\_m = (fabs.f64 x)
    x\_s = (copysign.f64 #s(literal 1 binary64) x)
    y\_m = (fabs.f64 y)
    y\_s = (copysign.f64 #s(literal 1 binary64) y)
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    (FPCore (y_s x_s x_m y_m z)
     :precision binary64
     (let* ((t_0 (* (* z z) (+ z 1.0))))
       (*
        y_s
        (*
         x_s
         (if (<= t_0 0.0)
           (/ (* x_m (/ y_m (fma z z z))) z)
           (if (<= t_0 1.5e+191)
             (* y_m (/ (/ x_m z) (fma z z z)))
             (/ x_m (* z (* z (/ z y_m))))))))))
    x\_m = fabs(x);
    x\_s = copysign(1.0, x);
    y\_m = fabs(y);
    y\_s = copysign(1.0, y);
    assert(x_m < y_m && y_m < z);
    double code(double y_s, double x_s, double x_m, double y_m, double z) {
    	double t_0 = (z * z) * (z + 1.0);
    	double tmp;
    	if (t_0 <= 0.0) {
    		tmp = (x_m * (y_m / fma(z, z, z))) / z;
    	} else if (t_0 <= 1.5e+191) {
    		tmp = y_m * ((x_m / z) / fma(z, z, z));
    	} else {
    		tmp = x_m / (z * (z * (z / y_m)));
    	}
    	return y_s * (x_s * tmp);
    }
    
    x\_m = abs(x)
    x\_s = copysign(1.0, x)
    y\_m = abs(y)
    y\_s = copysign(1.0, y)
    x_m, y_m, z = sort([x_m, y_m, z])
    function code(y_s, x_s, x_m, y_m, z)
    	t_0 = Float64(Float64(z * z) * Float64(z + 1.0))
    	tmp = 0.0
    	if (t_0 <= 0.0)
    		tmp = Float64(Float64(x_m * Float64(y_m / fma(z, z, z))) / z);
    	elseif (t_0 <= 1.5e+191)
    		tmp = Float64(y_m * Float64(Float64(x_m / z) / fma(z, z, z)));
    	else
    		tmp = Float64(x_m / Float64(z * Float64(z * Float64(z / y_m))));
    	end
    	return Float64(y_s * Float64(x_s * tmp))
    end
    
    x\_m = N[Abs[x], $MachinePrecision]
    x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    y\_m = N[Abs[y], $MachinePrecision]
    y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := Block[{t$95$0 = N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(x$95$s * If[LessEqual[t$95$0, 0.0], N[(N[(x$95$m * N[(y$95$m / N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision], If[LessEqual[t$95$0, 1.5e+191], N[(y$95$m * N[(N[(x$95$m / z), $MachinePrecision] / N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x$95$m / N[(z * N[(z * N[(z / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]), $MachinePrecision]]
    
    \begin{array}{l}
    x\_m = \left|x\right|
    \\
    x\_s = \mathsf{copysign}\left(1, x\right)
    \\
    y\_m = \left|y\right|
    \\
    y\_s = \mathsf{copysign}\left(1, y\right)
    \\
    [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
    \\
    \begin{array}{l}
    t_0 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\
    y\_s \cdot \left(x\_s \cdot \begin{array}{l}
    \mathbf{if}\;t\_0 \leq 0:\\
    \;\;\;\;\frac{x\_m \cdot \frac{y\_m}{\mathsf{fma}\left(z, z, z\right)}}{z}\\
    
    \mathbf{elif}\;t\_0 \leq 1.5 \cdot 10^{+191}:\\
    \;\;\;\;y\_m \cdot \frac{\frac{x\_m}{z}}{\mathsf{fma}\left(z, z, z\right)}\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\
    
    
    \end{array}\right)
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 0.0

      1. Initial program 72.0%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. associate-*l*N/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \]
        2. times-fracN/A

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

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

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

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

          \[\leadsto \frac{x \cdot \color{blue}{\frac{y}{z \cdot \left(z + 1\right)}}}{z} \]
        7. distribute-lft-inN/A

          \[\leadsto \frac{x \cdot \frac{y}{\color{blue}{z \cdot z + z \cdot 1}}}{z} \]
        8. *-rgt-identityN/A

          \[\leadsto \frac{x \cdot \frac{y}{z \cdot z + \color{blue}{z}}}{z} \]
        9. accelerator-lowering-fma.f6496.5

          \[\leadsto \frac{x \cdot \frac{y}{\color{blue}{\mathsf{fma}\left(z, z, z\right)}}}{z} \]
      4. Applied egg-rr96.5%

        \[\leadsto \color{blue}{\frac{x \cdot \frac{y}{\mathsf{fma}\left(z, z, z\right)}}{z}} \]

      if 0.0 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 1.4999999999999999e191

      1. Initial program 89.0%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. *-commutativeN/A

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

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

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

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

          \[\leadsto \color{blue}{\frac{x}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \cdot y \]
        6. associate-*l*N/A

          \[\leadsto \frac{x}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot y \]
        7. *-lowering-*.f64N/A

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

          \[\leadsto \frac{x}{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}} \cdot y \]
        9. *-rgt-identityN/A

          \[\leadsto \frac{x}{z \cdot \left(z \cdot z + \color{blue}{z}\right)} \cdot y \]
        10. accelerator-lowering-fma.f6489.2

          \[\leadsto \frac{x}{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
      4. Applied egg-rr89.2%

        \[\leadsto \color{blue}{\frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)} \cdot y} \]
      5. Step-by-step derivation
        1. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z \cdot z + z}} \cdot y \]
        2. /-lowering-/.f64N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z \cdot z + z}} \cdot y \]
        3. /-lowering-/.f64N/A

          \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{z \cdot z + z} \cdot y \]
        4. accelerator-lowering-fma.f6489.2

          \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
      6. Applied egg-rr89.2%

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]

      if 1.4999999999999999e191 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

      1. Initial program 71.4%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
        2. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
        4. clear-numN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
        5. inv-powN/A

          \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
        6. clear-numN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
        7. inv-powN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
        8. unpow-prod-downN/A

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

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

          \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
      4. Applied egg-rr98.0%

        \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
      5. Taylor expanded in z around inf

        \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      6. Step-by-step derivation
        1. /-lowering-/.f6498.0

          \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      7. Simplified98.0%

        \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      8. Step-by-step derivation
        1. associate-/l*N/A

          \[\leadsto \color{blue}{\frac{y}{z} \cdot \frac{\frac{x}{z}}{z}} \]
        2. clear-numN/A

          \[\leadsto \color{blue}{\frac{1}{\frac{z}{y}}} \cdot \frac{\frac{x}{z}}{z} \]
        3. associate-/r*N/A

          \[\leadsto \frac{1}{\frac{z}{y}} \cdot \color{blue}{\frac{x}{z \cdot z}} \]
        4. frac-timesN/A

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

          \[\leadsto \frac{\color{blue}{x}}{\frac{z}{y} \cdot \left(z \cdot z\right)} \]
        6. /-lowering-/.f64N/A

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

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
        8. *-lowering-*.f64N/A

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
        9. *-lowering-*.f64N/A

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right)} \cdot z} \]
        10. /-lowering-/.f6485.2

          \[\leadsto \frac{x}{\left(\color{blue}{\frac{z}{y}} \cdot z\right) \cdot z} \]
      9. Applied egg-rr85.2%

        \[\leadsto \color{blue}{\frac{x}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
    3. Recombined 3 regimes into one program.
    4. Final simplification91.7%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 0:\\ \;\;\;\;\frac{x \cdot \frac{y}{\mathsf{fma}\left(z, z, z\right)}}{z}\\ \mathbf{elif}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 1.5 \cdot 10^{+191}:\\ \;\;\;\;y \cdot \frac{\frac{x}{z}}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z \cdot \left(z \cdot \frac{z}{y}\right)}\\ \end{array} \]
    5. Add Preprocessing

    Alternative 4: 96.0% accurate, 0.4× speedup?

    \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ \begin{array}{l} t_0 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;t\_0 \leq 0:\\ \;\;\;\;\frac{y\_m}{z} \cdot \frac{x\_m}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{elif}\;t\_0 \leq 1.5 \cdot 10^{+191}:\\ \;\;\;\;y\_m \cdot \frac{\frac{x\_m}{z}}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\ \end{array}\right) \end{array} \end{array} \]
    x\_m = (fabs.f64 x)
    x\_s = (copysign.f64 #s(literal 1 binary64) x)
    y\_m = (fabs.f64 y)
    y\_s = (copysign.f64 #s(literal 1 binary64) y)
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    (FPCore (y_s x_s x_m y_m z)
     :precision binary64
     (let* ((t_0 (* (* z z) (+ z 1.0))))
       (*
        y_s
        (*
         x_s
         (if (<= t_0 0.0)
           (* (/ y_m z) (/ x_m (fma z z z)))
           (if (<= t_0 1.5e+191)
             (* y_m (/ (/ x_m z) (fma z z z)))
             (/ x_m (* z (* z (/ z y_m))))))))))
    x\_m = fabs(x);
    x\_s = copysign(1.0, x);
    y\_m = fabs(y);
    y\_s = copysign(1.0, y);
    assert(x_m < y_m && y_m < z);
    double code(double y_s, double x_s, double x_m, double y_m, double z) {
    	double t_0 = (z * z) * (z + 1.0);
    	double tmp;
    	if (t_0 <= 0.0) {
    		tmp = (y_m / z) * (x_m / fma(z, z, z));
    	} else if (t_0 <= 1.5e+191) {
    		tmp = y_m * ((x_m / z) / fma(z, z, z));
    	} else {
    		tmp = x_m / (z * (z * (z / y_m)));
    	}
    	return y_s * (x_s * tmp);
    }
    
    x\_m = abs(x)
    x\_s = copysign(1.0, x)
    y\_m = abs(y)
    y\_s = copysign(1.0, y)
    x_m, y_m, z = sort([x_m, y_m, z])
    function code(y_s, x_s, x_m, y_m, z)
    	t_0 = Float64(Float64(z * z) * Float64(z + 1.0))
    	tmp = 0.0
    	if (t_0 <= 0.0)
    		tmp = Float64(Float64(y_m / z) * Float64(x_m / fma(z, z, z)));
    	elseif (t_0 <= 1.5e+191)
    		tmp = Float64(y_m * Float64(Float64(x_m / z) / fma(z, z, z)));
    	else
    		tmp = Float64(x_m / Float64(z * Float64(z * Float64(z / y_m))));
    	end
    	return Float64(y_s * Float64(x_s * tmp))
    end
    
    x\_m = N[Abs[x], $MachinePrecision]
    x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    y\_m = N[Abs[y], $MachinePrecision]
    y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := Block[{t$95$0 = N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(x$95$s * If[LessEqual[t$95$0, 0.0], N[(N[(y$95$m / z), $MachinePrecision] * N[(x$95$m / N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 1.5e+191], N[(y$95$m * N[(N[(x$95$m / z), $MachinePrecision] / N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x$95$m / N[(z * N[(z * N[(z / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]), $MachinePrecision]]
    
    \begin{array}{l}
    x\_m = \left|x\right|
    \\
    x\_s = \mathsf{copysign}\left(1, x\right)
    \\
    y\_m = \left|y\right|
    \\
    y\_s = \mathsf{copysign}\left(1, y\right)
    \\
    [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
    \\
    \begin{array}{l}
    t_0 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\
    y\_s \cdot \left(x\_s \cdot \begin{array}{l}
    \mathbf{if}\;t\_0 \leq 0:\\
    \;\;\;\;\frac{y\_m}{z} \cdot \frac{x\_m}{\mathsf{fma}\left(z, z, z\right)}\\
    
    \mathbf{elif}\;t\_0 \leq 1.5 \cdot 10^{+191}:\\
    \;\;\;\;y\_m \cdot \frac{\frac{x\_m}{z}}{\mathsf{fma}\left(z, z, z\right)}\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\
    
    
    \end{array}\right)
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 0.0

      1. Initial program 72.0%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
        2. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
        4. clear-numN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
        5. inv-powN/A

          \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
        6. clear-numN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
        7. inv-powN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
        8. unpow-prod-downN/A

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

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

          \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
      4. Applied egg-rr98.2%

        \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
      5. Step-by-step derivation
        1. associate-/l*N/A

          \[\leadsto \color{blue}{\frac{y}{z + 1} \cdot \frac{\frac{x}{z}}{z}} \]
        2. clear-numN/A

          \[\leadsto \color{blue}{\frac{1}{\frac{z + 1}{y}}} \cdot \frac{\frac{x}{z}}{z} \]
        3. frac-2negN/A

          \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{z + 1}{y}\right)}} \cdot \frac{\frac{x}{z}}{z} \]
        4. metadata-evalN/A

          \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{z + 1}{y}\right)} \cdot \frac{\frac{x}{z}}{z} \]
        5. times-fracN/A

          \[\leadsto \color{blue}{\frac{-1 \cdot \frac{x}{z}}{\left(\mathsf{neg}\left(\frac{z + 1}{y}\right)\right) \cdot z}} \]
        6. distribute-lft-neg-inN/A

          \[\leadsto \frac{-1 \cdot \frac{x}{z}}{\color{blue}{\mathsf{neg}\left(\frac{z + 1}{y} \cdot z\right)}} \]
        7. distribute-rgt-neg-inN/A

          \[\leadsto \frac{-1 \cdot \frac{x}{z}}{\color{blue}{\frac{z + 1}{y} \cdot \left(\mathsf{neg}\left(z\right)\right)}} \]
        8. times-fracN/A

          \[\leadsto \color{blue}{\frac{-1}{\frac{z + 1}{y}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
        9. metadata-evalN/A

          \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(1\right)}}{\frac{z + 1}{y}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        10. distribute-neg-fracN/A

          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\frac{1}{\frac{z + 1}{y}}\right)\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        11. clear-numN/A

          \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\frac{y}{z + 1}}\right)\right) \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        12. *-lowering-*.f64N/A

          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\frac{y}{z + 1}\right)\right) \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
        13. distribute-frac-neg2N/A

          \[\leadsto \color{blue}{\frac{y}{\mathsf{neg}\left(\left(z + 1\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        14. /-lowering-/.f64N/A

          \[\leadsto \color{blue}{\frac{y}{\mathsf{neg}\left(\left(z + 1\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        15. +-commutativeN/A

          \[\leadsto \frac{y}{\mathsf{neg}\left(\color{blue}{\left(1 + z\right)}\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        16. distribute-neg-inN/A

          \[\leadsto \frac{y}{\color{blue}{\left(\mathsf{neg}\left(1\right)\right) + \left(\mathsf{neg}\left(z\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        17. metadata-evalN/A

          \[\leadsto \frac{y}{\color{blue}{-1} + \left(\mathsf{neg}\left(z\right)\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        18. unsub-negN/A

          \[\leadsto \frac{y}{\color{blue}{-1 - z}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        19. --lowering--.f64N/A

          \[\leadsto \frac{y}{\color{blue}{-1 - z}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        20. /-lowering-/.f64N/A

          \[\leadsto \frac{y}{-1 - z} \cdot \color{blue}{\frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
        21. /-lowering-/.f64N/A

          \[\leadsto \frac{y}{-1 - z} \cdot \frac{\color{blue}{\frac{x}{z}}}{\mathsf{neg}\left(z\right)} \]
        22. neg-sub0N/A

          \[\leadsto \frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{\color{blue}{0 - z}} \]
        23. --lowering--.f6490.7

          \[\leadsto \frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{\color{blue}{0 - z}} \]
      6. Applied egg-rr90.7%

        \[\leadsto \color{blue}{\frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{0 - z}} \]
      7. Step-by-step derivation
        1. *-commutativeN/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{0 - z} \cdot \frac{y}{-1 - z}} \]
        2. associate-/l/N/A

          \[\leadsto \color{blue}{\frac{x}{\left(0 - z\right) \cdot z}} \cdot \frac{y}{-1 - z} \]
        3. frac-timesN/A

          \[\leadsto \color{blue}{\frac{x \cdot y}{\left(\left(0 - z\right) \cdot z\right) \cdot \left(-1 - z\right)}} \]
        4. sub0-negN/A

          \[\leadsto \frac{x \cdot y}{\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} \cdot z\right) \cdot \left(-1 - z\right)} \]
        5. distribute-lft-neg-inN/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{\left(\mathsf{neg}\left(z \cdot z\right)\right)} \cdot \left(-1 - z\right)} \]
        6. sub-negN/A

          \[\leadsto \frac{x \cdot y}{\left(\mathsf{neg}\left(z \cdot z\right)\right) \cdot \color{blue}{\left(-1 + \left(\mathsf{neg}\left(z\right)\right)\right)}} \]
        7. sub0-negN/A

          \[\leadsto \frac{x \cdot y}{\left(\mathsf{neg}\left(z \cdot z\right)\right) \cdot \left(-1 + \color{blue}{\left(0 - z\right)}\right)} \]
        8. distribute-rgt-inN/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{-1 \cdot \left(\mathsf{neg}\left(z \cdot z\right)\right) + \left(0 - z\right) \cdot \left(\mathsf{neg}\left(z \cdot z\right)\right)}} \]
        9. neg-mul-1N/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(z \cdot z\right)\right)\right)\right)} + \left(0 - z\right) \cdot \left(\mathsf{neg}\left(z \cdot z\right)\right)} \]
        10. remove-double-negN/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z} + \left(0 - z\right) \cdot \left(\mathsf{neg}\left(z \cdot z\right)\right)} \]
        11. distribute-rgt-neg-outN/A

          \[\leadsto \frac{x \cdot y}{z \cdot z + \color{blue}{\left(\mathsf{neg}\left(\left(0 - z\right) \cdot \left(z \cdot z\right)\right)\right)}} \]
        12. distribute-lft-neg-outN/A

          \[\leadsto \frac{x \cdot y}{z \cdot z + \color{blue}{\left(\mathsf{neg}\left(\left(0 - z\right)\right)\right) \cdot \left(z \cdot z\right)}} \]
        13. sub0-negN/A

          \[\leadsto \frac{x \cdot y}{z \cdot z + \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)}\right)\right) \cdot \left(z \cdot z\right)} \]
        14. remove-double-negN/A

          \[\leadsto \frac{x \cdot y}{z \cdot z + \color{blue}{z} \cdot \left(z \cdot z\right)} \]
        15. distribute-lft-inN/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot \left(z + z \cdot z\right)}} \]
        16. +-commutativeN/A

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

          \[\leadsto \frac{x \cdot y}{\color{blue}{\left(z \cdot z + z\right) \cdot z}} \]
        18. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z + z} \cdot \frac{y}{z}} \]
        19. *-lowering-*.f64N/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z + z} \cdot \frac{y}{z}} \]
      8. Applied egg-rr95.6%

        \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(z, z, z\right)} \cdot \frac{y}{z}} \]

      if 0.0 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 1.4999999999999999e191

      1. Initial program 89.0%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. *-commutativeN/A

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

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

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

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

          \[\leadsto \color{blue}{\frac{x}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \cdot y \]
        6. associate-*l*N/A

          \[\leadsto \frac{x}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot y \]
        7. *-lowering-*.f64N/A

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

          \[\leadsto \frac{x}{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}} \cdot y \]
        9. *-rgt-identityN/A

          \[\leadsto \frac{x}{z \cdot \left(z \cdot z + \color{blue}{z}\right)} \cdot y \]
        10. accelerator-lowering-fma.f6489.2

          \[\leadsto \frac{x}{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
      4. Applied egg-rr89.2%

        \[\leadsto \color{blue}{\frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)} \cdot y} \]
      5. Step-by-step derivation
        1. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z \cdot z + z}} \cdot y \]
        2. /-lowering-/.f64N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z \cdot z + z}} \cdot y \]
        3. /-lowering-/.f64N/A

          \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{z \cdot z + z} \cdot y \]
        4. accelerator-lowering-fma.f6489.2

          \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
      6. Applied egg-rr89.2%

        \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]

      if 1.4999999999999999e191 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

      1. Initial program 71.4%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
        2. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
        4. clear-numN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
        5. inv-powN/A

          \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
        6. clear-numN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
        7. inv-powN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
        8. unpow-prod-downN/A

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

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

          \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
      4. Applied egg-rr98.0%

        \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
      5. Taylor expanded in z around inf

        \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      6. Step-by-step derivation
        1. /-lowering-/.f6498.0

          \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      7. Simplified98.0%

        \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      8. Step-by-step derivation
        1. associate-/l*N/A

          \[\leadsto \color{blue}{\frac{y}{z} \cdot \frac{\frac{x}{z}}{z}} \]
        2. clear-numN/A

          \[\leadsto \color{blue}{\frac{1}{\frac{z}{y}}} \cdot \frac{\frac{x}{z}}{z} \]
        3. associate-/r*N/A

          \[\leadsto \frac{1}{\frac{z}{y}} \cdot \color{blue}{\frac{x}{z \cdot z}} \]
        4. frac-timesN/A

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

          \[\leadsto \frac{\color{blue}{x}}{\frac{z}{y} \cdot \left(z \cdot z\right)} \]
        6. /-lowering-/.f64N/A

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

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
        8. *-lowering-*.f64N/A

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
        9. *-lowering-*.f64N/A

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right)} \cdot z} \]
        10. /-lowering-/.f6485.2

          \[\leadsto \frac{x}{\left(\color{blue}{\frac{z}{y}} \cdot z\right) \cdot z} \]
      9. Applied egg-rr85.2%

        \[\leadsto \color{blue}{\frac{x}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
    3. Recombined 3 regimes into one program.
    4. Final simplification91.3%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 0:\\ \;\;\;\;\frac{y}{z} \cdot \frac{x}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{elif}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 1.5 \cdot 10^{+191}:\\ \;\;\;\;y \cdot \frac{\frac{x}{z}}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z \cdot \left(z \cdot \frac{z}{y}\right)}\\ \end{array} \]
    5. Add Preprocessing

    Alternative 5: 95.6% accurate, 0.4× speedup?

    \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ \begin{array}{l} t_0 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;t\_0 \leq 0:\\ \;\;\;\;\frac{y\_m}{z} \cdot \frac{x\_m}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{elif}\;t\_0 \leq 1.5 \cdot 10^{+191}:\\ \;\;\;\;y\_m \cdot \frac{x\_m}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\ \end{array}\right) \end{array} \end{array} \]
    x\_m = (fabs.f64 x)
    x\_s = (copysign.f64 #s(literal 1 binary64) x)
    y\_m = (fabs.f64 y)
    y\_s = (copysign.f64 #s(literal 1 binary64) y)
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    (FPCore (y_s x_s x_m y_m z)
     :precision binary64
     (let* ((t_0 (* (* z z) (+ z 1.0))))
       (*
        y_s
        (*
         x_s
         (if (<= t_0 0.0)
           (* (/ y_m z) (/ x_m (fma z z z)))
           (if (<= t_0 1.5e+191)
             (* y_m (/ x_m (* z (fma z z z))))
             (/ x_m (* z (* z (/ z y_m))))))))))
    x\_m = fabs(x);
    x\_s = copysign(1.0, x);
    y\_m = fabs(y);
    y\_s = copysign(1.0, y);
    assert(x_m < y_m && y_m < z);
    double code(double y_s, double x_s, double x_m, double y_m, double z) {
    	double t_0 = (z * z) * (z + 1.0);
    	double tmp;
    	if (t_0 <= 0.0) {
    		tmp = (y_m / z) * (x_m / fma(z, z, z));
    	} else if (t_0 <= 1.5e+191) {
    		tmp = y_m * (x_m / (z * fma(z, z, z)));
    	} else {
    		tmp = x_m / (z * (z * (z / y_m)));
    	}
    	return y_s * (x_s * tmp);
    }
    
    x\_m = abs(x)
    x\_s = copysign(1.0, x)
    y\_m = abs(y)
    y\_s = copysign(1.0, y)
    x_m, y_m, z = sort([x_m, y_m, z])
    function code(y_s, x_s, x_m, y_m, z)
    	t_0 = Float64(Float64(z * z) * Float64(z + 1.0))
    	tmp = 0.0
    	if (t_0 <= 0.0)
    		tmp = Float64(Float64(y_m / z) * Float64(x_m / fma(z, z, z)));
    	elseif (t_0 <= 1.5e+191)
    		tmp = Float64(y_m * Float64(x_m / Float64(z * fma(z, z, z))));
    	else
    		tmp = Float64(x_m / Float64(z * Float64(z * Float64(z / y_m))));
    	end
    	return Float64(y_s * Float64(x_s * tmp))
    end
    
    x\_m = N[Abs[x], $MachinePrecision]
    x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    y\_m = N[Abs[y], $MachinePrecision]
    y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := Block[{t$95$0 = N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(x$95$s * If[LessEqual[t$95$0, 0.0], N[(N[(y$95$m / z), $MachinePrecision] * N[(x$95$m / N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 1.5e+191], N[(y$95$m * N[(x$95$m / N[(z * N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x$95$m / N[(z * N[(z * N[(z / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]), $MachinePrecision]]
    
    \begin{array}{l}
    x\_m = \left|x\right|
    \\
    x\_s = \mathsf{copysign}\left(1, x\right)
    \\
    y\_m = \left|y\right|
    \\
    y\_s = \mathsf{copysign}\left(1, y\right)
    \\
    [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
    \\
    \begin{array}{l}
    t_0 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\
    y\_s \cdot \left(x\_s \cdot \begin{array}{l}
    \mathbf{if}\;t\_0 \leq 0:\\
    \;\;\;\;\frac{y\_m}{z} \cdot \frac{x\_m}{\mathsf{fma}\left(z, z, z\right)}\\
    
    \mathbf{elif}\;t\_0 \leq 1.5 \cdot 10^{+191}:\\
    \;\;\;\;y\_m \cdot \frac{x\_m}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\
    
    
    \end{array}\right)
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 0.0

      1. Initial program 72.0%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
        2. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
        4. clear-numN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
        5. inv-powN/A

          \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
        6. clear-numN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
        7. inv-powN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
        8. unpow-prod-downN/A

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

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

          \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
      4. Applied egg-rr98.2%

        \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
      5. Step-by-step derivation
        1. associate-/l*N/A

          \[\leadsto \color{blue}{\frac{y}{z + 1} \cdot \frac{\frac{x}{z}}{z}} \]
        2. clear-numN/A

          \[\leadsto \color{blue}{\frac{1}{\frac{z + 1}{y}}} \cdot \frac{\frac{x}{z}}{z} \]
        3. frac-2negN/A

          \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left(\frac{z + 1}{y}\right)}} \cdot \frac{\frac{x}{z}}{z} \]
        4. metadata-evalN/A

          \[\leadsto \frac{\color{blue}{-1}}{\mathsf{neg}\left(\frac{z + 1}{y}\right)} \cdot \frac{\frac{x}{z}}{z} \]
        5. times-fracN/A

          \[\leadsto \color{blue}{\frac{-1 \cdot \frac{x}{z}}{\left(\mathsf{neg}\left(\frac{z + 1}{y}\right)\right) \cdot z}} \]
        6. distribute-lft-neg-inN/A

          \[\leadsto \frac{-1 \cdot \frac{x}{z}}{\color{blue}{\mathsf{neg}\left(\frac{z + 1}{y} \cdot z\right)}} \]
        7. distribute-rgt-neg-inN/A

          \[\leadsto \frac{-1 \cdot \frac{x}{z}}{\color{blue}{\frac{z + 1}{y} \cdot \left(\mathsf{neg}\left(z\right)\right)}} \]
        8. times-fracN/A

          \[\leadsto \color{blue}{\frac{-1}{\frac{z + 1}{y}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
        9. metadata-evalN/A

          \[\leadsto \frac{\color{blue}{\mathsf{neg}\left(1\right)}}{\frac{z + 1}{y}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        10. distribute-neg-fracN/A

          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\frac{1}{\frac{z + 1}{y}}\right)\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        11. clear-numN/A

          \[\leadsto \left(\mathsf{neg}\left(\color{blue}{\frac{y}{z + 1}}\right)\right) \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        12. *-lowering-*.f64N/A

          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(\frac{y}{z + 1}\right)\right) \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
        13. distribute-frac-neg2N/A

          \[\leadsto \color{blue}{\frac{y}{\mathsf{neg}\left(\left(z + 1\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        14. /-lowering-/.f64N/A

          \[\leadsto \color{blue}{\frac{y}{\mathsf{neg}\left(\left(z + 1\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        15. +-commutativeN/A

          \[\leadsto \frac{y}{\mathsf{neg}\left(\color{blue}{\left(1 + z\right)}\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        16. distribute-neg-inN/A

          \[\leadsto \frac{y}{\color{blue}{\left(\mathsf{neg}\left(1\right)\right) + \left(\mathsf{neg}\left(z\right)\right)}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        17. metadata-evalN/A

          \[\leadsto \frac{y}{\color{blue}{-1} + \left(\mathsf{neg}\left(z\right)\right)} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        18. unsub-negN/A

          \[\leadsto \frac{y}{\color{blue}{-1 - z}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        19. --lowering--.f64N/A

          \[\leadsto \frac{y}{\color{blue}{-1 - z}} \cdot \frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)} \]
        20. /-lowering-/.f64N/A

          \[\leadsto \frac{y}{-1 - z} \cdot \color{blue}{\frac{\frac{x}{z}}{\mathsf{neg}\left(z\right)}} \]
        21. /-lowering-/.f64N/A

          \[\leadsto \frac{y}{-1 - z} \cdot \frac{\color{blue}{\frac{x}{z}}}{\mathsf{neg}\left(z\right)} \]
        22. neg-sub0N/A

          \[\leadsto \frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{\color{blue}{0 - z}} \]
        23. --lowering--.f6490.7

          \[\leadsto \frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{\color{blue}{0 - z}} \]
      6. Applied egg-rr90.7%

        \[\leadsto \color{blue}{\frac{y}{-1 - z} \cdot \frac{\frac{x}{z}}{0 - z}} \]
      7. Step-by-step derivation
        1. *-commutativeN/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{0 - z} \cdot \frac{y}{-1 - z}} \]
        2. associate-/l/N/A

          \[\leadsto \color{blue}{\frac{x}{\left(0 - z\right) \cdot z}} \cdot \frac{y}{-1 - z} \]
        3. frac-timesN/A

          \[\leadsto \color{blue}{\frac{x \cdot y}{\left(\left(0 - z\right) \cdot z\right) \cdot \left(-1 - z\right)}} \]
        4. sub0-negN/A

          \[\leadsto \frac{x \cdot y}{\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)} \cdot z\right) \cdot \left(-1 - z\right)} \]
        5. distribute-lft-neg-inN/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{\left(\mathsf{neg}\left(z \cdot z\right)\right)} \cdot \left(-1 - z\right)} \]
        6. sub-negN/A

          \[\leadsto \frac{x \cdot y}{\left(\mathsf{neg}\left(z \cdot z\right)\right) \cdot \color{blue}{\left(-1 + \left(\mathsf{neg}\left(z\right)\right)\right)}} \]
        7. sub0-negN/A

          \[\leadsto \frac{x \cdot y}{\left(\mathsf{neg}\left(z \cdot z\right)\right) \cdot \left(-1 + \color{blue}{\left(0 - z\right)}\right)} \]
        8. distribute-rgt-inN/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{-1 \cdot \left(\mathsf{neg}\left(z \cdot z\right)\right) + \left(0 - z\right) \cdot \left(\mathsf{neg}\left(z \cdot z\right)\right)}} \]
        9. neg-mul-1N/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{\left(\mathsf{neg}\left(\left(\mathsf{neg}\left(z \cdot z\right)\right)\right)\right)} + \left(0 - z\right) \cdot \left(\mathsf{neg}\left(z \cdot z\right)\right)} \]
        10. remove-double-negN/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z} + \left(0 - z\right) \cdot \left(\mathsf{neg}\left(z \cdot z\right)\right)} \]
        11. distribute-rgt-neg-outN/A

          \[\leadsto \frac{x \cdot y}{z \cdot z + \color{blue}{\left(\mathsf{neg}\left(\left(0 - z\right) \cdot \left(z \cdot z\right)\right)\right)}} \]
        12. distribute-lft-neg-outN/A

          \[\leadsto \frac{x \cdot y}{z \cdot z + \color{blue}{\left(\mathsf{neg}\left(\left(0 - z\right)\right)\right) \cdot \left(z \cdot z\right)}} \]
        13. sub0-negN/A

          \[\leadsto \frac{x \cdot y}{z \cdot z + \left(\mathsf{neg}\left(\color{blue}{\left(\mathsf{neg}\left(z\right)\right)}\right)\right) \cdot \left(z \cdot z\right)} \]
        14. remove-double-negN/A

          \[\leadsto \frac{x \cdot y}{z \cdot z + \color{blue}{z} \cdot \left(z \cdot z\right)} \]
        15. distribute-lft-inN/A

          \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot \left(z + z \cdot z\right)}} \]
        16. +-commutativeN/A

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

          \[\leadsto \frac{x \cdot y}{\color{blue}{\left(z \cdot z + z\right) \cdot z}} \]
        18. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z + z} \cdot \frac{y}{z}} \]
        19. *-lowering-*.f64N/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z + z} \cdot \frac{y}{z}} \]
      8. Applied egg-rr95.6%

        \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(z, z, z\right)} \cdot \frac{y}{z}} \]

      if 0.0 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 1.4999999999999999e191

      1. Initial program 89.0%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. *-commutativeN/A

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

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

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

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

          \[\leadsto \color{blue}{\frac{x}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \cdot y \]
        6. associate-*l*N/A

          \[\leadsto \frac{x}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot y \]
        7. *-lowering-*.f64N/A

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

          \[\leadsto \frac{x}{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}} \cdot y \]
        9. *-rgt-identityN/A

          \[\leadsto \frac{x}{z \cdot \left(z \cdot z + \color{blue}{z}\right)} \cdot y \]
        10. accelerator-lowering-fma.f6489.2

          \[\leadsto \frac{x}{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
      4. Applied egg-rr89.2%

        \[\leadsto \color{blue}{\frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)} \cdot y} \]

      if 1.4999999999999999e191 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

      1. Initial program 71.4%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
        2. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
        4. clear-numN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
        5. inv-powN/A

          \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
        6. clear-numN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
        7. inv-powN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
        8. unpow-prod-downN/A

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

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

          \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
      4. Applied egg-rr98.0%

        \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
      5. Taylor expanded in z around inf

        \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      6. Step-by-step derivation
        1. /-lowering-/.f6498.0

          \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      7. Simplified98.0%

        \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
      8. Step-by-step derivation
        1. associate-/l*N/A

          \[\leadsto \color{blue}{\frac{y}{z} \cdot \frac{\frac{x}{z}}{z}} \]
        2. clear-numN/A

          \[\leadsto \color{blue}{\frac{1}{\frac{z}{y}}} \cdot \frac{\frac{x}{z}}{z} \]
        3. associate-/r*N/A

          \[\leadsto \frac{1}{\frac{z}{y}} \cdot \color{blue}{\frac{x}{z \cdot z}} \]
        4. frac-timesN/A

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

          \[\leadsto \frac{\color{blue}{x}}{\frac{z}{y} \cdot \left(z \cdot z\right)} \]
        6. /-lowering-/.f64N/A

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

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
        8. *-lowering-*.f64N/A

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
        9. *-lowering-*.f64N/A

          \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right)} \cdot z} \]
        10. /-lowering-/.f6485.2

          \[\leadsto \frac{x}{\left(\color{blue}{\frac{z}{y}} \cdot z\right) \cdot z} \]
      9. Applied egg-rr85.2%

        \[\leadsto \color{blue}{\frac{x}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
    3. Recombined 3 regimes into one program.
    4. Final simplification91.3%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 0:\\ \;\;\;\;\frac{y}{z} \cdot \frac{x}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{elif}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 1.5 \cdot 10^{+191}:\\ \;\;\;\;y \cdot \frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z \cdot \left(z \cdot \frac{z}{y}\right)}\\ \end{array} \]
    5. Add Preprocessing

    Alternative 6: 96.6% accurate, 0.4× speedup?

    \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;\frac{x\_m \cdot y\_m}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \leq 0:\\ \;\;\;\;\frac{x\_m}{\left(z + 1\right) \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{y\_m \cdot \frac{x\_m}{\mathsf{fma}\left(z, z, z\right)}}{z}\\ \end{array}\right) \end{array} \]
    x\_m = (fabs.f64 x)
    x\_s = (copysign.f64 #s(literal 1 binary64) x)
    y\_m = (fabs.f64 y)
    y\_s = (copysign.f64 #s(literal 1 binary64) y)
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    (FPCore (y_s x_s x_m y_m z)
     :precision binary64
     (*
      y_s
      (*
       x_s
       (if (<= (/ (* x_m y_m) (* (* z z) (+ z 1.0))) 0.0)
         (/ x_m (* (+ z 1.0) (* z (/ z y_m))))
         (/ (* y_m (/ x_m (fma z z z))) z)))))
    x\_m = fabs(x);
    x\_s = copysign(1.0, x);
    y\_m = fabs(y);
    y\_s = copysign(1.0, y);
    assert(x_m < y_m && y_m < z);
    double code(double y_s, double x_s, double x_m, double y_m, double z) {
    	double tmp;
    	if (((x_m * y_m) / ((z * z) * (z + 1.0))) <= 0.0) {
    		tmp = x_m / ((z + 1.0) * (z * (z / y_m)));
    	} else {
    		tmp = (y_m * (x_m / fma(z, z, z))) / z;
    	}
    	return y_s * (x_s * tmp);
    }
    
    x\_m = abs(x)
    x\_s = copysign(1.0, x)
    y\_m = abs(y)
    y\_s = copysign(1.0, y)
    x_m, y_m, z = sort([x_m, y_m, z])
    function code(y_s, x_s, x_m, y_m, z)
    	tmp = 0.0
    	if (Float64(Float64(x_m * y_m) / Float64(Float64(z * z) * Float64(z + 1.0))) <= 0.0)
    		tmp = Float64(x_m / Float64(Float64(z + 1.0) * Float64(z * Float64(z / y_m))));
    	else
    		tmp = Float64(Float64(y_m * Float64(x_m / fma(z, z, z))) / z);
    	end
    	return Float64(y_s * Float64(x_s * tmp))
    end
    
    x\_m = N[Abs[x], $MachinePrecision]
    x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    y\_m = N[Abs[y], $MachinePrecision]
    y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * If[LessEqual[N[(N[(x$95$m * y$95$m), $MachinePrecision] / N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 0.0], N[(x$95$m / N[(N[(z + 1.0), $MachinePrecision] * N[(z * N[(z / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(y$95$m * N[(x$95$m / N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
    
    \begin{array}{l}
    x\_m = \left|x\right|
    \\
    x\_s = \mathsf{copysign}\left(1, x\right)
    \\
    y\_m = \left|y\right|
    \\
    y\_s = \mathsf{copysign}\left(1, y\right)
    \\
    [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
    \\
    y\_s \cdot \left(x\_s \cdot \begin{array}{l}
    \mathbf{if}\;\frac{x\_m \cdot y\_m}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \leq 0:\\
    \;\;\;\;\frac{x\_m}{\left(z + 1\right) \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{y\_m \cdot \frac{x\_m}{\mathsf{fma}\left(z, z, z\right)}}{z}\\
    
    
    \end{array}\right)
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if (/.f64 (*.f64 x y) (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))) < -0.0

      1. Initial program 85.3%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. associate-/l*N/A

          \[\leadsto \color{blue}{x \cdot \frac{y}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \]
        2. clear-numN/A

          \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{\left(z \cdot z\right) \cdot \left(z + 1\right)}{y}}} \]
        3. un-div-invN/A

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

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

          \[\leadsto \frac{x}{\color{blue}{\frac{\left(z \cdot z\right) \cdot \left(z + 1\right)}{y}}} \]
        6. associate-*l*N/A

          \[\leadsto \frac{x}{\frac{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}}{y}} \]
        7. *-lowering-*.f64N/A

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

          \[\leadsto \frac{x}{\frac{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}}{y}} \]
        9. *-rgt-identityN/A

          \[\leadsto \frac{x}{\frac{z \cdot \left(z \cdot z + \color{blue}{z}\right)}{y}} \]
        10. accelerator-lowering-fma.f6489.0

          \[\leadsto \frac{x}{\frac{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}}{y}} \]
      4. Applied egg-rr89.0%

        \[\leadsto \color{blue}{\frac{x}{\frac{z \cdot \mathsf{fma}\left(z, z, z\right)}{y}}} \]
      5. Step-by-step derivation
        1. *-commutativeN/A

          \[\leadsto \frac{x}{\frac{\color{blue}{\left(z \cdot z + z\right) \cdot z}}{y}} \]
        2. associate-*l/N/A

          \[\leadsto \frac{x}{\color{blue}{\frac{z \cdot z + z}{y} \cdot z}} \]
        3. distribute-lft1-inN/A

          \[\leadsto \frac{x}{\frac{\color{blue}{\left(z + 1\right) \cdot z}}{y} \cdot z} \]
        4. associate-/l*N/A

          \[\leadsto \frac{x}{\color{blue}{\left(\left(z + 1\right) \cdot \frac{z}{y}\right)} \cdot z} \]
        5. associate-*l*N/A

          \[\leadsto \frac{x}{\color{blue}{\left(z + 1\right) \cdot \left(\frac{z}{y} \cdot z\right)}} \]
        6. *-lowering-*.f64N/A

          \[\leadsto \frac{x}{\color{blue}{\left(z + 1\right) \cdot \left(\frac{z}{y} \cdot z\right)}} \]
        7. +-lowering-+.f64N/A

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

          \[\leadsto \frac{x}{\left(z + 1\right) \cdot \color{blue}{\left(\frac{z}{y} \cdot z\right)}} \]
        9. /-lowering-/.f6491.5

          \[\leadsto \frac{x}{\left(z + 1\right) \cdot \left(\color{blue}{\frac{z}{y}} \cdot z\right)} \]
      6. Applied egg-rr91.5%

        \[\leadsto \frac{x}{\color{blue}{\left(z + 1\right) \cdot \left(\frac{z}{y} \cdot z\right)}} \]

      if -0.0 < (/.f64 (*.f64 x y) (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))))

      1. Initial program 65.9%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
        2. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
        4. clear-numN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
        5. inv-powN/A

          \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
        6. clear-numN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
        7. inv-powN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
        8. unpow-prod-downN/A

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

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

          \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
      4. Applied egg-rr93.0%

        \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
      5. Step-by-step derivation
        1. associate-*l/N/A

          \[\leadsto \frac{\color{blue}{\frac{y \cdot \frac{x}{z}}{z + 1}}}{z} \]
        2. *-commutativeN/A

          \[\leadsto \frac{\frac{\color{blue}{\frac{x}{z} \cdot y}}{z + 1}}{z} \]
        3. associate-*l/N/A

          \[\leadsto \frac{\color{blue}{\frac{\frac{x}{z}}{z + 1} \cdot y}}{z} \]
        4. *-lowering-*.f64N/A

          \[\leadsto \frac{\color{blue}{\frac{\frac{x}{z}}{z + 1} \cdot y}}{z} \]
        5. associate-/r*N/A

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

          \[\leadsto \frac{\frac{x}{\color{blue}{\left(z + 1\right) \cdot z}} \cdot y}{z} \]
        7. distribute-lft1-inN/A

          \[\leadsto \frac{\frac{x}{\color{blue}{z \cdot z + z}} \cdot y}{z} \]
        8. /-lowering-/.f64N/A

          \[\leadsto \frac{\color{blue}{\frac{x}{z \cdot z + z}} \cdot y}{z} \]
        9. accelerator-lowering-fma.f6487.3

          \[\leadsto \frac{\frac{x}{\color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y}{z} \]
      6. Applied egg-rr87.3%

        \[\leadsto \frac{\color{blue}{\frac{x}{\mathsf{fma}\left(z, z, z\right)} \cdot y}}{z} \]
    3. Recombined 2 regimes into one program.
    4. Final simplification89.9%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \leq 0:\\ \;\;\;\;\frac{x}{\left(z + 1\right) \cdot \left(z \cdot \frac{z}{y}\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot \frac{x}{\mathsf{fma}\left(z, z, z\right)}}{z}\\ \end{array} \]
    5. Add Preprocessing

    Alternative 7: 96.8% accurate, 0.4× speedup?

    \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;\frac{x\_m \cdot y\_m}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \leq 10^{-119}:\\ \;\;\;\;\frac{x\_m}{\mathsf{fma}\left(z, z, z\right) \cdot \frac{z}{y\_m}}\\ \mathbf{else}:\\ \;\;\;\;\frac{y\_m \cdot \frac{x\_m}{\mathsf{fma}\left(z, z, z\right)}}{z}\\ \end{array}\right) \end{array} \]
    x\_m = (fabs.f64 x)
    x\_s = (copysign.f64 #s(literal 1 binary64) x)
    y\_m = (fabs.f64 y)
    y\_s = (copysign.f64 #s(literal 1 binary64) y)
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    (FPCore (y_s x_s x_m y_m z)
     :precision binary64
     (*
      y_s
      (*
       x_s
       (if (<= (/ (* x_m y_m) (* (* z z) (+ z 1.0))) 1e-119)
         (/ x_m (* (fma z z z) (/ z y_m)))
         (/ (* y_m (/ x_m (fma z z z))) z)))))
    x\_m = fabs(x);
    x\_s = copysign(1.0, x);
    y\_m = fabs(y);
    y\_s = copysign(1.0, y);
    assert(x_m < y_m && y_m < z);
    double code(double y_s, double x_s, double x_m, double y_m, double z) {
    	double tmp;
    	if (((x_m * y_m) / ((z * z) * (z + 1.0))) <= 1e-119) {
    		tmp = x_m / (fma(z, z, z) * (z / y_m));
    	} else {
    		tmp = (y_m * (x_m / fma(z, z, z))) / z;
    	}
    	return y_s * (x_s * tmp);
    }
    
    x\_m = abs(x)
    x\_s = copysign(1.0, x)
    y\_m = abs(y)
    y\_s = copysign(1.0, y)
    x_m, y_m, z = sort([x_m, y_m, z])
    function code(y_s, x_s, x_m, y_m, z)
    	tmp = 0.0
    	if (Float64(Float64(x_m * y_m) / Float64(Float64(z * z) * Float64(z + 1.0))) <= 1e-119)
    		tmp = Float64(x_m / Float64(fma(z, z, z) * Float64(z / y_m)));
    	else
    		tmp = Float64(Float64(y_m * Float64(x_m / fma(z, z, z))) / z);
    	end
    	return Float64(y_s * Float64(x_s * tmp))
    end
    
    x\_m = N[Abs[x], $MachinePrecision]
    x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    y\_m = N[Abs[y], $MachinePrecision]
    y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * If[LessEqual[N[(N[(x$95$m * y$95$m), $MachinePrecision] / N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 1e-119], N[(x$95$m / N[(N[(z * z + z), $MachinePrecision] * N[(z / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(y$95$m * N[(x$95$m / N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
    
    \begin{array}{l}
    x\_m = \left|x\right|
    \\
    x\_s = \mathsf{copysign}\left(1, x\right)
    \\
    y\_m = \left|y\right|
    \\
    y\_s = \mathsf{copysign}\left(1, y\right)
    \\
    [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
    \\
    y\_s \cdot \left(x\_s \cdot \begin{array}{l}
    \mathbf{if}\;\frac{x\_m \cdot y\_m}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \leq 10^{-119}:\\
    \;\;\;\;\frac{x\_m}{\mathsf{fma}\left(z, z, z\right) \cdot \frac{z}{y\_m}}\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{y\_m \cdot \frac{x\_m}{\mathsf{fma}\left(z, z, z\right)}}{z}\\
    
    
    \end{array}\right)
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if (/.f64 (*.f64 x y) (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))) < 1.00000000000000001e-119

      1. Initial program 85.7%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. associate-/l*N/A

          \[\leadsto \color{blue}{x \cdot \frac{y}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \]
        2. clear-numN/A

          \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{\left(z \cdot z\right) \cdot \left(z + 1\right)}{y}}} \]
        3. un-div-invN/A

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

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

          \[\leadsto \frac{x}{\color{blue}{\frac{\left(z \cdot z\right) \cdot \left(z + 1\right)}{y}}} \]
        6. associate-*l*N/A

          \[\leadsto \frac{x}{\frac{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}}{y}} \]
        7. *-lowering-*.f64N/A

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

          \[\leadsto \frac{x}{\frac{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}}{y}} \]
        9. *-rgt-identityN/A

          \[\leadsto \frac{x}{\frac{z \cdot \left(z \cdot z + \color{blue}{z}\right)}{y}} \]
        10. accelerator-lowering-fma.f6488.7

          \[\leadsto \frac{x}{\frac{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}}{y}} \]
      4. Applied egg-rr88.7%

        \[\leadsto \color{blue}{\frac{x}{\frac{z \cdot \mathsf{fma}\left(z, z, z\right)}{y}}} \]
      5. Step-by-step derivation
        1. *-commutativeN/A

          \[\leadsto \frac{x}{\frac{\color{blue}{\left(z \cdot z + z\right) \cdot z}}{y}} \]
        2. associate-/l*N/A

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

          \[\leadsto \frac{x}{\color{blue}{\left(z \cdot z + z\right) \cdot \frac{z}{y}}} \]
        4. accelerator-lowering-fma.f64N/A

          \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(z, z, z\right)} \cdot \frac{z}{y}} \]
        5. /-lowering-/.f6491.1

          \[\leadsto \frac{x}{\mathsf{fma}\left(z, z, z\right) \cdot \color{blue}{\frac{z}{y}}} \]
      6. Applied egg-rr91.1%

        \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(z, z, z\right) \cdot \frac{z}{y}}} \]

      if 1.00000000000000001e-119 < (/.f64 (*.f64 x y) (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))))

      1. Initial program 64.1%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
        2. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
        4. clear-numN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
        5. inv-powN/A

          \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
        6. clear-numN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
        7. inv-powN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
        8. unpow-prod-downN/A

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

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

          \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
      4. Applied egg-rr92.7%

        \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
      5. Step-by-step derivation
        1. associate-*l/N/A

          \[\leadsto \frac{\color{blue}{\frac{y \cdot \frac{x}{z}}{z + 1}}}{z} \]
        2. *-commutativeN/A

          \[\leadsto \frac{\frac{\color{blue}{\frac{x}{z} \cdot y}}{z + 1}}{z} \]
        3. associate-*l/N/A

          \[\leadsto \frac{\color{blue}{\frac{\frac{x}{z}}{z + 1} \cdot y}}{z} \]
        4. *-lowering-*.f64N/A

          \[\leadsto \frac{\color{blue}{\frac{\frac{x}{z}}{z + 1} \cdot y}}{z} \]
        5. associate-/r*N/A

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

          \[\leadsto \frac{\frac{x}{\color{blue}{\left(z + 1\right) \cdot z}} \cdot y}{z} \]
        7. distribute-lft1-inN/A

          \[\leadsto \frac{\frac{x}{\color{blue}{z \cdot z + z}} \cdot y}{z} \]
        8. /-lowering-/.f64N/A

          \[\leadsto \frac{\color{blue}{\frac{x}{z \cdot z + z}} \cdot y}{z} \]
        9. accelerator-lowering-fma.f6486.7

          \[\leadsto \frac{\frac{x}{\color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y}{z} \]
      6. Applied egg-rr86.7%

        \[\leadsto \frac{\color{blue}{\frac{x}{\mathsf{fma}\left(z, z, z\right)} \cdot y}}{z} \]
    3. Recombined 2 regimes into one program.
    4. Final simplification89.5%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \leq 10^{-119}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(z, z, z\right) \cdot \frac{z}{y}}\\ \mathbf{else}:\\ \;\;\;\;\frac{y \cdot \frac{x}{\mathsf{fma}\left(z, z, z\right)}}{z}\\ \end{array} \]
    5. Add Preprocessing

    Alternative 8: 92.5% accurate, 0.5× speedup?

    \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ \begin{array}{l} t_0 := z \cdot \mathsf{fma}\left(z, z, z\right)\\ t_1 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -1 \cdot 10^{+14}:\\ \;\;\;\;x\_m \cdot \frac{y\_m}{t\_0}\\ \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-321}:\\ \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{z}\\ \mathbf{else}:\\ \;\;\;\;y\_m \cdot \frac{x\_m}{t\_0}\\ \end{array}\right) \end{array} \end{array} \]
    x\_m = (fabs.f64 x)
    x\_s = (copysign.f64 #s(literal 1 binary64) x)
    y\_m = (fabs.f64 y)
    y\_s = (copysign.f64 #s(literal 1 binary64) y)
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    (FPCore (y_s x_s x_m y_m z)
     :precision binary64
     (let* ((t_0 (* z (fma z z z))) (t_1 (* (* z z) (+ z 1.0))))
       (*
        y_s
        (*
         x_s
         (if (<= t_1 -1e+14)
           (* x_m (/ y_m t_0))
           (if (<= t_1 5e-321) (/ (* (/ x_m z) y_m) z) (* y_m (/ x_m t_0))))))))
    x\_m = fabs(x);
    x\_s = copysign(1.0, x);
    y\_m = fabs(y);
    y\_s = copysign(1.0, y);
    assert(x_m < y_m && y_m < z);
    double code(double y_s, double x_s, double x_m, double y_m, double z) {
    	double t_0 = z * fma(z, z, z);
    	double t_1 = (z * z) * (z + 1.0);
    	double tmp;
    	if (t_1 <= -1e+14) {
    		tmp = x_m * (y_m / t_0);
    	} else if (t_1 <= 5e-321) {
    		tmp = ((x_m / z) * y_m) / z;
    	} else {
    		tmp = y_m * (x_m / t_0);
    	}
    	return y_s * (x_s * tmp);
    }
    
    x\_m = abs(x)
    x\_s = copysign(1.0, x)
    y\_m = abs(y)
    y\_s = copysign(1.0, y)
    x_m, y_m, z = sort([x_m, y_m, z])
    function code(y_s, x_s, x_m, y_m, z)
    	t_0 = Float64(z * fma(z, z, z))
    	t_1 = Float64(Float64(z * z) * Float64(z + 1.0))
    	tmp = 0.0
    	if (t_1 <= -1e+14)
    		tmp = Float64(x_m * Float64(y_m / t_0));
    	elseif (t_1 <= 5e-321)
    		tmp = Float64(Float64(Float64(x_m / z) * y_m) / z);
    	else
    		tmp = Float64(y_m * Float64(x_m / t_0));
    	end
    	return Float64(y_s * Float64(x_s * tmp))
    end
    
    x\_m = N[Abs[x], $MachinePrecision]
    x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    y\_m = N[Abs[y], $MachinePrecision]
    y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
    code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := Block[{t$95$0 = N[(z * N[(z * z + z), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(x$95$s * If[LessEqual[t$95$1, -1e+14], N[(x$95$m * N[(y$95$m / t$95$0), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 5e-321], N[(N[(N[(x$95$m / z), $MachinePrecision] * y$95$m), $MachinePrecision] / z), $MachinePrecision], N[(y$95$m * N[(x$95$m / t$95$0), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]), $MachinePrecision]]]
    
    \begin{array}{l}
    x\_m = \left|x\right|
    \\
    x\_s = \mathsf{copysign}\left(1, x\right)
    \\
    y\_m = \left|y\right|
    \\
    y\_s = \mathsf{copysign}\left(1, y\right)
    \\
    [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
    \\
    \begin{array}{l}
    t_0 := z \cdot \mathsf{fma}\left(z, z, z\right)\\
    t_1 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\
    y\_s \cdot \left(x\_s \cdot \begin{array}{l}
    \mathbf{if}\;t\_1 \leq -1 \cdot 10^{+14}:\\
    \;\;\;\;x\_m \cdot \frac{y\_m}{t\_0}\\
    
    \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-321}:\\
    \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{z}\\
    
    \mathbf{else}:\\
    \;\;\;\;y\_m \cdot \frac{x\_m}{t\_0}\\
    
    
    \end{array}\right)
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < -1e14

      1. Initial program 81.7%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. associate-/l*N/A

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

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

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

          \[\leadsto \color{blue}{\frac{y}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \cdot x \]
        5. associate-*l*N/A

          \[\leadsto \frac{y}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot x \]
        6. *-lowering-*.f64N/A

          \[\leadsto \frac{y}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot x \]
        7. distribute-lft-inN/A

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

          \[\leadsto \frac{y}{z \cdot \left(z \cdot z + \color{blue}{z}\right)} \cdot x \]
        9. accelerator-lowering-fma.f6488.9

          \[\leadsto \frac{y}{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot x \]
      4. Applied egg-rr88.9%

        \[\leadsto \color{blue}{\frac{y}{z \cdot \mathsf{fma}\left(z, z, z\right)} \cdot x} \]

      if -1e14 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 4.99994e-321

      1. Initial program 59.8%

        \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. times-fracN/A

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
        2. associate-/r*N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
        3. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
        4. clear-numN/A

          \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
        5. inv-powN/A

          \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
        6. clear-numN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
        7. inv-powN/A

          \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
        8. unpow-prod-downN/A

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

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

          \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
      4. Applied egg-rr98.0%

        \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
      5. Taylor expanded in z around 0

        \[\leadsto \frac{\color{blue}{y} \cdot \frac{x}{z}}{z} \]
      6. Step-by-step derivation
        1. Simplified98.0%

          \[\leadsto \frac{\color{blue}{y} \cdot \frac{x}{z}}{z} \]

        if 4.99994e-321 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

        1. Initial program 82.8%

          \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. *-commutativeN/A

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

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

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

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

            \[\leadsto \color{blue}{\frac{x}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \cdot y \]
          6. associate-*l*N/A

            \[\leadsto \frac{x}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot y \]
          7. *-lowering-*.f64N/A

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

            \[\leadsto \frac{x}{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}} \cdot y \]
          9. *-rgt-identityN/A

            \[\leadsto \frac{x}{z \cdot \left(z \cdot z + \color{blue}{z}\right)} \cdot y \]
          10. accelerator-lowering-fma.f6486.9

            \[\leadsto \frac{x}{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
        4. Applied egg-rr86.9%

          \[\leadsto \color{blue}{\frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)} \cdot y} \]
      7. Recombined 3 regimes into one program.
      8. Final simplification89.7%

        \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq -1 \cdot 10^{+14}:\\ \;\;\;\;x \cdot \frac{y}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\ \mathbf{elif}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 5 \cdot 10^{-321}:\\ \;\;\;\;\frac{\frac{x}{z} \cdot y}{z}\\ \mathbf{else}:\\ \;\;\;\;y \cdot \frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\ \end{array} \]
      9. Add Preprocessing

      Alternative 9: 85.8% accurate, 0.5× speedup?

      \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ \begin{array}{l} t_0 := x\_m \cdot \frac{y\_m}{z \cdot \left(z \cdot z\right)}\\ t_1 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -1 \cdot 10^{+14}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;t\_1 \leq 10^{-6}:\\ \;\;\;\;y\_m \cdot \frac{x\_m}{z \cdot z}\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array}\right) \end{array} \end{array} \]
      x\_m = (fabs.f64 x)
      x\_s = (copysign.f64 #s(literal 1 binary64) x)
      y\_m = (fabs.f64 y)
      y\_s = (copysign.f64 #s(literal 1 binary64) y)
      NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
      (FPCore (y_s x_s x_m y_m z)
       :precision binary64
       (let* ((t_0 (* x_m (/ y_m (* z (* z z))))) (t_1 (* (* z z) (+ z 1.0))))
         (*
          y_s
          (*
           x_s
           (if (<= t_1 -1e+14)
             t_0
             (if (<= t_1 1e-6) (* y_m (/ x_m (* z z))) t_0))))))
      x\_m = fabs(x);
      x\_s = copysign(1.0, x);
      y\_m = fabs(y);
      y\_s = copysign(1.0, y);
      assert(x_m < y_m && y_m < z);
      double code(double y_s, double x_s, double x_m, double y_m, double z) {
      	double t_0 = x_m * (y_m / (z * (z * z)));
      	double t_1 = (z * z) * (z + 1.0);
      	double tmp;
      	if (t_1 <= -1e+14) {
      		tmp = t_0;
      	} else if (t_1 <= 1e-6) {
      		tmp = y_m * (x_m / (z * z));
      	} else {
      		tmp = t_0;
      	}
      	return y_s * (x_s * tmp);
      }
      
      x\_m = abs(x)
      x\_s = copysign(1.0d0, x)
      y\_m = abs(y)
      y\_s = copysign(1.0d0, y)
      NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
      real(8) function code(y_s, x_s, x_m, y_m, z)
          real(8), intent (in) :: y_s
          real(8), intent (in) :: x_s
          real(8), intent (in) :: x_m
          real(8), intent (in) :: y_m
          real(8), intent (in) :: z
          real(8) :: t_0
          real(8) :: t_1
          real(8) :: tmp
          t_0 = x_m * (y_m / (z * (z * z)))
          t_1 = (z * z) * (z + 1.0d0)
          if (t_1 <= (-1d+14)) then
              tmp = t_0
          else if (t_1 <= 1d-6) then
              tmp = y_m * (x_m / (z * z))
          else
              tmp = t_0
          end if
          code = y_s * (x_s * tmp)
      end function
      
      x\_m = Math.abs(x);
      x\_s = Math.copySign(1.0, x);
      y\_m = Math.abs(y);
      y\_s = Math.copySign(1.0, y);
      assert x_m < y_m && y_m < z;
      public static double code(double y_s, double x_s, double x_m, double y_m, double z) {
      	double t_0 = x_m * (y_m / (z * (z * z)));
      	double t_1 = (z * z) * (z + 1.0);
      	double tmp;
      	if (t_1 <= -1e+14) {
      		tmp = t_0;
      	} else if (t_1 <= 1e-6) {
      		tmp = y_m * (x_m / (z * z));
      	} else {
      		tmp = t_0;
      	}
      	return y_s * (x_s * tmp);
      }
      
      x\_m = math.fabs(x)
      x\_s = math.copysign(1.0, x)
      y\_m = math.fabs(y)
      y\_s = math.copysign(1.0, y)
      [x_m, y_m, z] = sort([x_m, y_m, z])
      def code(y_s, x_s, x_m, y_m, z):
      	t_0 = x_m * (y_m / (z * (z * z)))
      	t_1 = (z * z) * (z + 1.0)
      	tmp = 0
      	if t_1 <= -1e+14:
      		tmp = t_0
      	elif t_1 <= 1e-6:
      		tmp = y_m * (x_m / (z * z))
      	else:
      		tmp = t_0
      	return y_s * (x_s * tmp)
      
      x\_m = abs(x)
      x\_s = copysign(1.0, x)
      y\_m = abs(y)
      y\_s = copysign(1.0, y)
      x_m, y_m, z = sort([x_m, y_m, z])
      function code(y_s, x_s, x_m, y_m, z)
      	t_0 = Float64(x_m * Float64(y_m / Float64(z * Float64(z * z))))
      	t_1 = Float64(Float64(z * z) * Float64(z + 1.0))
      	tmp = 0.0
      	if (t_1 <= -1e+14)
      		tmp = t_0;
      	elseif (t_1 <= 1e-6)
      		tmp = Float64(y_m * Float64(x_m / Float64(z * z)));
      	else
      		tmp = t_0;
      	end
      	return Float64(y_s * Float64(x_s * tmp))
      end
      
      x\_m = abs(x);
      x\_s = sign(x) * abs(1.0);
      y\_m = abs(y);
      y\_s = sign(y) * abs(1.0);
      x_m, y_m, z = num2cell(sort([x_m, y_m, z])){:}
      function tmp_2 = code(y_s, x_s, x_m, y_m, z)
      	t_0 = x_m * (y_m / (z * (z * z)));
      	t_1 = (z * z) * (z + 1.0);
      	tmp = 0.0;
      	if (t_1 <= -1e+14)
      		tmp = t_0;
      	elseif (t_1 <= 1e-6)
      		tmp = y_m * (x_m / (z * z));
      	else
      		tmp = t_0;
      	end
      	tmp_2 = y_s * (x_s * tmp);
      end
      
      x\_m = N[Abs[x], $MachinePrecision]
      x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
      y\_m = N[Abs[y], $MachinePrecision]
      y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
      NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
      code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := Block[{t$95$0 = N[(x$95$m * N[(y$95$m / N[(z * N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision]}, N[(y$95$s * N[(x$95$s * If[LessEqual[t$95$1, -1e+14], t$95$0, If[LessEqual[t$95$1, 1e-6], N[(y$95$m * N[(x$95$m / N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0]]), $MachinePrecision]), $MachinePrecision]]]
      
      \begin{array}{l}
      x\_m = \left|x\right|
      \\
      x\_s = \mathsf{copysign}\left(1, x\right)
      \\
      y\_m = \left|y\right|
      \\
      y\_s = \mathsf{copysign}\left(1, y\right)
      \\
      [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
      \\
      \begin{array}{l}
      t_0 := x\_m \cdot \frac{y\_m}{z \cdot \left(z \cdot z\right)}\\
      t_1 := \left(z \cdot z\right) \cdot \left(z + 1\right)\\
      y\_s \cdot \left(x\_s \cdot \begin{array}{l}
      \mathbf{if}\;t\_1 \leq -1 \cdot 10^{+14}:\\
      \;\;\;\;t\_0\\
      
      \mathbf{elif}\;t\_1 \leq 10^{-6}:\\
      \;\;\;\;y\_m \cdot \frac{x\_m}{z \cdot z}\\
      
      \mathbf{else}:\\
      \;\;\;\;t\_0\\
      
      
      \end{array}\right)
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < -1e14 or 9.99999999999999955e-7 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

        1. Initial program 77.7%

          \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in z around inf

          \[\leadsto \color{blue}{\frac{x \cdot y}{{z}^{3}}} \]
        4. Step-by-step derivation
          1. associate-/l*N/A

            \[\leadsto \color{blue}{x \cdot \frac{y}{{z}^{3}}} \]
          2. *-lowering-*.f64N/A

            \[\leadsto \color{blue}{x \cdot \frac{y}{{z}^{3}}} \]
          3. /-lowering-/.f64N/A

            \[\leadsto x \cdot \color{blue}{\frac{y}{{z}^{3}}} \]
          4. cube-multN/A

            \[\leadsto x \cdot \frac{y}{\color{blue}{z \cdot \left(z \cdot z\right)}} \]
          5. unpow2N/A

            \[\leadsto x \cdot \frac{y}{z \cdot \color{blue}{{z}^{2}}} \]
          6. *-lowering-*.f64N/A

            \[\leadsto x \cdot \frac{y}{\color{blue}{z \cdot {z}^{2}}} \]
          7. unpow2N/A

            \[\leadsto x \cdot \frac{y}{z \cdot \color{blue}{\left(z \cdot z\right)}} \]
          8. *-lowering-*.f6484.9

            \[\leadsto x \cdot \frac{y}{z \cdot \color{blue}{\left(z \cdot z\right)}} \]
        5. Simplified84.9%

          \[\leadsto \color{blue}{x \cdot \frac{y}{z \cdot \left(z \cdot z\right)}} \]

        if -1e14 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 9.99999999999999955e-7

        1. Initial program 78.0%

          \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in z around 0

          \[\leadsto \frac{x \cdot y}{\color{blue}{{z}^{2}}} \]
        4. Step-by-step derivation
          1. unpow2N/A

            \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
          2. *-lowering-*.f6476.0

            \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
        5. Simplified76.0%

          \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
        6. Step-by-step derivation
          1. times-fracN/A

            \[\leadsto \color{blue}{\frac{x}{z} \cdot \frac{y}{z}} \]
          2. associate-*r/N/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot y}{z}} \]
          3. *-rgt-identityN/A

            \[\leadsto \frac{\frac{x}{z} \cdot y}{\color{blue}{z \cdot 1}} \]
          4. times-fracN/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z} \cdot \frac{y}{1}} \]
          5. /-rgt-identityN/A

            \[\leadsto \frac{\frac{x}{z}}{z} \cdot \color{blue}{y} \]
          6. *-lowering-*.f64N/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z} \cdot y} \]
          7. associate-/l/N/A

            \[\leadsto \color{blue}{\frac{x}{z \cdot z}} \cdot y \]
          8. /-lowering-/.f64N/A

            \[\leadsto \color{blue}{\frac{x}{z \cdot z}} \cdot y \]
          9. *-lowering-*.f6475.1

            \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \cdot y \]
        7. Applied egg-rr75.1%

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot y} \]
      3. Recombined 2 regimes into one program.
      4. Final simplification79.9%

        \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq -1 \cdot 10^{+14}:\\ \;\;\;\;x \cdot \frac{y}{z \cdot \left(z \cdot z\right)}\\ \mathbf{elif}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 10^{-6}:\\ \;\;\;\;y \cdot \frac{x}{z \cdot z}\\ \mathbf{else}:\\ \;\;\;\;x \cdot \frac{y}{z \cdot \left(z \cdot z\right)}\\ \end{array} \]
      5. Add Preprocessing

      Alternative 10: 96.3% accurate, 0.5× speedup?

      \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 2 \cdot 10^{+32}:\\ \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x\_m}{z}}{z \cdot \frac{z}{y\_m}}\\ \end{array}\right) \end{array} \]
      x\_m = (fabs.f64 x)
      x\_s = (copysign.f64 #s(literal 1 binary64) x)
      y\_m = (fabs.f64 y)
      y\_s = (copysign.f64 #s(literal 1 binary64) y)
      NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
      (FPCore (y_s x_s x_m y_m z)
       :precision binary64
       (*
        y_s
        (*
         x_s
         (if (<= (* (* z z) (+ z 1.0)) 2e+32)
           (/ (* (/ x_m z) y_m) (fma z z z))
           (/ (/ x_m z) (* z (/ z y_m)))))))
      x\_m = fabs(x);
      x\_s = copysign(1.0, x);
      y\_m = fabs(y);
      y\_s = copysign(1.0, y);
      assert(x_m < y_m && y_m < z);
      double code(double y_s, double x_s, double x_m, double y_m, double z) {
      	double tmp;
      	if (((z * z) * (z + 1.0)) <= 2e+32) {
      		tmp = ((x_m / z) * y_m) / fma(z, z, z);
      	} else {
      		tmp = (x_m / z) / (z * (z / y_m));
      	}
      	return y_s * (x_s * tmp);
      }
      
      x\_m = abs(x)
      x\_s = copysign(1.0, x)
      y\_m = abs(y)
      y\_s = copysign(1.0, y)
      x_m, y_m, z = sort([x_m, y_m, z])
      function code(y_s, x_s, x_m, y_m, z)
      	tmp = 0.0
      	if (Float64(Float64(z * z) * Float64(z + 1.0)) <= 2e+32)
      		tmp = Float64(Float64(Float64(x_m / z) * y_m) / fma(z, z, z));
      	else
      		tmp = Float64(Float64(x_m / z) / Float64(z * Float64(z / y_m)));
      	end
      	return Float64(y_s * Float64(x_s * tmp))
      end
      
      x\_m = N[Abs[x], $MachinePrecision]
      x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
      y\_m = N[Abs[y], $MachinePrecision]
      y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
      NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
      code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * If[LessEqual[N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision], 2e+32], N[(N[(N[(x$95$m / z), $MachinePrecision] * y$95$m), $MachinePrecision] / N[(z * z + z), $MachinePrecision]), $MachinePrecision], N[(N[(x$95$m / z), $MachinePrecision] / N[(z * N[(z / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
      
      \begin{array}{l}
      x\_m = \left|x\right|
      \\
      x\_s = \mathsf{copysign}\left(1, x\right)
      \\
      y\_m = \left|y\right|
      \\
      y\_s = \mathsf{copysign}\left(1, y\right)
      \\
      [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
      \\
      y\_s \cdot \left(x\_s \cdot \begin{array}{l}
      \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 2 \cdot 10^{+32}:\\
      \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{\mathsf{fma}\left(z, z, z\right)}\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{\frac{x\_m}{z}}{z \cdot \frac{z}{y\_m}}\\
      
      
      \end{array}\right)
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 2.00000000000000011e32

        1. Initial program 79.5%

          \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. times-fracN/A

            \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
          2. associate-/r*N/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
          3. frac-timesN/A

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

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

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

            \[\leadsto \frac{\color{blue}{\frac{x}{z}} \cdot y}{z \cdot \left(z + 1\right)} \]
          7. distribute-lft-inN/A

            \[\leadsto \frac{\frac{x}{z} \cdot y}{\color{blue}{z \cdot z + z \cdot 1}} \]
          8. *-rgt-identityN/A

            \[\leadsto \frac{\frac{x}{z} \cdot y}{z \cdot z + \color{blue}{z}} \]
          9. accelerator-lowering-fma.f6493.5

            \[\leadsto \frac{\frac{x}{z} \cdot y}{\color{blue}{\mathsf{fma}\left(z, z, z\right)}} \]
        4. Applied egg-rr93.5%

          \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot y}{\mathsf{fma}\left(z, z, z\right)}} \]

        if 2.00000000000000011e32 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

        1. Initial program 72.7%

          \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. times-fracN/A

            \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
          2. *-commutativeN/A

            \[\leadsto \color{blue}{\frac{y}{z + 1} \cdot \frac{x}{z \cdot z}} \]
          3. clear-numN/A

            \[\leadsto \color{blue}{\frac{1}{\frac{z + 1}{y}}} \cdot \frac{x}{z \cdot z} \]
          4. associate-/r*N/A

            \[\leadsto \frac{1}{\frac{z + 1}{y}} \cdot \color{blue}{\frac{\frac{x}{z}}{z}} \]
          5. frac-timesN/A

            \[\leadsto \color{blue}{\frac{1 \cdot \frac{x}{z}}{\frac{z + 1}{y} \cdot z}} \]
          6. metadata-evalN/A

            \[\leadsto \frac{\color{blue}{{1}^{-1}} \cdot \frac{x}{z}}{\frac{z + 1}{y} \cdot z} \]
          7. clear-numN/A

            \[\leadsto \frac{{1}^{-1} \cdot \color{blue}{\frac{1}{\frac{z}{x}}}}{\frac{z + 1}{y} \cdot z} \]
          8. inv-powN/A

            \[\leadsto \frac{{1}^{-1} \cdot \color{blue}{{\left(\frac{z}{x}\right)}^{-1}}}{\frac{z + 1}{y} \cdot z} \]
          9. unpow-prod-downN/A

            \[\leadsto \frac{\color{blue}{{\left(1 \cdot \frac{z}{x}\right)}^{-1}}}{\frac{z + 1}{y} \cdot z} \]
          10. associate-/l*N/A

            \[\leadsto \frac{{\color{blue}{\left(\frac{1 \cdot z}{x}\right)}}^{-1}}{\frac{z + 1}{y} \cdot z} \]
          11. *-lft-identityN/A

            \[\leadsto \frac{{\left(\frac{\color{blue}{z}}{x}\right)}^{-1}}{\frac{z + 1}{y} \cdot z} \]
          12. inv-powN/A

            \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}}}{\frac{z + 1}{y} \cdot z} \]
          13. clear-numN/A

            \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{\frac{z + 1}{y} \cdot z} \]
          14. /-lowering-/.f64N/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\frac{z + 1}{y} \cdot z}} \]
          15. /-lowering-/.f64N/A

            \[\leadsto \frac{\color{blue}{\frac{x}{z}}}{\frac{z + 1}{y} \cdot z} \]
          16. *-lowering-*.f64N/A

            \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\frac{z + 1}{y} \cdot z}} \]
          17. /-lowering-/.f64N/A

            \[\leadsto \frac{\frac{x}{z}}{\color{blue}{\frac{z + 1}{y}} \cdot z} \]
          18. +-lowering-+.f6498.4

            \[\leadsto \frac{\frac{x}{z}}{\frac{\color{blue}{z + 1}}{y} \cdot z} \]
        4. Applied egg-rr98.4%

          \[\leadsto \color{blue}{\frac{\frac{x}{z}}{\frac{z + 1}{y} \cdot z}} \]
        5. Taylor expanded in z around inf

          \[\leadsto \frac{\frac{x}{z}}{\frac{\color{blue}{z}}{y} \cdot z} \]
        6. Step-by-step derivation
          1. Simplified98.4%

            \[\leadsto \frac{\frac{x}{z}}{\frac{\color{blue}{z}}{y} \cdot z} \]
        7. Recombined 2 regimes into one program.
        8. Final simplification94.6%

          \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 2 \cdot 10^{+32}:\\ \;\;\;\;\frac{\frac{x}{z} \cdot y}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{z}}{z \cdot \frac{z}{y}}\\ \end{array} \]
        9. Add Preprocessing

        Alternative 11: 96.2% accurate, 0.5× speedup?

        \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 2 \cdot 10^{+32}:\\ \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x\_m}{z} \cdot \frac{y\_m}{z}}{z}\\ \end{array}\right) \end{array} \]
        x\_m = (fabs.f64 x)
        x\_s = (copysign.f64 #s(literal 1 binary64) x)
        y\_m = (fabs.f64 y)
        y\_s = (copysign.f64 #s(literal 1 binary64) y)
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        (FPCore (y_s x_s x_m y_m z)
         :precision binary64
         (*
          y_s
          (*
           x_s
           (if (<= (* (* z z) (+ z 1.0)) 2e+32)
             (/ (* (/ x_m z) y_m) (fma z z z))
             (/ (* (/ x_m z) (/ y_m z)) z)))))
        x\_m = fabs(x);
        x\_s = copysign(1.0, x);
        y\_m = fabs(y);
        y\_s = copysign(1.0, y);
        assert(x_m < y_m && y_m < z);
        double code(double y_s, double x_s, double x_m, double y_m, double z) {
        	double tmp;
        	if (((z * z) * (z + 1.0)) <= 2e+32) {
        		tmp = ((x_m / z) * y_m) / fma(z, z, z);
        	} else {
        		tmp = ((x_m / z) * (y_m / z)) / z;
        	}
        	return y_s * (x_s * tmp);
        }
        
        x\_m = abs(x)
        x\_s = copysign(1.0, x)
        y\_m = abs(y)
        y\_s = copysign(1.0, y)
        x_m, y_m, z = sort([x_m, y_m, z])
        function code(y_s, x_s, x_m, y_m, z)
        	tmp = 0.0
        	if (Float64(Float64(z * z) * Float64(z + 1.0)) <= 2e+32)
        		tmp = Float64(Float64(Float64(x_m / z) * y_m) / fma(z, z, z));
        	else
        		tmp = Float64(Float64(Float64(x_m / z) * Float64(y_m / z)) / z);
        	end
        	return Float64(y_s * Float64(x_s * tmp))
        end
        
        x\_m = N[Abs[x], $MachinePrecision]
        x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        y\_m = N[Abs[y], $MachinePrecision]
        y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * If[LessEqual[N[(N[(z * z), $MachinePrecision] * N[(z + 1.0), $MachinePrecision]), $MachinePrecision], 2e+32], N[(N[(N[(x$95$m / z), $MachinePrecision] * y$95$m), $MachinePrecision] / N[(z * z + z), $MachinePrecision]), $MachinePrecision], N[(N[(N[(x$95$m / z), $MachinePrecision] * N[(y$95$m / z), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        x\_m = \left|x\right|
        \\
        x\_s = \mathsf{copysign}\left(1, x\right)
        \\
        y\_m = \left|y\right|
        \\
        y\_s = \mathsf{copysign}\left(1, y\right)
        \\
        [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
        \\
        y\_s \cdot \left(x\_s \cdot \begin{array}{l}
        \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 2 \cdot 10^{+32}:\\
        \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{\mathsf{fma}\left(z, z, z\right)}\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{\frac{x\_m}{z} \cdot \frac{y\_m}{z}}{z}\\
        
        
        \end{array}\right)
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64))) < 2.00000000000000011e32

          1. Initial program 79.5%

            \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. times-fracN/A

              \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
            2. associate-/r*N/A

              \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
            3. frac-timesN/A

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

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

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

              \[\leadsto \frac{\color{blue}{\frac{x}{z}} \cdot y}{z \cdot \left(z + 1\right)} \]
            7. distribute-lft-inN/A

              \[\leadsto \frac{\frac{x}{z} \cdot y}{\color{blue}{z \cdot z + z \cdot 1}} \]
            8. *-rgt-identityN/A

              \[\leadsto \frac{\frac{x}{z} \cdot y}{z \cdot z + \color{blue}{z}} \]
            9. accelerator-lowering-fma.f6493.5

              \[\leadsto \frac{\frac{x}{z} \cdot y}{\color{blue}{\mathsf{fma}\left(z, z, z\right)}} \]
          4. Applied egg-rr93.5%

            \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot y}{\mathsf{fma}\left(z, z, z\right)}} \]

          if 2.00000000000000011e32 < (*.f64 (*.f64 z z) (+.f64 z #s(literal 1 binary64)))

          1. Initial program 72.7%

            \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. times-fracN/A

              \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
            2. associate-/r*N/A

              \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
            3. associate-*l/N/A

              \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
            4. clear-numN/A

              \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
            5. inv-powN/A

              \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
            6. clear-numN/A

              \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
            7. inv-powN/A

              \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
            8. unpow-prod-downN/A

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

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

              \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
          4. Applied egg-rr96.7%

            \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
          5. Taylor expanded in z around inf

            \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
          6. Step-by-step derivation
            1. /-lowering-/.f6496.7

              \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
          7. Simplified96.7%

            \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
        3. Recombined 2 regimes into one program.
        4. Final simplification94.2%

          \[\leadsto \begin{array}{l} \mathbf{if}\;\left(z \cdot z\right) \cdot \left(z + 1\right) \leq 2 \cdot 10^{+32}:\\ \;\;\;\;\frac{\frac{x}{z} \cdot y}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{z} \cdot \frac{y}{z}}{z}\\ \end{array} \]
        5. Add Preprocessing

        Alternative 12: 98.0% accurate, 0.7× speedup?

        \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \frac{\frac{x\_m}{z} \cdot \frac{y\_m}{z + 1}}{z}\right) \end{array} \]
        x\_m = (fabs.f64 x)
        x\_s = (copysign.f64 #s(literal 1 binary64) x)
        y\_m = (fabs.f64 y)
        y\_s = (copysign.f64 #s(literal 1 binary64) y)
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        (FPCore (y_s x_s x_m y_m z)
         :precision binary64
         (* y_s (* x_s (/ (* (/ x_m z) (/ y_m (+ z 1.0))) z))))
        x\_m = fabs(x);
        x\_s = copysign(1.0, x);
        y\_m = fabs(y);
        y\_s = copysign(1.0, y);
        assert(x_m < y_m && y_m < z);
        double code(double y_s, double x_s, double x_m, double y_m, double z) {
        	return y_s * (x_s * (((x_m / z) * (y_m / (z + 1.0))) / z));
        }
        
        x\_m = abs(x)
        x\_s = copysign(1.0d0, x)
        y\_m = abs(y)
        y\_s = copysign(1.0d0, y)
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        real(8) function code(y_s, x_s, x_m, y_m, z)
            real(8), intent (in) :: y_s
            real(8), intent (in) :: x_s
            real(8), intent (in) :: x_m
            real(8), intent (in) :: y_m
            real(8), intent (in) :: z
            code = y_s * (x_s * (((x_m / z) * (y_m / (z + 1.0d0))) / z))
        end function
        
        x\_m = Math.abs(x);
        x\_s = Math.copySign(1.0, x);
        y\_m = Math.abs(y);
        y\_s = Math.copySign(1.0, y);
        assert x_m < y_m && y_m < z;
        public static double code(double y_s, double x_s, double x_m, double y_m, double z) {
        	return y_s * (x_s * (((x_m / z) * (y_m / (z + 1.0))) / z));
        }
        
        x\_m = math.fabs(x)
        x\_s = math.copysign(1.0, x)
        y\_m = math.fabs(y)
        y\_s = math.copysign(1.0, y)
        [x_m, y_m, z] = sort([x_m, y_m, z])
        def code(y_s, x_s, x_m, y_m, z):
        	return y_s * (x_s * (((x_m / z) * (y_m / (z + 1.0))) / z))
        
        x\_m = abs(x)
        x\_s = copysign(1.0, x)
        y\_m = abs(y)
        y\_s = copysign(1.0, y)
        x_m, y_m, z = sort([x_m, y_m, z])
        function code(y_s, x_s, x_m, y_m, z)
        	return Float64(y_s * Float64(x_s * Float64(Float64(Float64(x_m / z) * Float64(y_m / Float64(z + 1.0))) / z)))
        end
        
        x\_m = abs(x);
        x\_s = sign(x) * abs(1.0);
        y\_m = abs(y);
        y\_s = sign(y) * abs(1.0);
        x_m, y_m, z = num2cell(sort([x_m, y_m, z])){:}
        function tmp = code(y_s, x_s, x_m, y_m, z)
        	tmp = y_s * (x_s * (((x_m / z) * (y_m / (z + 1.0))) / z));
        end
        
        x\_m = N[Abs[x], $MachinePrecision]
        x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        y\_m = N[Abs[y], $MachinePrecision]
        y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * N[(N[(N[(x$95$m / z), $MachinePrecision] * N[(y$95$m / N[(z + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        x\_m = \left|x\right|
        \\
        x\_s = \mathsf{copysign}\left(1, x\right)
        \\
        y\_m = \left|y\right|
        \\
        y\_s = \mathsf{copysign}\left(1, y\right)
        \\
        [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
        \\
        y\_s \cdot \left(x\_s \cdot \frac{\frac{x\_m}{z} \cdot \frac{y\_m}{z + 1}}{z}\right)
        \end{array}
        
        Derivation
        1. Initial program 77.9%

          \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. times-fracN/A

            \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
          2. associate-/r*N/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
          3. associate-*l/N/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
          4. clear-numN/A

            \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
          5. inv-powN/A

            \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
          6. clear-numN/A

            \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
          7. inv-powN/A

            \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
          8. unpow-prod-downN/A

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

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

            \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
        4. Applied egg-rr95.0%

          \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
        5. Final simplification95.0%

          \[\leadsto \frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z} \]
        6. Add Preprocessing

        Alternative 13: 96.1% accurate, 0.7× speedup?

        \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;z \leq 2.4 \cdot 10^{+14}:\\ \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\ \end{array}\right) \end{array} \]
        x\_m = (fabs.f64 x)
        x\_s = (copysign.f64 #s(literal 1 binary64) x)
        y\_m = (fabs.f64 y)
        y\_s = (copysign.f64 #s(literal 1 binary64) y)
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        (FPCore (y_s x_s x_m y_m z)
         :precision binary64
         (*
          y_s
          (*
           x_s
           (if (<= z 2.4e+14)
             (/ (* (/ x_m z) y_m) (fma z z z))
             (/ x_m (* z (* z (/ z y_m))))))))
        x\_m = fabs(x);
        x\_s = copysign(1.0, x);
        y\_m = fabs(y);
        y\_s = copysign(1.0, y);
        assert(x_m < y_m && y_m < z);
        double code(double y_s, double x_s, double x_m, double y_m, double z) {
        	double tmp;
        	if (z <= 2.4e+14) {
        		tmp = ((x_m / z) * y_m) / fma(z, z, z);
        	} else {
        		tmp = x_m / (z * (z * (z / y_m)));
        	}
        	return y_s * (x_s * tmp);
        }
        
        x\_m = abs(x)
        x\_s = copysign(1.0, x)
        y\_m = abs(y)
        y\_s = copysign(1.0, y)
        x_m, y_m, z = sort([x_m, y_m, z])
        function code(y_s, x_s, x_m, y_m, z)
        	tmp = 0.0
        	if (z <= 2.4e+14)
        		tmp = Float64(Float64(Float64(x_m / z) * y_m) / fma(z, z, z));
        	else
        		tmp = Float64(x_m / Float64(z * Float64(z * Float64(z / y_m))));
        	end
        	return Float64(y_s * Float64(x_s * tmp))
        end
        
        x\_m = N[Abs[x], $MachinePrecision]
        x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        y\_m = N[Abs[y], $MachinePrecision]
        y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * If[LessEqual[z, 2.4e+14], N[(N[(N[(x$95$m / z), $MachinePrecision] * y$95$m), $MachinePrecision] / N[(z * z + z), $MachinePrecision]), $MachinePrecision], N[(x$95$m / N[(z * N[(z * N[(z / y$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        x\_m = \left|x\right|
        \\
        x\_s = \mathsf{copysign}\left(1, x\right)
        \\
        y\_m = \left|y\right|
        \\
        y\_s = \mathsf{copysign}\left(1, y\right)
        \\
        [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
        \\
        y\_s \cdot \left(x\_s \cdot \begin{array}{l}
        \mathbf{if}\;z \leq 2.4 \cdot 10^{+14}:\\
        \;\;\;\;\frac{\frac{x\_m}{z} \cdot y\_m}{\mathsf{fma}\left(z, z, z\right)}\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{x\_m}{z \cdot \left(z \cdot \frac{z}{y\_m}\right)}\\
        
        
        \end{array}\right)
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if z < 2.4e14

          1. Initial program 79.5%

            \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. times-fracN/A

              \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
            2. associate-/r*N/A

              \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
            3. frac-timesN/A

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

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

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

              \[\leadsto \frac{\color{blue}{\frac{x}{z}} \cdot y}{z \cdot \left(z + 1\right)} \]
            7. distribute-lft-inN/A

              \[\leadsto \frac{\frac{x}{z} \cdot y}{\color{blue}{z \cdot z + z \cdot 1}} \]
            8. *-rgt-identityN/A

              \[\leadsto \frac{\frac{x}{z} \cdot y}{z \cdot z + \color{blue}{z}} \]
            9. accelerator-lowering-fma.f6493.5

              \[\leadsto \frac{\frac{x}{z} \cdot y}{\color{blue}{\mathsf{fma}\left(z, z, z\right)}} \]
          4. Applied egg-rr93.5%

            \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot y}{\mathsf{fma}\left(z, z, z\right)}} \]

          if 2.4e14 < z

          1. Initial program 72.7%

            \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. times-fracN/A

              \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot \frac{y}{z + 1}} \]
            2. associate-/r*N/A

              \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z}} \cdot \frac{y}{z + 1} \]
            3. associate-*l/N/A

              \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot \frac{y}{z + 1}}{z}} \]
            4. clear-numN/A

              \[\leadsto \frac{\color{blue}{\frac{1}{\frac{z}{x}}} \cdot \frac{y}{z + 1}}{z} \]
            5. inv-powN/A

              \[\leadsto \frac{\color{blue}{{\left(\frac{z}{x}\right)}^{-1}} \cdot \frac{y}{z + 1}}{z} \]
            6. clear-numN/A

              \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{\frac{1}{\frac{z + 1}{y}}}}{z} \]
            7. inv-powN/A

              \[\leadsto \frac{{\left(\frac{z}{x}\right)}^{-1} \cdot \color{blue}{{\left(\frac{z + 1}{y}\right)}^{-1}}}{z} \]
            8. unpow-prod-downN/A

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

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

              \[\leadsto \color{blue}{\frac{{\left(\frac{z \cdot \left(z + 1\right)}{x \cdot y}\right)}^{-1}}{z}} \]
          4. Applied egg-rr96.7%

            \[\leadsto \color{blue}{\frac{\frac{y}{z + 1} \cdot \frac{x}{z}}{z}} \]
          5. Taylor expanded in z around inf

            \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
          6. Step-by-step derivation
            1. /-lowering-/.f6496.7

              \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
          7. Simplified96.7%

            \[\leadsto \frac{\color{blue}{\frac{y}{z}} \cdot \frac{x}{z}}{z} \]
          8. Step-by-step derivation
            1. associate-/l*N/A

              \[\leadsto \color{blue}{\frac{y}{z} \cdot \frac{\frac{x}{z}}{z}} \]
            2. clear-numN/A

              \[\leadsto \color{blue}{\frac{1}{\frac{z}{y}}} \cdot \frac{\frac{x}{z}}{z} \]
            3. associate-/r*N/A

              \[\leadsto \frac{1}{\frac{z}{y}} \cdot \color{blue}{\frac{x}{z \cdot z}} \]
            4. frac-timesN/A

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

              \[\leadsto \frac{\color{blue}{x}}{\frac{z}{y} \cdot \left(z \cdot z\right)} \]
            6. /-lowering-/.f64N/A

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

              \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
            8. *-lowering-*.f64N/A

              \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
            9. *-lowering-*.f64N/A

              \[\leadsto \frac{x}{\color{blue}{\left(\frac{z}{y} \cdot z\right)} \cdot z} \]
            10. /-lowering-/.f6487.4

              \[\leadsto \frac{x}{\left(\color{blue}{\frac{z}{y}} \cdot z\right) \cdot z} \]
          9. Applied egg-rr87.4%

            \[\leadsto \color{blue}{\frac{x}{\left(\frac{z}{y} \cdot z\right) \cdot z}} \]
        3. Recombined 2 regimes into one program.
        4. Final simplification92.0%

          \[\leadsto \begin{array}{l} \mathbf{if}\;z \leq 2.4 \cdot 10^{+14}:\\ \;\;\;\;\frac{\frac{x}{z} \cdot y}{\mathsf{fma}\left(z, z, z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{z \cdot \left(z \cdot \frac{z}{y}\right)}\\ \end{array} \]
        5. Add Preprocessing

        Alternative 14: 89.5% accurate, 0.8× speedup?

        \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \begin{array}{l} \mathbf{if}\;x\_m \cdot y\_m \leq 1.5 \cdot 10^{-175}:\\ \;\;\;\;\frac{x\_m}{z} \cdot \frac{y\_m}{z}\\ \mathbf{else}:\\ \;\;\;\;y\_m \cdot \frac{x\_m}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\ \end{array}\right) \end{array} \]
        x\_m = (fabs.f64 x)
        x\_s = (copysign.f64 #s(literal 1 binary64) x)
        y\_m = (fabs.f64 y)
        y\_s = (copysign.f64 #s(literal 1 binary64) y)
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        (FPCore (y_s x_s x_m y_m z)
         :precision binary64
         (*
          y_s
          (*
           x_s
           (if (<= (* x_m y_m) 1.5e-175)
             (* (/ x_m z) (/ y_m z))
             (* y_m (/ x_m (* z (fma z z z))))))))
        x\_m = fabs(x);
        x\_s = copysign(1.0, x);
        y\_m = fabs(y);
        y\_s = copysign(1.0, y);
        assert(x_m < y_m && y_m < z);
        double code(double y_s, double x_s, double x_m, double y_m, double z) {
        	double tmp;
        	if ((x_m * y_m) <= 1.5e-175) {
        		tmp = (x_m / z) * (y_m / z);
        	} else {
        		tmp = y_m * (x_m / (z * fma(z, z, z)));
        	}
        	return y_s * (x_s * tmp);
        }
        
        x\_m = abs(x)
        x\_s = copysign(1.0, x)
        y\_m = abs(y)
        y\_s = copysign(1.0, y)
        x_m, y_m, z = sort([x_m, y_m, z])
        function code(y_s, x_s, x_m, y_m, z)
        	tmp = 0.0
        	if (Float64(x_m * y_m) <= 1.5e-175)
        		tmp = Float64(Float64(x_m / z) * Float64(y_m / z));
        	else
        		tmp = Float64(y_m * Float64(x_m / Float64(z * fma(z, z, z))));
        	end
        	return Float64(y_s * Float64(x_s * tmp))
        end
        
        x\_m = N[Abs[x], $MachinePrecision]
        x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        y\_m = N[Abs[y], $MachinePrecision]
        y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * If[LessEqual[N[(x$95$m * y$95$m), $MachinePrecision], 1.5e-175], N[(N[(x$95$m / z), $MachinePrecision] * N[(y$95$m / z), $MachinePrecision]), $MachinePrecision], N[(y$95$m * N[(x$95$m / N[(z * N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        x\_m = \left|x\right|
        \\
        x\_s = \mathsf{copysign}\left(1, x\right)
        \\
        y\_m = \left|y\right|
        \\
        y\_s = \mathsf{copysign}\left(1, y\right)
        \\
        [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
        \\
        y\_s \cdot \left(x\_s \cdot \begin{array}{l}
        \mathbf{if}\;x\_m \cdot y\_m \leq 1.5 \cdot 10^{-175}:\\
        \;\;\;\;\frac{x\_m}{z} \cdot \frac{y\_m}{z}\\
        
        \mathbf{else}:\\
        \;\;\;\;y\_m \cdot \frac{x\_m}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\
        
        
        \end{array}\right)
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if (*.f64 x y) < 1.5e-175

          1. Initial program 73.8%

            \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
          2. Add Preprocessing
          3. Taylor expanded in z around 0

            \[\leadsto \frac{x \cdot y}{\color{blue}{{z}^{2}}} \]
          4. Step-by-step derivation
            1. unpow2N/A

              \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
            2. *-lowering-*.f6461.4

              \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
          5. Simplified61.4%

            \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
          6. Step-by-step derivation
            1. *-commutativeN/A

              \[\leadsto \frac{\color{blue}{y \cdot x}}{z \cdot z} \]
            2. times-fracN/A

              \[\leadsto \color{blue}{\frac{y}{z} \cdot \frac{x}{z}} \]
            3. *-lowering-*.f64N/A

              \[\leadsto \color{blue}{\frac{y}{z} \cdot \frac{x}{z}} \]
            4. /-lowering-/.f64N/A

              \[\leadsto \color{blue}{\frac{y}{z}} \cdot \frac{x}{z} \]
            5. /-lowering-/.f6476.3

              \[\leadsto \frac{y}{z} \cdot \color{blue}{\frac{x}{z}} \]
          7. Applied egg-rr76.3%

            \[\leadsto \color{blue}{\frac{y}{z} \cdot \frac{x}{z}} \]

          if 1.5e-175 < (*.f64 x y)

          1. Initial program 84.0%

            \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
          2. Add Preprocessing
          3. Step-by-step derivation
            1. *-commutativeN/A

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

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

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

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

              \[\leadsto \color{blue}{\frac{x}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \cdot y \]
            6. associate-*l*N/A

              \[\leadsto \frac{x}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot y \]
            7. *-lowering-*.f64N/A

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

              \[\leadsto \frac{x}{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}} \cdot y \]
            9. *-rgt-identityN/A

              \[\leadsto \frac{x}{z \cdot \left(z \cdot z + \color{blue}{z}\right)} \cdot y \]
            10. accelerator-lowering-fma.f6479.7

              \[\leadsto \frac{x}{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
          4. Applied egg-rr79.7%

            \[\leadsto \color{blue}{\frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)} \cdot y} \]
        3. Recombined 2 regimes into one program.
        4. Final simplification77.7%

          \[\leadsto \begin{array}{l} \mathbf{if}\;x \cdot y \leq 1.5 \cdot 10^{-175}:\\ \;\;\;\;\frac{x}{z} \cdot \frac{y}{z}\\ \mathbf{else}:\\ \;\;\;\;y \cdot \frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)}\\ \end{array} \]
        5. Add Preprocessing

        Alternative 15: 85.0% accurate, 1.1× speedup?

        \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \left(y\_m \cdot \frac{x\_m}{z \cdot \mathsf{fma}\left(z, z, z\right)}\right)\right) \end{array} \]
        x\_m = (fabs.f64 x)
        x\_s = (copysign.f64 #s(literal 1 binary64) x)
        y\_m = (fabs.f64 y)
        y\_s = (copysign.f64 #s(literal 1 binary64) y)
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        (FPCore (y_s x_s x_m y_m z)
         :precision binary64
         (* y_s (* x_s (* y_m (/ x_m (* z (fma z z z)))))))
        x\_m = fabs(x);
        x\_s = copysign(1.0, x);
        y\_m = fabs(y);
        y\_s = copysign(1.0, y);
        assert(x_m < y_m && y_m < z);
        double code(double y_s, double x_s, double x_m, double y_m, double z) {
        	return y_s * (x_s * (y_m * (x_m / (z * fma(z, z, z)))));
        }
        
        x\_m = abs(x)
        x\_s = copysign(1.0, x)
        y\_m = abs(y)
        y\_s = copysign(1.0, y)
        x_m, y_m, z = sort([x_m, y_m, z])
        function code(y_s, x_s, x_m, y_m, z)
        	return Float64(y_s * Float64(x_s * Float64(y_m * Float64(x_m / Float64(z * fma(z, z, z))))))
        end
        
        x\_m = N[Abs[x], $MachinePrecision]
        x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        y\_m = N[Abs[y], $MachinePrecision]
        y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * N[(y$95$m * N[(x$95$m / N[(z * N[(z * z + z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        x\_m = \left|x\right|
        \\
        x\_s = \mathsf{copysign}\left(1, x\right)
        \\
        y\_m = \left|y\right|
        \\
        y\_s = \mathsf{copysign}\left(1, y\right)
        \\
        [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
        \\
        y\_s \cdot \left(x\_s \cdot \left(y\_m \cdot \frac{x\_m}{z \cdot \mathsf{fma}\left(z, z, z\right)}\right)\right)
        \end{array}
        
        Derivation
        1. Initial program 77.9%

          \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
        2. Add Preprocessing
        3. Step-by-step derivation
          1. *-commutativeN/A

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

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

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

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

            \[\leadsto \color{blue}{\frac{x}{\left(z \cdot z\right) \cdot \left(z + 1\right)}} \cdot y \]
          6. associate-*l*N/A

            \[\leadsto \frac{x}{\color{blue}{z \cdot \left(z \cdot \left(z + 1\right)\right)}} \cdot y \]
          7. *-lowering-*.f64N/A

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

            \[\leadsto \frac{x}{z \cdot \color{blue}{\left(z \cdot z + z \cdot 1\right)}} \cdot y \]
          9. *-rgt-identityN/A

            \[\leadsto \frac{x}{z \cdot \left(z \cdot z + \color{blue}{z}\right)} \cdot y \]
          10. accelerator-lowering-fma.f6481.0

            \[\leadsto \frac{x}{z \cdot \color{blue}{\mathsf{fma}\left(z, z, z\right)}} \cdot y \]
        4. Applied egg-rr81.0%

          \[\leadsto \color{blue}{\frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)} \cdot y} \]
        5. Final simplification81.0%

          \[\leadsto y \cdot \frac{x}{z \cdot \mathsf{fma}\left(z, z, z\right)} \]
        6. Add Preprocessing

        Alternative 16: 74.3% accurate, 1.4× speedup?

        \[\begin{array}{l} x\_m = \left|x\right| \\ x\_s = \mathsf{copysign}\left(1, x\right) \\ y\_m = \left|y\right| \\ y\_s = \mathsf{copysign}\left(1, y\right) \\ [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\ \\ y\_s \cdot \left(x\_s \cdot \left(y\_m \cdot \frac{x\_m}{z \cdot z}\right)\right) \end{array} \]
        x\_m = (fabs.f64 x)
        x\_s = (copysign.f64 #s(literal 1 binary64) x)
        y\_m = (fabs.f64 y)
        y\_s = (copysign.f64 #s(literal 1 binary64) y)
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        (FPCore (y_s x_s x_m y_m z)
         :precision binary64
         (* y_s (* x_s (* y_m (/ x_m (* z z))))))
        x\_m = fabs(x);
        x\_s = copysign(1.0, x);
        y\_m = fabs(y);
        y\_s = copysign(1.0, y);
        assert(x_m < y_m && y_m < z);
        double code(double y_s, double x_s, double x_m, double y_m, double z) {
        	return y_s * (x_s * (y_m * (x_m / (z * z))));
        }
        
        x\_m = abs(x)
        x\_s = copysign(1.0d0, x)
        y\_m = abs(y)
        y\_s = copysign(1.0d0, y)
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        real(8) function code(y_s, x_s, x_m, y_m, z)
            real(8), intent (in) :: y_s
            real(8), intent (in) :: x_s
            real(8), intent (in) :: x_m
            real(8), intent (in) :: y_m
            real(8), intent (in) :: z
            code = y_s * (x_s * (y_m * (x_m / (z * z))))
        end function
        
        x\_m = Math.abs(x);
        x\_s = Math.copySign(1.0, x);
        y\_m = Math.abs(y);
        y\_s = Math.copySign(1.0, y);
        assert x_m < y_m && y_m < z;
        public static double code(double y_s, double x_s, double x_m, double y_m, double z) {
        	return y_s * (x_s * (y_m * (x_m / (z * z))));
        }
        
        x\_m = math.fabs(x)
        x\_s = math.copysign(1.0, x)
        y\_m = math.fabs(y)
        y\_s = math.copysign(1.0, y)
        [x_m, y_m, z] = sort([x_m, y_m, z])
        def code(y_s, x_s, x_m, y_m, z):
        	return y_s * (x_s * (y_m * (x_m / (z * z))))
        
        x\_m = abs(x)
        x\_s = copysign(1.0, x)
        y\_m = abs(y)
        y\_s = copysign(1.0, y)
        x_m, y_m, z = sort([x_m, y_m, z])
        function code(y_s, x_s, x_m, y_m, z)
        	return Float64(y_s * Float64(x_s * Float64(y_m * Float64(x_m / Float64(z * z)))))
        end
        
        x\_m = abs(x);
        x\_s = sign(x) * abs(1.0);
        y\_m = abs(y);
        y\_s = sign(y) * abs(1.0);
        x_m, y_m, z = num2cell(sort([x_m, y_m, z])){:}
        function tmp = code(y_s, x_s, x_m, y_m, z)
        	tmp = y_s * (x_s * (y_m * (x_m / (z * z))));
        end
        
        x\_m = N[Abs[x], $MachinePrecision]
        x\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[x]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        y\_m = N[Abs[y], $MachinePrecision]
        y\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[y]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        NOTE: x_m, y_m, and z should be sorted in increasing order before calling this function.
        code[y$95$s_, x$95$s_, x$95$m_, y$95$m_, z_] := N[(y$95$s * N[(x$95$s * N[(y$95$m * N[(x$95$m / N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        x\_m = \left|x\right|
        \\
        x\_s = \mathsf{copysign}\left(1, x\right)
        \\
        y\_m = \left|y\right|
        \\
        y\_s = \mathsf{copysign}\left(1, y\right)
        \\
        [x_m, y_m, z] = \mathsf{sort}([x_m, y_m, z])\\
        \\
        y\_s \cdot \left(x\_s \cdot \left(y\_m \cdot \frac{x\_m}{z \cdot z}\right)\right)
        \end{array}
        
        Derivation
        1. Initial program 77.9%

          \[\frac{x \cdot y}{\left(z \cdot z\right) \cdot \left(z + 1\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in z around 0

          \[\leadsto \frac{x \cdot y}{\color{blue}{{z}^{2}}} \]
        4. Step-by-step derivation
          1. unpow2N/A

            \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
          2. *-lowering-*.f6465.4

            \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
        5. Simplified65.4%

          \[\leadsto \frac{x \cdot y}{\color{blue}{z \cdot z}} \]
        6. Step-by-step derivation
          1. times-fracN/A

            \[\leadsto \color{blue}{\frac{x}{z} \cdot \frac{y}{z}} \]
          2. associate-*r/N/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z} \cdot y}{z}} \]
          3. *-rgt-identityN/A

            \[\leadsto \frac{\frac{x}{z} \cdot y}{\color{blue}{z \cdot 1}} \]
          4. times-fracN/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z} \cdot \frac{y}{1}} \]
          5. /-rgt-identityN/A

            \[\leadsto \frac{\frac{x}{z}}{z} \cdot \color{blue}{y} \]
          6. *-lowering-*.f64N/A

            \[\leadsto \color{blue}{\frac{\frac{x}{z}}{z} \cdot y} \]
          7. associate-/l/N/A

            \[\leadsto \color{blue}{\frac{x}{z \cdot z}} \cdot y \]
          8. /-lowering-/.f64N/A

            \[\leadsto \color{blue}{\frac{x}{z \cdot z}} \cdot y \]
          9. *-lowering-*.f6468.5

            \[\leadsto \frac{x}{\color{blue}{z \cdot z}} \cdot y \]
        7. Applied egg-rr68.5%

          \[\leadsto \color{blue}{\frac{x}{z \cdot z} \cdot y} \]
        8. Final simplification68.5%

          \[\leadsto y \cdot \frac{x}{z \cdot z} \]
        9. Add Preprocessing

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

        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;z < 249.6182814532307:\\ \;\;\;\;\frac{y \cdot \frac{x}{z}}{z + z \cdot z}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{\frac{y}{z}}{1 + z} \cdot x}{z}\\ \end{array} \end{array} \]
        (FPCore (x y z)
         :precision binary64
         (if (< z 249.6182814532307)
           (/ (* y (/ x z)) (+ z (* z z)))
           (/ (* (/ (/ y z) (+ 1.0 z)) x) z)))
        double code(double x, double y, double z) {
        	double tmp;
        	if (z < 249.6182814532307) {
        		tmp = (y * (x / z)) / (z + (z * z));
        	} else {
        		tmp = (((y / z) / (1.0 + z)) * x) / z;
        	}
        	return tmp;
        }
        
        real(8) function code(x, y, z)
            real(8), intent (in) :: x
            real(8), intent (in) :: y
            real(8), intent (in) :: z
            real(8) :: tmp
            if (z < 249.6182814532307d0) then
                tmp = (y * (x / z)) / (z + (z * z))
            else
                tmp = (((y / z) / (1.0d0 + z)) * x) / z
            end if
            code = tmp
        end function
        
        public static double code(double x, double y, double z) {
        	double tmp;
        	if (z < 249.6182814532307) {
        		tmp = (y * (x / z)) / (z + (z * z));
        	} else {
        		tmp = (((y / z) / (1.0 + z)) * x) / z;
        	}
        	return tmp;
        }
        
        def code(x, y, z):
        	tmp = 0
        	if z < 249.6182814532307:
        		tmp = (y * (x / z)) / (z + (z * z))
        	else:
        		tmp = (((y / z) / (1.0 + z)) * x) / z
        	return tmp
        
        function code(x, y, z)
        	tmp = 0.0
        	if (z < 249.6182814532307)
        		tmp = Float64(Float64(y * Float64(x / z)) / Float64(z + Float64(z * z)));
        	else
        		tmp = Float64(Float64(Float64(Float64(y / z) / Float64(1.0 + z)) * x) / z);
        	end
        	return tmp
        end
        
        function tmp_2 = code(x, y, z)
        	tmp = 0.0;
        	if (z < 249.6182814532307)
        		tmp = (y * (x / z)) / (z + (z * z));
        	else
        		tmp = (((y / z) / (1.0 + z)) * x) / z;
        	end
        	tmp_2 = tmp;
        end
        
        code[x_, y_, z_] := If[Less[z, 249.6182814532307], N[(N[(y * N[(x / z), $MachinePrecision]), $MachinePrecision] / N[(z + N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(N[(N[(y / z), $MachinePrecision] / N[(1.0 + z), $MachinePrecision]), $MachinePrecision] * x), $MachinePrecision] / z), $MachinePrecision]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        \mathbf{if}\;z < 249.6182814532307:\\
        \;\;\;\;\frac{y \cdot \frac{x}{z}}{z + z \cdot z}\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{\frac{\frac{y}{z}}{1 + z} \cdot x}{z}\\
        
        
        \end{array}
        \end{array}
        

        Reproduce

        ?
        herbie shell --seed 2024198 
        (FPCore (x y z)
          :name "Statistics.Distribution.Beta:$cvariance from math-functions-0.1.5.2"
          :precision binary64
        
          :alt
          (! :herbie-platform default (if (< z 2496182814532307/10000000000000) (/ (* y (/ x z)) (+ z (* z z))) (/ (* (/ (/ y z) (+ 1 z)) x) z)))
        
          (/ (* x y) (* (* z z) (+ z 1.0))))