Statistics.Distribution.CauchyLorentz:$cdensity from math-functions-0.1.5.2

Percentage Accurate: 89.1% → 98.8%
Time: 10.1s
Alternatives: 12
Speedup: 0.7×

Specification

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

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

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

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

Alternative 1: 98.8% accurate, 0.6× 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 \cdot z \leq 2 \cdot 10^{+255}:\\ \;\;\;\;\frac{\frac{1}{x\_m \cdot \left(1 + z \cdot z\right)}}{y\_m}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{\frac{1}{y\_m}}{z}}{z \cdot x\_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) 2e+255)
     (/ (/ 1.0 (* x_m (+ 1.0 (* z z)))) y_m)
     (/ (/ (/ 1.0 y_m) z) (* z x_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) <= 2e+255) {
		tmp = (1.0 / (x_m * (1.0 + (z * z)))) / y_m;
	} else {
		tmp = ((1.0 / y_m) / z) / (z * x_m);
	}
	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) <= 2d+255) then
        tmp = (1.0d0 / (x_m * (1.0d0 + (z * z)))) / y_m
    else
        tmp = ((1.0d0 / y_m) / z) / (z * x_m)
    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) <= 2e+255) {
		tmp = (1.0 / (x_m * (1.0 + (z * z)))) / y_m;
	} else {
		tmp = ((1.0 / y_m) / z) / (z * x_m);
	}
	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) <= 2e+255:
		tmp = (1.0 / (x_m * (1.0 + (z * z)))) / y_m
	else:
		tmp = ((1.0 / y_m) / z) / (z * x_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(z * z) <= 2e+255)
		tmp = Float64(Float64(1.0 / Float64(x_m * Float64(1.0 + Float64(z * z)))) / y_m);
	else
		tmp = Float64(Float64(Float64(1.0 / y_m) / z) / Float64(z * x_m));
	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) <= 2e+255)
		tmp = (1.0 / (x_m * (1.0 + (z * z)))) / y_m;
	else
		tmp = ((1.0 / y_m) / z) / (z * x_m);
	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[(z * z), $MachinePrecision], 2e+255], N[(N[(1.0 / N[(x$95$m * N[(1.0 + N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / y$95$m), $MachinePrecision], N[(N[(N[(1.0 / y$95$m), $MachinePrecision] / z), $MachinePrecision] / N[(z * x$95$m), $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 \cdot z \leq 2 \cdot 10^{+255}:\\
\;\;\;\;\frac{\frac{1}{x\_m \cdot \left(1 + z \cdot z\right)}}{y\_m}\\

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


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 z z) < 1.99999999999999998e255

    1. Initial program 97.5%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6496.4%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified96.4%

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(\frac{1 + z \cdot z}{\frac{1}{x}}\right)\right), y\right) \]
      6. div-invN/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(\left(1 + z \cdot z\right) \cdot \frac{1}{\frac{1}{x}}\right)\right), y\right) \]
      7. clear-numN/A

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(\left(1 + z \cdot z\right) \cdot x\right)\right), y\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(x \cdot \left(1 + z \cdot z\right)\right)\right), y\right) \]
      10. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \left(1 + z \cdot z\right)\right)\right), y\right) \]
      11. +-lowering-+.f64N/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{+.f64}\left(1, \left(z \cdot z\right)\right)\right)\right), y\right) \]
      12. *-lowering-*.f6497.5%

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, z\right)\right)\right)\right), y\right) \]
    6. Applied egg-rr97.5%

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

    if 1.99999999999999998e255 < (*.f64 z z)

    1. Initial program 74.4%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6474.4%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified74.4%

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
      3. *-lft-identityN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + y\right)\right)\right) \]
      4. distribute-rgt-inN/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot \left(z \cdot z\right)\right) \cdot x + y \cdot x\right)\right) \]
      6. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(y \cdot z\right) \cdot z\right) \cdot x + y \cdot x\right)\right) \]
      7. associate-*l*N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot z\right) \cdot \left(z \cdot x\right) + x \cdot \color{blue}{y}\right)\right) \]
      9. fma-defineN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\mathsf{fma}\left(y \cdot z, \color{blue}{z \cdot x}, x \cdot y\right)\right)\right) \]
      10. fma-lowering-fma.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(y \cdot z\right), \color{blue}{\left(z \cdot x\right)}, \left(x \cdot y\right)\right)\right) \]
      11. *-lowering-*.f64N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right), \left(x \cdot y\right)\right)\right) \]
      13. *-lowering-*.f6497.2%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, x\right), \mathsf{*.f64}\left(x, y\right)\right)\right) \]
    6. Applied egg-rr97.2%

      \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(y \cdot z, z \cdot x, x \cdot y\right)}} \]
    7. Taylor expanded in z around inf

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

        \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
      2. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(x \cdot y\right) \cdot \color{blue}{{z}^{2}}\right)\right) \]
      3. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot x\right) \cdot {\color{blue}{z}}^{2}\right)\right) \]
      4. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(y \cdot \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      5. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      6. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
      7. unpow2N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
      8. *-lowering-*.f6476.7%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
    9. Simplified76.7%

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

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), z\right), \left(z \cdot x\right)\right) \]
      8. *-lowering-*.f6497.7%

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right)\right) \]
    11. Applied egg-rr97.7%

      \[\leadsto \color{blue}{\frac{\frac{\frac{1}{y}}{z}}{z \cdot x}} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 2: 98.2% accurate, 0.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 \frac{1}{\mathsf{fma}\left(z \cdot \left(z \cdot x\_m\right), y\_m, x\_m \cdot y\_m\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 (/ 1.0 (fma (* z (* z x_m)) y_m (* x_m 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) {
	return y_s * (x_s * (1.0 / fma((z * (z * x_m)), y_m, (x_m * y_m))));
}
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(1.0 / fma(Float64(z * Float64(z * x_m)), y_m, Float64(x_m * y_m)))))
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[(1.0 / N[(N[(z * N[(z * x$95$m), $MachinePrecision]), $MachinePrecision] * y$95$m + N[(x$95$m * 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 \frac{1}{\mathsf{fma}\left(z \cdot \left(z \cdot x\_m\right), y\_m, x\_m \cdot y\_m\right)}\right)
\end{array}
Derivation
  1. Initial program 90.0%

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

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

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

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

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

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

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
    7. *-lowering-*.f6489.2%

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
  3. Simplified89.2%

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

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

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

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

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

      \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(x \cdot y\right) \cdot z\right) \cdot z + \color{blue}{x} \cdot y\right)\right) \]
    6. fma-defineN/A

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

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

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(\left(x \cdot y\right), z\right), z, \left(x \cdot y\right)\right)\right) \]
    9. *-lowering-*.f64N/A

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(x, y\right), z\right), z, \left(x \cdot y\right)\right)\right) \]
    10. *-lowering-*.f6495.1%

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(x, y\right), z\right), z, \mathsf{*.f64}\left(x, y\right)\right)\right) \]
  6. Applied egg-rr95.1%

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

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(z \cdot \left(x \cdot y\right)\right), z, \mathsf{*.f64}\left(x, y\right)\right)\right) \]
    2. associate-*r*N/A

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(\left(z \cdot x\right) \cdot y\right), z, \mathsf{*.f64}\left(x, y\right)\right)\right) \]
    3. *-lowering-*.f64N/A

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(\left(z \cdot x\right), y\right), z, \mathsf{*.f64}\left(x, y\right)\right)\right) \]
    4. *-lowering-*.f6496.2%

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(z, x\right), y\right), z, \mathsf{*.f64}\left(x, y\right)\right)\right) \]
  8. Applied egg-rr96.2%

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

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

      \[\leadsto \mathsf{/.f64}\left(1, \left(\left(z \cdot x\right) \cdot \left(z \cdot y\right) + x \cdot y\right)\right) \]
    3. associate-*r*N/A

      \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(z \cdot x\right) \cdot z\right) \cdot y + \color{blue}{x} \cdot y\right)\right) \]
    4. fma-defineN/A

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

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

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(\left(z \cdot x\right), z\right), y, \left(x \cdot y\right)\right)\right) \]
    7. *-lowering-*.f64N/A

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(z, x\right), z\right), y, \left(x \cdot y\right)\right)\right) \]
    8. *-lowering-*.f6494.4%

      \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(\mathsf{*.f64}\left(z, x\right), z\right), y, \mathsf{*.f64}\left(x, y\right)\right)\right) \]
  10. Applied egg-rr94.4%

    \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(\left(z \cdot x\right) \cdot z, y, x \cdot y\right)}} \]
  11. Final simplification94.4%

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

Alternative 3: 98.8% accurate, 0.6× 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 \cdot z \leq 2 \cdot 10^{+255}:\\ \;\;\;\;\frac{\frac{1}{y\_m}}{x\_m \cdot \left(1 + z \cdot z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{\frac{1}{y\_m}}{z}}{z \cdot x\_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) 2e+255)
     (/ (/ 1.0 y_m) (* x_m (+ 1.0 (* z z))))
     (/ (/ (/ 1.0 y_m) z) (* z x_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) <= 2e+255) {
		tmp = (1.0 / y_m) / (x_m * (1.0 + (z * z)));
	} else {
		tmp = ((1.0 / y_m) / z) / (z * x_m);
	}
	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) <= 2d+255) then
        tmp = (1.0d0 / y_m) / (x_m * (1.0d0 + (z * z)))
    else
        tmp = ((1.0d0 / y_m) / z) / (z * x_m)
    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) <= 2e+255) {
		tmp = (1.0 / y_m) / (x_m * (1.0 + (z * z)));
	} else {
		tmp = ((1.0 / y_m) / z) / (z * x_m);
	}
	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) <= 2e+255:
		tmp = (1.0 / y_m) / (x_m * (1.0 + (z * z)))
	else:
		tmp = ((1.0 / y_m) / z) / (z * x_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(z * z) <= 2e+255)
		tmp = Float64(Float64(1.0 / y_m) / Float64(x_m * Float64(1.0 + Float64(z * z))));
	else
		tmp = Float64(Float64(Float64(1.0 / y_m) / z) / Float64(z * x_m));
	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) <= 2e+255)
		tmp = (1.0 / y_m) / (x_m * (1.0 + (z * z)));
	else
		tmp = ((1.0 / y_m) / z) / (z * x_m);
	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[(z * z), $MachinePrecision], 2e+255], N[(N[(1.0 / y$95$m), $MachinePrecision] / N[(x$95$m * N[(1.0 + N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(N[(1.0 / y$95$m), $MachinePrecision] / z), $MachinePrecision] / N[(z * x$95$m), $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 \cdot z \leq 2 \cdot 10^{+255}:\\
\;\;\;\;\frac{\frac{1}{y\_m}}{x\_m \cdot \left(1 + z \cdot z\right)}\\

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


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 z z) < 1.99999999999999998e255

    1. Initial program 97.5%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6496.4%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified96.4%

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

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

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

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), \left(\left(1 + z \cdot z\right) \cdot x\right)\right) \]
      10. *-commutativeN/A

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

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), \mathsf{*.f64}\left(x, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right) \]
      13. *-lowering-*.f6497.4%

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), \mathsf{*.f64}\left(x, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
    6. Applied egg-rr97.4%

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

    if 1.99999999999999998e255 < (*.f64 z z)

    1. Initial program 74.4%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6474.4%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified74.4%

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
      3. *-lft-identityN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + y\right)\right)\right) \]
      4. distribute-rgt-inN/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot \left(z \cdot z\right)\right) \cdot x + y \cdot x\right)\right) \]
      6. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(y \cdot z\right) \cdot z\right) \cdot x + y \cdot x\right)\right) \]
      7. associate-*l*N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot z\right) \cdot \left(z \cdot x\right) + x \cdot \color{blue}{y}\right)\right) \]
      9. fma-defineN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\mathsf{fma}\left(y \cdot z, \color{blue}{z \cdot x}, x \cdot y\right)\right)\right) \]
      10. fma-lowering-fma.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(y \cdot z\right), \color{blue}{\left(z \cdot x\right)}, \left(x \cdot y\right)\right)\right) \]
      11. *-lowering-*.f64N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right), \left(x \cdot y\right)\right)\right) \]
      13. *-lowering-*.f6497.2%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, x\right), \mathsf{*.f64}\left(x, y\right)\right)\right) \]
    6. Applied egg-rr97.2%

      \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(y \cdot z, z \cdot x, x \cdot y\right)}} \]
    7. Taylor expanded in z around inf

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

        \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
      2. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(x \cdot y\right) \cdot \color{blue}{{z}^{2}}\right)\right) \]
      3. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot x\right) \cdot {\color{blue}{z}}^{2}\right)\right) \]
      4. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(y \cdot \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      5. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      6. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
      7. unpow2N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
      8. *-lowering-*.f6476.7%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
    9. Simplified76.7%

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

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), z\right), \left(z \cdot x\right)\right) \]
      8. *-lowering-*.f6497.7%

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right)\right) \]
    11. Applied egg-rr97.7%

      \[\leadsto \color{blue}{\frac{\frac{\frac{1}{y}}{z}}{z \cdot x}} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 4: 98.6% accurate, 0.6× 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 \cdot z \leq 10^{+35}:\\ \;\;\;\;\frac{\frac{1}{x\_m}}{y\_m \cdot \left(1 + z \cdot z\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{1}{z \cdot \left(z \cdot x\_m\right)}}{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) 1e+35)
     (/ (/ 1.0 x_m) (* y_m (+ 1.0 (* z z))))
     (/ (/ 1.0 (* z (* z x_m))) 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) <= 1e+35) {
		tmp = (1.0 / x_m) / (y_m * (1.0 + (z * z)));
	} else {
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	}
	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) <= 1d+35) then
        tmp = (1.0d0 / x_m) / (y_m * (1.0d0 + (z * z)))
    else
        tmp = (1.0d0 / (z * (z * x_m))) / y_m
    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) <= 1e+35) {
		tmp = (1.0 / x_m) / (y_m * (1.0 + (z * z)));
	} else {
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	}
	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) <= 1e+35:
		tmp = (1.0 / x_m) / (y_m * (1.0 + (z * z)))
	else:
		tmp = (1.0 / (z * (z * x_m))) / 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(z * z) <= 1e+35)
		tmp = Float64(Float64(1.0 / x_m) / Float64(y_m * Float64(1.0 + Float64(z * z))));
	else
		tmp = Float64(Float64(1.0 / Float64(z * Float64(z * x_m))) / y_m);
	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) <= 1e+35)
		tmp = (1.0 / x_m) / (y_m * (1.0 + (z * z)));
	else
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	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[(z * z), $MachinePrecision], 1e+35], N[(N[(1.0 / x$95$m), $MachinePrecision] / N[(y$95$m * N[(1.0 + N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(1.0 / N[(z * N[(z * x$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / y$95$m), $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 \cdot z \leq 10^{+35}:\\
\;\;\;\;\frac{\frac{1}{x\_m}}{y\_m \cdot \left(1 + z \cdot z\right)}\\

\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{z \cdot \left(z \cdot x\_m\right)}}{y\_m}\\


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 z z) < 9.9999999999999997e34

    1. Initial program 99.7%

      \[\frac{\frac{1}{x}}{y \cdot \left(1 + z \cdot z\right)} \]
    2. Add Preprocessing

    if 9.9999999999999997e34 < (*.f64 z z)

    1. Initial program 79.4%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6479.0%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified79.0%

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
      3. *-lft-identityN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + y\right)\right)\right) \]
      4. distribute-rgt-inN/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot \left(z \cdot z\right)\right) \cdot x + y \cdot x\right)\right) \]
      6. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(y \cdot z\right) \cdot z\right) \cdot x + y \cdot x\right)\right) \]
      7. associate-*l*N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot z\right) \cdot \left(z \cdot x\right) + x \cdot \color{blue}{y}\right)\right) \]
      9. fma-defineN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\mathsf{fma}\left(y \cdot z, \color{blue}{z \cdot x}, x \cdot y\right)\right)\right) \]
      10. fma-lowering-fma.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(y \cdot z\right), \color{blue}{\left(z \cdot x\right)}, \left(x \cdot y\right)\right)\right) \]
      11. *-lowering-*.f64N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right), \left(x \cdot y\right)\right)\right) \]
      13. *-lowering-*.f6493.7%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, x\right), \mathsf{*.f64}\left(x, y\right)\right)\right) \]
    6. Applied egg-rr93.7%

      \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(y \cdot z, z \cdot x, x \cdot y\right)}} \]
    7. Taylor expanded in z around inf

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

        \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
      2. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(x \cdot y\right) \cdot \color{blue}{{z}^{2}}\right)\right) \]
      3. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot x\right) \cdot {\color{blue}{z}}^{2}\right)\right) \]
      4. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(y \cdot \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      5. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      6. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
      7. unpow2N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
      8. *-lowering-*.f6480.6%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
    9. Simplified80.6%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(\left(z \cdot x\right) \cdot z\right)\right), y\right) \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(z \cdot \left(z \cdot x\right)\right)\right), y\right) \]
      8. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(z, \left(z \cdot x\right)\right)\right), y\right) \]
      9. *-lowering-*.f6490.6%

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(z, \mathsf{*.f64}\left(z, x\right)\right)\right), y\right) \]
    11. Applied egg-rr90.6%

      \[\leadsto \color{blue}{\frac{\frac{1}{z \cdot \left(z \cdot x\right)}}{y}} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 5: 98.4% accurate, 0.6× 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 \cdot z \leq 10^{+35}:\\ \;\;\;\;\frac{1}{x\_m \cdot \left(y\_m + y\_m \cdot \left(z \cdot z\right)\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{1}{z \cdot \left(z \cdot x\_m\right)}}{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) 1e+35)
     (/ 1.0 (* x_m (+ y_m (* y_m (* z z)))))
     (/ (/ 1.0 (* z (* z x_m))) 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) <= 1e+35) {
		tmp = 1.0 / (x_m * (y_m + (y_m * (z * z))));
	} else {
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	}
	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) <= 1d+35) then
        tmp = 1.0d0 / (x_m * (y_m + (y_m * (z * z))))
    else
        tmp = (1.0d0 / (z * (z * x_m))) / y_m
    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) <= 1e+35) {
		tmp = 1.0 / (x_m * (y_m + (y_m * (z * z))));
	} else {
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	}
	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) <= 1e+35:
		tmp = 1.0 / (x_m * (y_m + (y_m * (z * z))))
	else:
		tmp = (1.0 / (z * (z * x_m))) / 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(z * z) <= 1e+35)
		tmp = Float64(1.0 / Float64(x_m * Float64(y_m + Float64(y_m * Float64(z * z)))));
	else
		tmp = Float64(Float64(1.0 / Float64(z * Float64(z * x_m))) / y_m);
	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) <= 1e+35)
		tmp = 1.0 / (x_m * (y_m + (y_m * (z * z))));
	else
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	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[(z * z), $MachinePrecision], 1e+35], N[(1.0 / N[(x$95$m * N[(y$95$m + N[(y$95$m * N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(1.0 / N[(z * N[(z * x$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / y$95$m), $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 \cdot z \leq 10^{+35}:\\
\;\;\;\;\frac{1}{x\_m \cdot \left(y\_m + y\_m \cdot \left(z \cdot z\right)\right)}\\

\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{z \cdot \left(z \cdot x\_m\right)}}{y\_m}\\


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 z z) < 9.9999999999999997e34

    1. Initial program 99.7%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6498.5%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified98.5%

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \left(y \cdot \left(z \cdot z + \color{blue}{1}\right)\right)\right)\right) \]
      2. distribute-rgt-inN/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
      3. *-lft-identityN/A

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{+.f64}\left(\mathsf{*.f64}\left(y, \left(z \cdot z\right)\right), y\right)\right)\right) \]
      7. *-lowering-*.f6498.6%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{+.f64}\left(\mathsf{*.f64}\left(y, \mathsf{*.f64}\left(z, z\right)\right), y\right)\right)\right) \]
    6. Applied egg-rr98.6%

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

    if 9.9999999999999997e34 < (*.f64 z z)

    1. Initial program 79.4%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6479.0%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified79.0%

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
      3. *-lft-identityN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + y\right)\right)\right) \]
      4. distribute-rgt-inN/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot \left(z \cdot z\right)\right) \cdot x + y \cdot x\right)\right) \]
      6. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(y \cdot z\right) \cdot z\right) \cdot x + y \cdot x\right)\right) \]
      7. associate-*l*N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot z\right) \cdot \left(z \cdot x\right) + x \cdot \color{blue}{y}\right)\right) \]
      9. fma-defineN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\mathsf{fma}\left(y \cdot z, \color{blue}{z \cdot x}, x \cdot y\right)\right)\right) \]
      10. fma-lowering-fma.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(y \cdot z\right), \color{blue}{\left(z \cdot x\right)}, \left(x \cdot y\right)\right)\right) \]
      11. *-lowering-*.f64N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right), \left(x \cdot y\right)\right)\right) \]
      13. *-lowering-*.f6493.7%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, x\right), \mathsf{*.f64}\left(x, y\right)\right)\right) \]
    6. Applied egg-rr93.7%

      \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(y \cdot z, z \cdot x, x \cdot y\right)}} \]
    7. Taylor expanded in z around inf

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

        \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
      2. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(x \cdot y\right) \cdot \color{blue}{{z}^{2}}\right)\right) \]
      3. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot x\right) \cdot {\color{blue}{z}}^{2}\right)\right) \]
      4. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(y \cdot \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      5. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      6. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
      7. unpow2N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
      8. *-lowering-*.f6480.6%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
    9. Simplified80.6%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(\left(z \cdot x\right) \cdot z\right)\right), y\right) \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(z \cdot \left(z \cdot x\right)\right)\right), y\right) \]
      8. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(z, \left(z \cdot x\right)\right)\right), y\right) \]
      9. *-lowering-*.f6490.6%

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(z, \mathsf{*.f64}\left(z, x\right)\right)\right), y\right) \]
    11. Applied egg-rr90.6%

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

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

Alternative 6: 98.4% accurate, 0.6× 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 \cdot z \leq 10^{+35}:\\ \;\;\;\;\frac{1}{x\_m \cdot \left(y\_m \cdot \left(1 + z \cdot z\right)\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{1}{z \cdot \left(z \cdot x\_m\right)}}{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) 1e+35)
     (/ 1.0 (* x_m (* y_m (+ 1.0 (* z z)))))
     (/ (/ 1.0 (* z (* z x_m))) 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) <= 1e+35) {
		tmp = 1.0 / (x_m * (y_m * (1.0 + (z * z))));
	} else {
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	}
	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) <= 1d+35) then
        tmp = 1.0d0 / (x_m * (y_m * (1.0d0 + (z * z))))
    else
        tmp = (1.0d0 / (z * (z * x_m))) / y_m
    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) <= 1e+35) {
		tmp = 1.0 / (x_m * (y_m * (1.0 + (z * z))));
	} else {
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	}
	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) <= 1e+35:
		tmp = 1.0 / (x_m * (y_m * (1.0 + (z * z))))
	else:
		tmp = (1.0 / (z * (z * x_m))) / 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(z * z) <= 1e+35)
		tmp = Float64(1.0 / Float64(x_m * Float64(y_m * Float64(1.0 + Float64(z * z)))));
	else
		tmp = Float64(Float64(1.0 / Float64(z * Float64(z * x_m))) / y_m);
	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) <= 1e+35)
		tmp = 1.0 / (x_m * (y_m * (1.0 + (z * z))));
	else
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	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[(z * z), $MachinePrecision], 1e+35], N[(1.0 / N[(x$95$m * N[(y$95$m * N[(1.0 + N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(1.0 / N[(z * N[(z * x$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / y$95$m), $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 \cdot z \leq 10^{+35}:\\
\;\;\;\;\frac{1}{x\_m \cdot \left(y\_m \cdot \left(1 + z \cdot z\right)\right)}\\

\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{z \cdot \left(z \cdot x\_m\right)}}{y\_m}\\


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 z z) < 9.9999999999999997e34

    1. Initial program 99.7%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6498.5%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified98.5%

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

    if 9.9999999999999997e34 < (*.f64 z z)

    1. Initial program 79.4%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
      7. *-lowering-*.f6479.0%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
    3. Simplified79.0%

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

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
      3. *-lft-identityN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + y\right)\right)\right) \]
      4. distribute-rgt-inN/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot \left(z \cdot z\right)\right) \cdot x + y \cdot x\right)\right) \]
      6. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(y \cdot z\right) \cdot z\right) \cdot x + y \cdot x\right)\right) \]
      7. associate-*l*N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot z\right) \cdot \left(z \cdot x\right) + x \cdot \color{blue}{y}\right)\right) \]
      9. fma-defineN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\mathsf{fma}\left(y \cdot z, \color{blue}{z \cdot x}, x \cdot y\right)\right)\right) \]
      10. fma-lowering-fma.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(y \cdot z\right), \color{blue}{\left(z \cdot x\right)}, \left(x \cdot y\right)\right)\right) \]
      11. *-lowering-*.f64N/A

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

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right), \left(x \cdot y\right)\right)\right) \]
      13. *-lowering-*.f6493.7%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, x\right), \mathsf{*.f64}\left(x, y\right)\right)\right) \]
    6. Applied egg-rr93.7%

      \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(y \cdot z, z \cdot x, x \cdot y\right)}} \]
    7. Taylor expanded in z around inf

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

        \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
      2. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(x \cdot y\right) \cdot \color{blue}{{z}^{2}}\right)\right) \]
      3. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot x\right) \cdot {\color{blue}{z}}^{2}\right)\right) \]
      4. associate-*r*N/A

        \[\leadsto \mathsf{/.f64}\left(1, \left(y \cdot \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      5. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
      6. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
      7. unpow2N/A

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
      8. *-lowering-*.f6480.6%

        \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
    9. Simplified80.6%

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

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

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

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

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

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(\left(z \cdot x\right) \cdot z\right)\right), y\right) \]
      7. *-commutativeN/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(z \cdot \left(z \cdot x\right)\right)\right), y\right) \]
      8. *-lowering-*.f64N/A

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(z, \left(z \cdot x\right)\right)\right), y\right) \]
      9. *-lowering-*.f6490.6%

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(z, \mathsf{*.f64}\left(z, x\right)\right)\right), y\right) \]
    11. Applied egg-rr90.6%

      \[\leadsto \color{blue}{\frac{\frac{1}{z \cdot \left(z \cdot x\right)}}{y}} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 7: 97.7% 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 \cdot z \leq 0.001:\\ \;\;\;\;\frac{\frac{1}{x\_m}}{y\_m}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{1}{z \cdot \left(z \cdot x\_m\right)}}{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) 0.001)
     (/ (/ 1.0 x_m) y_m)
     (/ (/ 1.0 (* z (* z x_m))) 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) <= 0.001) {
		tmp = (1.0 / x_m) / y_m;
	} else {
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	}
	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) <= 0.001d0) then
        tmp = (1.0d0 / x_m) / y_m
    else
        tmp = (1.0d0 / (z * (z * x_m))) / y_m
    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) <= 0.001) {
		tmp = (1.0 / x_m) / y_m;
	} else {
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	}
	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) <= 0.001:
		tmp = (1.0 / x_m) / y_m
	else:
		tmp = (1.0 / (z * (z * x_m))) / 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(z * z) <= 0.001)
		tmp = Float64(Float64(1.0 / x_m) / y_m);
	else
		tmp = Float64(Float64(1.0 / Float64(z * Float64(z * x_m))) / y_m);
	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) <= 0.001)
		tmp = (1.0 / x_m) / y_m;
	else
		tmp = (1.0 / (z * (z * x_m))) / y_m;
	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[(z * z), $MachinePrecision], 0.001], N[(N[(1.0 / x$95$m), $MachinePrecision] / y$95$m), $MachinePrecision], N[(N[(1.0 / N[(z * N[(z * x$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / y$95$m), $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 \cdot z \leq 0.001:\\
\;\;\;\;\frac{\frac{1}{x\_m}}{y\_m}\\

\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{z \cdot \left(z \cdot x\_m\right)}}{y\_m}\\


\end{array}\right)
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (*.f64 z z) < 1e-3

    1. Initial program 99.7%

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

      \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, x\right), \color{blue}{y}\right) \]
    4. Step-by-step derivation
      1. Simplified98.7%

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

      if 1e-3 < (*.f64 z z)

      1. Initial program 80.3%

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

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

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

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

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

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

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
        7. *-lowering-*.f6480.0%

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
      3. Simplified80.0%

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

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

          \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
        3. *-lft-identityN/A

          \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + y\right)\right)\right) \]
        4. distribute-rgt-inN/A

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

          \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot \left(z \cdot z\right)\right) \cdot x + y \cdot x\right)\right) \]
        6. associate-*r*N/A

          \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(y \cdot z\right) \cdot z\right) \cdot x + y \cdot x\right)\right) \]
        7. associate-*l*N/A

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

          \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot z\right) \cdot \left(z \cdot x\right) + x \cdot \color{blue}{y}\right)\right) \]
        9. fma-defineN/A

          \[\leadsto \mathsf{/.f64}\left(1, \left(\mathsf{fma}\left(y \cdot z, \color{blue}{z \cdot x}, x \cdot y\right)\right)\right) \]
        10. fma-lowering-fma.f64N/A

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(y \cdot z\right), \color{blue}{\left(z \cdot x\right)}, \left(x \cdot y\right)\right)\right) \]
        11. *-lowering-*.f64N/A

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

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right), \left(x \cdot y\right)\right)\right) \]
        13. *-lowering-*.f6494.0%

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, x\right), \mathsf{*.f64}\left(x, y\right)\right)\right) \]
      6. Applied egg-rr94.0%

        \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(y \cdot z, z \cdot x, x \cdot y\right)}} \]
      7. Taylor expanded in z around inf

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

          \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
        2. associate-*r*N/A

          \[\leadsto \mathsf{/.f64}\left(1, \left(\left(x \cdot y\right) \cdot \color{blue}{{z}^{2}}\right)\right) \]
        3. *-commutativeN/A

          \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot x\right) \cdot {\color{blue}{z}}^{2}\right)\right) \]
        4. associate-*r*N/A

          \[\leadsto \mathsf{/.f64}\left(1, \left(y \cdot \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
        5. *-lowering-*.f64N/A

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
        6. *-lowering-*.f64N/A

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
        7. unpow2N/A

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
        8. *-lowering-*.f6480.8%

          \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
      9. Simplified80.8%

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

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

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

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

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

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

          \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(\left(z \cdot x\right) \cdot z\right)\right), y\right) \]
        7. *-commutativeN/A

          \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \left(z \cdot \left(z \cdot x\right)\right)\right), y\right) \]
        8. *-lowering-*.f64N/A

          \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(z, \left(z \cdot x\right)\right)\right), y\right) \]
        9. *-lowering-*.f6490.4%

          \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, \mathsf{*.f64}\left(z, \mathsf{*.f64}\left(z, x\right)\right)\right), y\right) \]
      11. Applied egg-rr90.4%

        \[\leadsto \color{blue}{\frac{\frac{1}{z \cdot \left(z \cdot x\right)}}{y}} \]
    5. Recombined 2 regimes into one program.
    6. Add Preprocessing

    Alternative 8: 97.7% 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 \cdot z \leq 0.001:\\ \;\;\;\;\frac{\frac{1}{x\_m}}{y\_m}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{1}{y\_m}}{z \cdot \left(z \cdot x\_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 z) 0.001)
         (/ (/ 1.0 x_m) y_m)
         (/ (/ 1.0 y_m) (* z (* z x_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) <= 0.001) {
    		tmp = (1.0 / x_m) / y_m;
    	} else {
    		tmp = (1.0 / y_m) / (z * (z * x_m));
    	}
    	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) <= 0.001d0) then
            tmp = (1.0d0 / x_m) / y_m
        else
            tmp = (1.0d0 / y_m) / (z * (z * x_m))
        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) <= 0.001) {
    		tmp = (1.0 / x_m) / y_m;
    	} else {
    		tmp = (1.0 / y_m) / (z * (z * x_m));
    	}
    	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) <= 0.001:
    		tmp = (1.0 / x_m) / y_m
    	else:
    		tmp = (1.0 / y_m) / (z * (z * x_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(z * z) <= 0.001)
    		tmp = Float64(Float64(1.0 / x_m) / y_m);
    	else
    		tmp = Float64(Float64(1.0 / y_m) / Float64(z * Float64(z * x_m)));
    	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) <= 0.001)
    		tmp = (1.0 / x_m) / y_m;
    	else
    		tmp = (1.0 / y_m) / (z * (z * x_m));
    	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[(z * z), $MachinePrecision], 0.001], N[(N[(1.0 / x$95$m), $MachinePrecision] / y$95$m), $MachinePrecision], N[(N[(1.0 / y$95$m), $MachinePrecision] / N[(z * N[(z * x$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}\;z \cdot z \leq 0.001:\\
    \;\;\;\;\frac{\frac{1}{x\_m}}{y\_m}\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{\frac{1}{y\_m}}{z \cdot \left(z \cdot x\_m\right)}\\
    
    
    \end{array}\right)
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if (*.f64 z z) < 1e-3

      1. Initial program 99.7%

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

        \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, x\right), \color{blue}{y}\right) \]
      4. Step-by-step derivation
        1. Simplified98.7%

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

        if 1e-3 < (*.f64 z z)

        1. Initial program 80.3%

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

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

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

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

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

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

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
          7. *-lowering-*.f6480.0%

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
        3. Simplified80.0%

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

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

            \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
          3. *-lft-identityN/A

            \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + y\right)\right)\right) \]
          4. distribute-rgt-inN/A

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

            \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot \left(z \cdot z\right)\right) \cdot x + y \cdot x\right)\right) \]
          6. associate-*r*N/A

            \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(y \cdot z\right) \cdot z\right) \cdot x + y \cdot x\right)\right) \]
          7. associate-*l*N/A

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

            \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot z\right) \cdot \left(z \cdot x\right) + x \cdot \color{blue}{y}\right)\right) \]
          9. fma-defineN/A

            \[\leadsto \mathsf{/.f64}\left(1, \left(\mathsf{fma}\left(y \cdot z, \color{blue}{z \cdot x}, x \cdot y\right)\right)\right) \]
          10. fma-lowering-fma.f64N/A

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(y \cdot z\right), \color{blue}{\left(z \cdot x\right)}, \left(x \cdot y\right)\right)\right) \]
          11. *-lowering-*.f64N/A

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

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right), \left(x \cdot y\right)\right)\right) \]
          13. *-lowering-*.f6494.0%

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, x\right), \mathsf{*.f64}\left(x, y\right)\right)\right) \]
        6. Applied egg-rr94.0%

          \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(y \cdot z, z \cdot x, x \cdot y\right)}} \]
        7. Taylor expanded in z around inf

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

            \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
          2. associate-*r*N/A

            \[\leadsto \mathsf{/.f64}\left(1, \left(\left(x \cdot y\right) \cdot \color{blue}{{z}^{2}}\right)\right) \]
          3. *-commutativeN/A

            \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot x\right) \cdot {\color{blue}{z}}^{2}\right)\right) \]
          4. associate-*r*N/A

            \[\leadsto \mathsf{/.f64}\left(1, \left(y \cdot \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
          5. *-lowering-*.f64N/A

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
          6. *-lowering-*.f64N/A

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
          7. unpow2N/A

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
          8. *-lowering-*.f6480.8%

            \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
        9. Simplified80.8%

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

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

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

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

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

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

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

            \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), \mathsf{*.f64}\left(z, \color{blue}{\left(z \cdot x\right)}\right)\right) \]
          8. *-lowering-*.f6490.4%

            \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, y\right), \mathsf{*.f64}\left(z, \mathsf{*.f64}\left(z, \color{blue}{x}\right)\right)\right) \]
        11. Applied egg-rr90.4%

          \[\leadsto \color{blue}{\frac{\frac{1}{y}}{z \cdot \left(z \cdot x\right)}} \]
      5. Recombined 2 regimes into one program.
      6. Add Preprocessing

      Alternative 9: 75.2% 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}\;z \leq 0.135:\\ \;\;\;\;\frac{\frac{1}{x\_m}}{y\_m}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{y\_m \cdot \left(x\_m \cdot \left(z \cdot z\right)\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 0.135) (/ (/ 1.0 x_m) y_m) (/ 1.0 (* 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) {
      	double tmp;
      	if (z <= 0.135) {
      		tmp = (1.0 / x_m) / y_m;
      	} else {
      		tmp = 1.0 / (y_m * (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 <= 0.135d0) then
              tmp = (1.0d0 / x_m) / y_m
          else
              tmp = 1.0d0 / (y_m * (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 <= 0.135) {
      		tmp = (1.0 / x_m) / y_m;
      	} else {
      		tmp = 1.0 / (y_m * (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 <= 0.135:
      		tmp = (1.0 / x_m) / y_m
      	else:
      		tmp = 1.0 / (y_m * (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 (z <= 0.135)
      		tmp = Float64(Float64(1.0 / x_m) / y_m);
      	else
      		tmp = Float64(1.0 / Float64(y_m * Float64(x_m * Float64(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 <= 0.135)
      		tmp = (1.0 / x_m) / y_m;
      	else
      		tmp = 1.0 / (y_m * (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[z, 0.135], N[(N[(1.0 / x$95$m), $MachinePrecision] / y$95$m), $MachinePrecision], N[(1.0 / N[(y$95$m * N[(x$95$m * N[(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}\;z \leq 0.135:\\
      \;\;\;\;\frac{\frac{1}{x\_m}}{y\_m}\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{1}{y\_m \cdot \left(x\_m \cdot \left(z \cdot z\right)\right)}\\
      
      
      \end{array}\right)
      \end{array}
      
      Derivation
      1. Split input into 2 regimes
      2. if z < 0.13500000000000001

        1. Initial program 92.8%

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

          \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, x\right), \color{blue}{y}\right) \]
        4. Step-by-step derivation
          1. Simplified71.6%

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

          if 0.13500000000000001 < z

          1. Initial program 79.7%

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

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

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

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

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

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

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
            7. *-lowering-*.f6478.9%

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
          3. Simplified78.9%

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

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

              \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + \color{blue}{1 \cdot y}\right)\right)\right) \]
            3. *-lft-identityN/A

              \[\leadsto \mathsf{/.f64}\left(1, \left(x \cdot \left(\left(z \cdot z\right) \cdot y + y\right)\right)\right) \]
            4. distribute-rgt-inN/A

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

              \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot \left(z \cdot z\right)\right) \cdot x + y \cdot x\right)\right) \]
            6. associate-*r*N/A

              \[\leadsto \mathsf{/.f64}\left(1, \left(\left(\left(y \cdot z\right) \cdot z\right) \cdot x + y \cdot x\right)\right) \]
            7. associate-*l*N/A

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

              \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot z\right) \cdot \left(z \cdot x\right) + x \cdot \color{blue}{y}\right)\right) \]
            9. fma-defineN/A

              \[\leadsto \mathsf{/.f64}\left(1, \left(\mathsf{fma}\left(y \cdot z, \color{blue}{z \cdot x}, x \cdot y\right)\right)\right) \]
            10. fma-lowering-fma.f64N/A

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\left(y \cdot z\right), \color{blue}{\left(z \cdot x\right)}, \left(x \cdot y\right)\right)\right) \]
            11. *-lowering-*.f64N/A

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

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, \color{blue}{x}\right), \left(x \cdot y\right)\right)\right) \]
            13. *-lowering-*.f6496.4%

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{fma.f64}\left(\mathsf{*.f64}\left(y, z\right), \mathsf{*.f64}\left(z, x\right), \mathsf{*.f64}\left(x, y\right)\right)\right) \]
          6. Applied egg-rr96.4%

            \[\leadsto \frac{1}{\color{blue}{\mathsf{fma}\left(y \cdot z, z \cdot x, x \cdot y\right)}} \]
          7. Taylor expanded in z around inf

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

              \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
            2. associate-*r*N/A

              \[\leadsto \mathsf{/.f64}\left(1, \left(\left(x \cdot y\right) \cdot \color{blue}{{z}^{2}}\right)\right) \]
            3. *-commutativeN/A

              \[\leadsto \mathsf{/.f64}\left(1, \left(\left(y \cdot x\right) \cdot {\color{blue}{z}}^{2}\right)\right) \]
            4. associate-*r*N/A

              \[\leadsto \mathsf{/.f64}\left(1, \left(y \cdot \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
            5. *-lowering-*.f64N/A

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \color{blue}{\left(x \cdot {z}^{2}\right)}\right)\right) \]
            6. *-lowering-*.f64N/A

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
            7. unpow2N/A

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
            8. *-lowering-*.f6480.9%

              \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
          9. Simplified80.9%

            \[\leadsto \color{blue}{\frac{1}{y \cdot \left(x \cdot \left(z \cdot z\right)\right)}} \]
        5. Recombined 2 regimes into one program.
        6. Add Preprocessing

        Alternative 10: 73.3% 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}\;z \leq 0.135:\\ \;\;\;\;\frac{\frac{1}{x\_m}}{y\_m}\\ \mathbf{else}:\\ \;\;\;\;\frac{1}{x\_m \cdot \left(y\_m \cdot \left(z \cdot z\right)\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 0.135) (/ (/ 1.0 x_m) y_m) (/ 1.0 (* x_m (* 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 <= 0.135) {
        		tmp = (1.0 / x_m) / y_m;
        	} else {
        		tmp = 1.0 / (x_m * (y_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 <= 0.135d0) then
                tmp = (1.0d0 / x_m) / y_m
            else
                tmp = 1.0d0 / (x_m * (y_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 <= 0.135) {
        		tmp = (1.0 / x_m) / y_m;
        	} else {
        		tmp = 1.0 / (x_m * (y_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 <= 0.135:
        		tmp = (1.0 / x_m) / y_m
        	else:
        		tmp = 1.0 / (x_m * (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 (z <= 0.135)
        		tmp = Float64(Float64(1.0 / x_m) / y_m);
        	else
        		tmp = Float64(1.0 / Float64(x_m * Float64(y_m * Float64(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 <= 0.135)
        		tmp = (1.0 / x_m) / y_m;
        	else
        		tmp = 1.0 / (x_m * (y_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[z, 0.135], N[(N[(1.0 / x$95$m), $MachinePrecision] / y$95$m), $MachinePrecision], N[(1.0 / N[(x$95$m * N[(y$95$m * N[(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}\;z \leq 0.135:\\
        \;\;\;\;\frac{\frac{1}{x\_m}}{y\_m}\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{1}{x\_m \cdot \left(y\_m \cdot \left(z \cdot z\right)\right)}\\
        
        
        \end{array}\right)
        \end{array}
        
        Derivation
        1. Split input into 2 regimes
        2. if z < 0.13500000000000001

          1. Initial program 92.8%

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

            \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, x\right), \color{blue}{y}\right) \]
          4. Step-by-step derivation
            1. Simplified71.6%

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

            if 0.13500000000000001 < z

            1. Initial program 79.7%

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

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

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

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

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

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

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
              7. *-lowering-*.f6478.9%

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
            3. Simplified78.9%

              \[\leadsto \color{blue}{\frac{1}{x \cdot \left(y \cdot \left(1 + z \cdot z\right)\right)}} \]
            4. Add Preprocessing
            5. Taylor expanded in z around inf

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

                \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot \left(y \cdot {z}^{2}\right)\right)}\right) \]
              2. *-lowering-*.f64N/A

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \color{blue}{\left(y \cdot {z}^{2}\right)}\right)\right) \]
              3. *-lowering-*.f64N/A

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \color{blue}{\left({z}^{2}\right)}\right)\right)\right) \]
              4. unpow2N/A

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \left(z \cdot \color{blue}{z}\right)\right)\right)\right) \]
              5. *-lowering-*.f6477.4%

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right) \]
            7. Simplified77.4%

              \[\leadsto \color{blue}{\frac{1}{x \cdot \left(y \cdot \left(z \cdot z\right)\right)}} \]
          5. Recombined 2 regimes into one program.
          6. Add Preprocessing

          Alternative 11: 58.5% accurate, 2.2× 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{1}{x\_m}}{y\_m}\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 (/ (/ 1.0 x_m) 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) {
          	return y_s * (x_s * ((1.0 / x_m) / y_m));
          }
          
          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 * ((1.0d0 / x_m) / y_m))
          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 * ((1.0 / x_m) / y_m));
          }
          
          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 * ((1.0 / x_m) / y_m))
          
          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(1.0 / x_m) / y_m)))
          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 * ((1.0 / x_m) / y_m));
          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[(1.0 / x$95$m), $MachinePrecision] / y$95$m), $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{1}{x\_m}}{y\_m}\right)
          \end{array}
          
          Derivation
          1. Initial program 90.0%

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

            \[\leadsto \mathsf{/.f64}\left(\mathsf{/.f64}\left(1, x\right), \color{blue}{y}\right) \]
          4. Step-by-step derivation
            1. Simplified60.2%

              \[\leadsto \frac{\frac{1}{x}}{\color{blue}{y}} \]
            2. Add Preprocessing

            Alternative 12: 58.5% accurate, 2.2× 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{1}{x\_m \cdot y\_m}\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 (/ 1.0 (* x_m 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) {
            	return y_s * (x_s * (1.0 / (x_m * y_m)));
            }
            
            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 * (1.0d0 / (x_m * y_m)))
            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 * (1.0 / (x_m * y_m)));
            }
            
            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 * (1.0 / (x_m * y_m)))
            
            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(1.0 / Float64(x_m * y_m))))
            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 * (1.0 / (x_m * y_m)));
            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[(1.0 / N[(x$95$m * y$95$m), $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 \frac{1}{x\_m \cdot y\_m}\right)
            \end{array}
            
            Derivation
            1. Initial program 90.0%

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

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

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

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

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

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

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \color{blue}{\left(z \cdot z\right)}\right)\right)\right)\right) \]
              7. *-lowering-*.f6489.2%

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \mathsf{*.f64}\left(y, \mathsf{+.f64}\left(1, \mathsf{*.f64}\left(z, \color{blue}{z}\right)\right)\right)\right)\right) \]
            3. Simplified89.2%

              \[\leadsto \color{blue}{\frac{1}{x \cdot \left(y \cdot \left(1 + z \cdot z\right)\right)}} \]
            4. Add Preprocessing
            5. Taylor expanded in z around 0

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

                \[\leadsto \mathsf{/.f64}\left(1, \color{blue}{\left(x \cdot y\right)}\right) \]
              2. *-lowering-*.f6459.9%

                \[\leadsto \mathsf{/.f64}\left(1, \mathsf{*.f64}\left(x, \color{blue}{y}\right)\right) \]
            7. Simplified59.9%

              \[\leadsto \color{blue}{\frac{1}{x \cdot y}} \]
            8. Add Preprocessing

            Developer Target 1: 92.9% accurate, 0.3× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_0 := 1 + z \cdot z\\ t_1 := y \cdot t\_0\\ t_2 := \frac{\frac{1}{y}}{t\_0 \cdot x}\\ \mathbf{if}\;t\_1 < -\infty:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 < 8.680743250567252 \cdot 10^{+305}:\\ \;\;\;\;\frac{\frac{1}{x}}{t\_0 \cdot y}\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
            (FPCore (x y z)
             :precision binary64
             (let* ((t_0 (+ 1.0 (* z z))) (t_1 (* y t_0)) (t_2 (/ (/ 1.0 y) (* t_0 x))))
               (if (< t_1 (- INFINITY))
                 t_2
                 (if (< t_1 8.680743250567252e+305) (/ (/ 1.0 x) (* t_0 y)) t_2))))
            double code(double x, double y, double z) {
            	double t_0 = 1.0 + (z * z);
            	double t_1 = y * t_0;
            	double t_2 = (1.0 / y) / (t_0 * x);
            	double tmp;
            	if (t_1 < -((double) INFINITY)) {
            		tmp = t_2;
            	} else if (t_1 < 8.680743250567252e+305) {
            		tmp = (1.0 / x) / (t_0 * y);
            	} else {
            		tmp = t_2;
            	}
            	return tmp;
            }
            
            public static double code(double x, double y, double z) {
            	double t_0 = 1.0 + (z * z);
            	double t_1 = y * t_0;
            	double t_2 = (1.0 / y) / (t_0 * x);
            	double tmp;
            	if (t_1 < -Double.POSITIVE_INFINITY) {
            		tmp = t_2;
            	} else if (t_1 < 8.680743250567252e+305) {
            		tmp = (1.0 / x) / (t_0 * y);
            	} else {
            		tmp = t_2;
            	}
            	return tmp;
            }
            
            def code(x, y, z):
            	t_0 = 1.0 + (z * z)
            	t_1 = y * t_0
            	t_2 = (1.0 / y) / (t_0 * x)
            	tmp = 0
            	if t_1 < -math.inf:
            		tmp = t_2
            	elif t_1 < 8.680743250567252e+305:
            		tmp = (1.0 / x) / (t_0 * y)
            	else:
            		tmp = t_2
            	return tmp
            
            function code(x, y, z)
            	t_0 = Float64(1.0 + Float64(z * z))
            	t_1 = Float64(y * t_0)
            	t_2 = Float64(Float64(1.0 / y) / Float64(t_0 * x))
            	tmp = 0.0
            	if (t_1 < Float64(-Inf))
            		tmp = t_2;
            	elseif (t_1 < 8.680743250567252e+305)
            		tmp = Float64(Float64(1.0 / x) / Float64(t_0 * y));
            	else
            		tmp = t_2;
            	end
            	return tmp
            end
            
            function tmp_2 = code(x, y, z)
            	t_0 = 1.0 + (z * z);
            	t_1 = y * t_0;
            	t_2 = (1.0 / y) / (t_0 * x);
            	tmp = 0.0;
            	if (t_1 < -Inf)
            		tmp = t_2;
            	elseif (t_1 < 8.680743250567252e+305)
            		tmp = (1.0 / x) / (t_0 * y);
            	else
            		tmp = t_2;
            	end
            	tmp_2 = tmp;
            end
            
            code[x_, y_, z_] := Block[{t$95$0 = N[(1.0 + N[(z * z), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(y * t$95$0), $MachinePrecision]}, Block[{t$95$2 = N[(N[(1.0 / y), $MachinePrecision] / N[(t$95$0 * x), $MachinePrecision]), $MachinePrecision]}, If[Less[t$95$1, (-Infinity)], t$95$2, If[Less[t$95$1, 8.680743250567252e+305], N[(N[(1.0 / x), $MachinePrecision] / N[(t$95$0 * y), $MachinePrecision]), $MachinePrecision], t$95$2]]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_0 := 1 + z \cdot z\\
            t_1 := y \cdot t\_0\\
            t_2 := \frac{\frac{1}{y}}{t\_0 \cdot x}\\
            \mathbf{if}\;t\_1 < -\infty:\\
            \;\;\;\;t\_2\\
            
            \mathbf{elif}\;t\_1 < 8.680743250567252 \cdot 10^{+305}:\\
            \;\;\;\;\frac{\frac{1}{x}}{t\_0 \cdot y}\\
            
            \mathbf{else}:\\
            \;\;\;\;t\_2\\
            
            
            \end{array}
            \end{array}
            

            Reproduce

            ?
            herbie shell --seed 2024149 
            (FPCore (x y z)
              :name "Statistics.Distribution.CauchyLorentz:$cdensity from math-functions-0.1.5.2"
              :precision binary64
            
              :alt
              (! :herbie-platform default (if (< (* y (+ 1 (* z z))) -inf.0) (/ (/ 1 y) (* (+ 1 (* z z)) x)) (if (< (* y (+ 1 (* z z))) 868074325056725200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (/ (/ 1 x) (* (+ 1 (* z z)) y)) (/ (/ 1 y) (* (+ 1 (* z z)) x)))))
            
              (/ (/ 1.0 x) (* y (+ 1.0 (* z z)))))