Numeric.SpecFunctions:incompleteBetaApprox from math-functions-0.1.5.2, A

Percentage Accurate: 70.0% → 99.8%
Time: 8.5s
Alternatives: 17
Speedup: 1.6×

Specification

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

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

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 17 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: 70.0% accurate, 1.0× speedup?

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

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

Alternative 1: 99.8% accurate, 0.8× speedup?

\[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x} \end{array} \]
NOTE: x and y should be sorted in increasing order before calling this function.
(FPCore (x y)
 :precision binary64
 (* (/ x (+ y x)) (/ (/ y (+ 1.0 (+ y x))) (+ y x))))
assert(x < y);
double code(double x, double y) {
	return (x / (y + x)) * ((y / (1.0 + (y + x))) / (y + x));
}
NOTE: x and y should be sorted in increasing order before calling this function.
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = (x / (y + x)) * ((y / (1.0d0 + (y + x))) / (y + x))
end function
assert x < y;
public static double code(double x, double y) {
	return (x / (y + x)) * ((y / (1.0 + (y + x))) / (y + x));
}
[x, y] = sort([x, y])
def code(x, y):
	return (x / (y + x)) * ((y / (1.0 + (y + x))) / (y + x))
x, y = sort([x, y])
function code(x, y)
	return Float64(Float64(x / Float64(y + x)) * Float64(Float64(y / Float64(1.0 + Float64(y + x))) / Float64(y + x)))
end
x, y = num2cell(sort([x, y])){:}
function tmp = code(x, y)
	tmp = (x / (y + x)) * ((y / (1.0 + (y + x))) / (y + x));
end
NOTE: x and y should be sorted in increasing order before calling this function.
code[x_, y_] := N[(N[(x / N[(y + x), $MachinePrecision]), $MachinePrecision] * N[(N[(y / N[(1.0 + N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
[x, y] = \mathsf{sort}([x, y])\\
\\
\frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}
\end{array}
Derivation
  1. Initial program 68.2%

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

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

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

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

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

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

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

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

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

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

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

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

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

      \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
    14. lower-/.f6499.8

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

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

      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
    17. lower-+.f6499.8

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

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

      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
    20. lower-+.f6499.8

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

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

      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
    23. lower-+.f6499.8

      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
  4. Applied rewrites99.8%

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

Alternative 2: 89.2% accurate, 0.3× speedup?

\[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} t_0 := \frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ t_1 := 1 + \left(y + x\right)\\ \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;1 \cdot \frac{\frac{y}{t\_1}}{y + x}\\ \mathbf{elif}\;y \leq 1.5 \cdot 10^{-176}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;y \leq 102000000:\\ \;\;\;\;\frac{x \cdot y}{\left(y + x\right) \cdot \left(t\_1 \cdot \left(y + x\right)\right)}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;t\_0\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \end{array} \]
NOTE: x and y should be sorted in increasing order before calling this function.
(FPCore (x y)
 :precision binary64
 (let* ((t_0 (/ (* 1.0 x) (* (+ (+ y x) 1.0) (+ y x)))) (t_1 (+ 1.0 (+ y x))))
   (if (<= y 2.3e-190)
     (* 1.0 (/ (/ y t_1) (+ y x)))
     (if (<= y 1.5e-176)
       t_0
       (if (<= y 102000000.0)
         (/ (* x y) (* (+ y x) (* t_1 (+ y x))))
         (if (<= y 1e+140) t_0 (* (/ x (+ y x)) (pow y -1.0))))))))
assert(x < y);
double code(double x, double y) {
	double t_0 = (1.0 * x) / (((y + x) + 1.0) * (y + x));
	double t_1 = 1.0 + (y + x);
	double tmp;
	if (y <= 2.3e-190) {
		tmp = 1.0 * ((y / t_1) / (y + x));
	} else if (y <= 1.5e-176) {
		tmp = t_0;
	} else if (y <= 102000000.0) {
		tmp = (x * y) / ((y + x) * (t_1 * (y + x)));
	} else if (y <= 1e+140) {
		tmp = t_0;
	} else {
		tmp = (x / (y + x)) * pow(y, -1.0);
	}
	return tmp;
}
NOTE: x and y should be sorted in increasing order before calling this function.
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    real(8) :: t_0
    real(8) :: t_1
    real(8) :: tmp
    t_0 = (1.0d0 * x) / (((y + x) + 1.0d0) * (y + x))
    t_1 = 1.0d0 + (y + x)
    if (y <= 2.3d-190) then
        tmp = 1.0d0 * ((y / t_1) / (y + x))
    else if (y <= 1.5d-176) then
        tmp = t_0
    else if (y <= 102000000.0d0) then
        tmp = (x * y) / ((y + x) * (t_1 * (y + x)))
    else if (y <= 1d+140) then
        tmp = t_0
    else
        tmp = (x / (y + x)) * (y ** (-1.0d0))
    end if
    code = tmp
end function
assert x < y;
public static double code(double x, double y) {
	double t_0 = (1.0 * x) / (((y + x) + 1.0) * (y + x));
	double t_1 = 1.0 + (y + x);
	double tmp;
	if (y <= 2.3e-190) {
		tmp = 1.0 * ((y / t_1) / (y + x));
	} else if (y <= 1.5e-176) {
		tmp = t_0;
	} else if (y <= 102000000.0) {
		tmp = (x * y) / ((y + x) * (t_1 * (y + x)));
	} else if (y <= 1e+140) {
		tmp = t_0;
	} else {
		tmp = (x / (y + x)) * Math.pow(y, -1.0);
	}
	return tmp;
}
[x, y] = sort([x, y])
def code(x, y):
	t_0 = (1.0 * x) / (((y + x) + 1.0) * (y + x))
	t_1 = 1.0 + (y + x)
	tmp = 0
	if y <= 2.3e-190:
		tmp = 1.0 * ((y / t_1) / (y + x))
	elif y <= 1.5e-176:
		tmp = t_0
	elif y <= 102000000.0:
		tmp = (x * y) / ((y + x) * (t_1 * (y + x)))
	elif y <= 1e+140:
		tmp = t_0
	else:
		tmp = (x / (y + x)) * math.pow(y, -1.0)
	return tmp
x, y = sort([x, y])
function code(x, y)
	t_0 = Float64(Float64(1.0 * x) / Float64(Float64(Float64(y + x) + 1.0) * Float64(y + x)))
	t_1 = Float64(1.0 + Float64(y + x))
	tmp = 0.0
	if (y <= 2.3e-190)
		tmp = Float64(1.0 * Float64(Float64(y / t_1) / Float64(y + x)));
	elseif (y <= 1.5e-176)
		tmp = t_0;
	elseif (y <= 102000000.0)
		tmp = Float64(Float64(x * y) / Float64(Float64(y + x) * Float64(t_1 * Float64(y + x))));
	elseif (y <= 1e+140)
		tmp = t_0;
	else
		tmp = Float64(Float64(x / Float64(y + x)) * (y ^ -1.0));
	end
	return tmp
end
x, y = num2cell(sort([x, y])){:}
function tmp_2 = code(x, y)
	t_0 = (1.0 * x) / (((y + x) + 1.0) * (y + x));
	t_1 = 1.0 + (y + x);
	tmp = 0.0;
	if (y <= 2.3e-190)
		tmp = 1.0 * ((y / t_1) / (y + x));
	elseif (y <= 1.5e-176)
		tmp = t_0;
	elseif (y <= 102000000.0)
		tmp = (x * y) / ((y + x) * (t_1 * (y + x)));
	elseif (y <= 1e+140)
		tmp = t_0;
	else
		tmp = (x / (y + x)) * (y ^ -1.0);
	end
	tmp_2 = tmp;
end
NOTE: x and y should be sorted in increasing order before calling this function.
code[x_, y_] := Block[{t$95$0 = N[(N[(1.0 * x), $MachinePrecision] / N[(N[(N[(y + x), $MachinePrecision] + 1.0), $MachinePrecision] * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(1.0 + N[(y + x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, 2.3e-190], N[(1.0 * N[(N[(y / t$95$1), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1.5e-176], t$95$0, If[LessEqual[y, 102000000.0], N[(N[(x * y), $MachinePrecision] / N[(N[(y + x), $MachinePrecision] * N[(t$95$1 * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1e+140], t$95$0, N[(N[(x / N[(y + x), $MachinePrecision]), $MachinePrecision] * N[Power[y, -1.0], $MachinePrecision]), $MachinePrecision]]]]]]]
\begin{array}{l}
[x, y] = \mathsf{sort}([x, y])\\
\\
\begin{array}{l}
t_0 := \frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\
t_1 := 1 + \left(y + x\right)\\
\mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\
\;\;\;\;1 \cdot \frac{\frac{y}{t\_1}}{y + x}\\

\mathbf{elif}\;y \leq 1.5 \cdot 10^{-176}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;y \leq 102000000:\\
\;\;\;\;\frac{x \cdot y}{\left(y + x\right) \cdot \left(t\_1 \cdot \left(y + x\right)\right)}\\

\mathbf{elif}\;y \leq 10^{+140}:\\
\;\;\;\;t\_0\\

\mathbf{else}:\\
\;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\


\end{array}
\end{array}
Derivation
  1. Split input into 4 regimes
  2. if y < 2.29999999999999992e-190

    1. Initial program 62.9%

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

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

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

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

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

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

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

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

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

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

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

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

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

        \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
      14. lower-/.f6499.8

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

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

        \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
      17. lower-+.f6499.8

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

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

        \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
      20. lower-+.f6499.8

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

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

        \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
      23. lower-+.f6499.8

        \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
    4. Applied rewrites99.8%

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

      \[\leadsto \color{blue}{1} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x} \]
    6. Step-by-step derivation
      1. Applied rewrites57.9%

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

      if 2.29999999999999992e-190 < y < 1.5e-176 or 1.02e8 < y < 1.00000000000000006e140

      1. Initial program 69.4%

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

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

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

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

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

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

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

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

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

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

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

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

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

          \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
        14. lower-/.f6499.5

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

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

          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
        17. lower-+.f6499.5

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

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

          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
        20. lower-+.f6499.5

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

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

          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
        23. lower-+.f6499.5

          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
      4. Applied rewrites99.5%

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

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

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

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

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

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

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

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

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

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

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

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

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

          \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
        14. lower-/.f6499.6

          \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
      6. Applied rewrites99.6%

        \[\leadsto \color{blue}{\frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x}} \]
      7. Step-by-step derivation
        1. lift-*.f64N/A

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

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

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

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

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

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

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

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

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

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

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

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

          \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
        14. lower-*.f6494.5

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

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

          \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
        17. lower-+.f6494.5

          \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
      8. Applied rewrites94.5%

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

        \[\leadsto \frac{\color{blue}{1} \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)} \]
      10. Step-by-step derivation
        1. Applied rewrites89.0%

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

        if 1.5e-176 < y < 1.02e8

        1. Initial program 97.0%

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

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

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

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

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

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

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

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

            \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \color{blue}{\left(\left(\left(x + y\right) + 1\right) \cdot \left(x + y\right)\right)}} \]
          9. lower-*.f6497.0

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

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

            \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \left(\color{blue}{\left(1 + \left(x + y\right)\right)} \cdot \left(x + y\right)\right)} \]
          12. lower-+.f6497.0

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

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

            \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \left(\left(1 + \color{blue}{\left(y + x\right)}\right) \cdot \left(x + y\right)\right)} \]
          15. lower-+.f6497.0

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

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

            \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \left(\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}\right)} \]
          18. lower-+.f6497.0

            \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \left(\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}\right)} \]
        4. Applied rewrites97.0%

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

        if 1.00000000000000006e140 < y

        1. Initial program 57.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

            \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
          14. lower-/.f6499.9

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

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

            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
          17. lower-+.f6499.9

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

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

            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
          20. lower-+.f6499.9

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

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

            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
          23. lower-+.f6499.9

            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
        4. Applied rewrites99.9%

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

          \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
        6. Step-by-step derivation
          1. lower-/.f6491.4

            \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
        7. Applied rewrites91.4%

          \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
      11. Recombined 4 regimes into one program.
      12. Final simplification72.3%

        \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;1 \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}\\ \mathbf{elif}\;y \leq 1.5 \cdot 10^{-176}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{elif}\;y \leq 102000000:\\ \;\;\;\;\frac{x \cdot y}{\left(y + x\right) \cdot \left(\left(1 + \left(y + x\right)\right) \cdot \left(y + x\right)\right)}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \]
      13. Add Preprocessing

      Alternative 3: 89.2% accurate, 0.3× speedup?

      \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} t_0 := \frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;1 \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}\\ \mathbf{elif}\;y \leq 1.5 \cdot 10^{-176}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;y \leq 102000000:\\ \;\;\;\;\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;t\_0\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \end{array} \]
      NOTE: x and y should be sorted in increasing order before calling this function.
      (FPCore (x y)
       :precision binary64
       (let* ((t_0 (/ (* 1.0 x) (* (+ (+ y x) 1.0) (+ y x)))))
         (if (<= y 2.3e-190)
           (* 1.0 (/ (/ y (+ 1.0 (+ y x))) (+ y x)))
           (if (<= y 1.5e-176)
             t_0
             (if (<= y 102000000.0)
               (/ (* x y) (* (* (+ x y) (+ x y)) (+ (+ x y) 1.0)))
               (if (<= y 1e+140) t_0 (* (/ x (+ y x)) (pow y -1.0))))))))
      assert(x < y);
      double code(double x, double y) {
      	double t_0 = (1.0 * x) / (((y + x) + 1.0) * (y + x));
      	double tmp;
      	if (y <= 2.3e-190) {
      		tmp = 1.0 * ((y / (1.0 + (y + x))) / (y + x));
      	} else if (y <= 1.5e-176) {
      		tmp = t_0;
      	} else if (y <= 102000000.0) {
      		tmp = (x * y) / (((x + y) * (x + y)) * ((x + y) + 1.0));
      	} else if (y <= 1e+140) {
      		tmp = t_0;
      	} else {
      		tmp = (x / (y + x)) * pow(y, -1.0);
      	}
      	return tmp;
      }
      
      NOTE: x and y should be sorted in increasing order before calling this function.
      real(8) function code(x, y)
          real(8), intent (in) :: x
          real(8), intent (in) :: y
          real(8) :: t_0
          real(8) :: tmp
          t_0 = (1.0d0 * x) / (((y + x) + 1.0d0) * (y + x))
          if (y <= 2.3d-190) then
              tmp = 1.0d0 * ((y / (1.0d0 + (y + x))) / (y + x))
          else if (y <= 1.5d-176) then
              tmp = t_0
          else if (y <= 102000000.0d0) then
              tmp = (x * y) / (((x + y) * (x + y)) * ((x + y) + 1.0d0))
          else if (y <= 1d+140) then
              tmp = t_0
          else
              tmp = (x / (y + x)) * (y ** (-1.0d0))
          end if
          code = tmp
      end function
      
      assert x < y;
      public static double code(double x, double y) {
      	double t_0 = (1.0 * x) / (((y + x) + 1.0) * (y + x));
      	double tmp;
      	if (y <= 2.3e-190) {
      		tmp = 1.0 * ((y / (1.0 + (y + x))) / (y + x));
      	} else if (y <= 1.5e-176) {
      		tmp = t_0;
      	} else if (y <= 102000000.0) {
      		tmp = (x * y) / (((x + y) * (x + y)) * ((x + y) + 1.0));
      	} else if (y <= 1e+140) {
      		tmp = t_0;
      	} else {
      		tmp = (x / (y + x)) * Math.pow(y, -1.0);
      	}
      	return tmp;
      }
      
      [x, y] = sort([x, y])
      def code(x, y):
      	t_0 = (1.0 * x) / (((y + x) + 1.0) * (y + x))
      	tmp = 0
      	if y <= 2.3e-190:
      		tmp = 1.0 * ((y / (1.0 + (y + x))) / (y + x))
      	elif y <= 1.5e-176:
      		tmp = t_0
      	elif y <= 102000000.0:
      		tmp = (x * y) / (((x + y) * (x + y)) * ((x + y) + 1.0))
      	elif y <= 1e+140:
      		tmp = t_0
      	else:
      		tmp = (x / (y + x)) * math.pow(y, -1.0)
      	return tmp
      
      x, y = sort([x, y])
      function code(x, y)
      	t_0 = Float64(Float64(1.0 * x) / Float64(Float64(Float64(y + x) + 1.0) * Float64(y + x)))
      	tmp = 0.0
      	if (y <= 2.3e-190)
      		tmp = Float64(1.0 * Float64(Float64(y / Float64(1.0 + Float64(y + x))) / Float64(y + x)));
      	elseif (y <= 1.5e-176)
      		tmp = t_0;
      	elseif (y <= 102000000.0)
      		tmp = Float64(Float64(x * y) / Float64(Float64(Float64(x + y) * Float64(x + y)) * Float64(Float64(x + y) + 1.0)));
      	elseif (y <= 1e+140)
      		tmp = t_0;
      	else
      		tmp = Float64(Float64(x / Float64(y + x)) * (y ^ -1.0));
      	end
      	return tmp
      end
      
      x, y = num2cell(sort([x, y])){:}
      function tmp_2 = code(x, y)
      	t_0 = (1.0 * x) / (((y + x) + 1.0) * (y + x));
      	tmp = 0.0;
      	if (y <= 2.3e-190)
      		tmp = 1.0 * ((y / (1.0 + (y + x))) / (y + x));
      	elseif (y <= 1.5e-176)
      		tmp = t_0;
      	elseif (y <= 102000000.0)
      		tmp = (x * y) / (((x + y) * (x + y)) * ((x + y) + 1.0));
      	elseif (y <= 1e+140)
      		tmp = t_0;
      	else
      		tmp = (x / (y + x)) * (y ^ -1.0);
      	end
      	tmp_2 = tmp;
      end
      
      NOTE: x and y should be sorted in increasing order before calling this function.
      code[x_, y_] := Block[{t$95$0 = N[(N[(1.0 * x), $MachinePrecision] / N[(N[(N[(y + x), $MachinePrecision] + 1.0), $MachinePrecision] * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, 2.3e-190], N[(1.0 * N[(N[(y / N[(1.0 + N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1.5e-176], t$95$0, If[LessEqual[y, 102000000.0], N[(N[(x * y), $MachinePrecision] / N[(N[(N[(x + y), $MachinePrecision] * N[(x + y), $MachinePrecision]), $MachinePrecision] * N[(N[(x + y), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1e+140], t$95$0, N[(N[(x / N[(y + x), $MachinePrecision]), $MachinePrecision] * N[Power[y, -1.0], $MachinePrecision]), $MachinePrecision]]]]]]
      
      \begin{array}{l}
      [x, y] = \mathsf{sort}([x, y])\\
      \\
      \begin{array}{l}
      t_0 := \frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\
      \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\
      \;\;\;\;1 \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}\\
      
      \mathbf{elif}\;y \leq 1.5 \cdot 10^{-176}:\\
      \;\;\;\;t\_0\\
      
      \mathbf{elif}\;y \leq 102000000:\\
      \;\;\;\;\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}\\
      
      \mathbf{elif}\;y \leq 10^{+140}:\\
      \;\;\;\;t\_0\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 4 regimes
      2. if y < 2.29999999999999992e-190

        1. Initial program 62.9%

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

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

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

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

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

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

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

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

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

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

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

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

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

            \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
          14. lower-/.f6499.8

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

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

            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
          17. lower-+.f6499.8

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

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

            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
          20. lower-+.f6499.8

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

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

            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
          23. lower-+.f6499.8

            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
        4. Applied rewrites99.8%

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

          \[\leadsto \color{blue}{1} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x} \]
        6. Step-by-step derivation
          1. Applied rewrites57.9%

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

          if 2.29999999999999992e-190 < y < 1.5e-176 or 1.02e8 < y < 1.00000000000000006e140

          1. Initial program 69.4%

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

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

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

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

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

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

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

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

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

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

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

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

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

              \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
            14. lower-/.f6499.5

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

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

              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
            17. lower-+.f6499.5

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

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

              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
            20. lower-+.f6499.5

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

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

              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
            23. lower-+.f6499.5

              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
          4. Applied rewrites99.5%

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

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

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

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

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

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

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

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

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

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

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

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

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

              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
            14. lower-/.f6499.6

              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
          6. Applied rewrites99.6%

            \[\leadsto \color{blue}{\frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x}} \]
          7. Step-by-step derivation
            1. lift-*.f64N/A

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

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

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

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

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

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

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

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

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

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

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

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

              \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
            14. lower-*.f6494.5

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

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

              \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
            17. lower-+.f6494.5

              \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
          8. Applied rewrites94.5%

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

            \[\leadsto \frac{\color{blue}{1} \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)} \]
          10. Step-by-step derivation
            1. Applied rewrites89.0%

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

            if 1.5e-176 < y < 1.02e8

            1. Initial program 97.0%

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

            if 1.00000000000000006e140 < y

            1. Initial program 57.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
              14. lower-/.f6499.9

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

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

                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
              17. lower-+.f6499.9

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

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

                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
              20. lower-+.f6499.9

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

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

                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
              23. lower-+.f6499.9

                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
            4. Applied rewrites99.9%

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

              \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
            6. Step-by-step derivation
              1. lower-/.f6491.4

                \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
            7. Applied rewrites91.4%

              \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
          11. Recombined 4 regimes into one program.
          12. Final simplification72.3%

            \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;1 \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}\\ \mathbf{elif}\;y \leq 1.5 \cdot 10^{-176}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{elif}\;y \leq 102000000:\\ \;\;\;\;\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \]
          13. Add Preprocessing

          Alternative 4: 87.5% accurate, 0.3× speedup?

          \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;y \leq -3.1 \cdot 10^{+27}:\\ \;\;\;\;1 \cdot \frac{\frac{y}{y + x}}{y + x}\\ \mathbf{elif}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \end{array} \]
          NOTE: x and y should be sorted in increasing order before calling this function.
          (FPCore (x y)
           :precision binary64
           (if (<= y -3.1e+27)
             (* 1.0 (/ (/ y (+ y x)) (+ y x)))
             (if (<= y 2.3e-190)
               (/ y (fma x x x))
               (if (<= y 1e+140)
                 (/ (* 1.0 x) (* (+ (+ y x) 1.0) (+ y x)))
                 (* (/ x (+ y x)) (pow y -1.0))))))
          assert(x < y);
          double code(double x, double y) {
          	double tmp;
          	if (y <= -3.1e+27) {
          		tmp = 1.0 * ((y / (y + x)) / (y + x));
          	} else if (y <= 2.3e-190) {
          		tmp = y / fma(x, x, x);
          	} else if (y <= 1e+140) {
          		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x));
          	} else {
          		tmp = (x / (y + x)) * pow(y, -1.0);
          	}
          	return tmp;
          }
          
          x, y = sort([x, y])
          function code(x, y)
          	tmp = 0.0
          	if (y <= -3.1e+27)
          		tmp = Float64(1.0 * Float64(Float64(y / Float64(y + x)) / Float64(y + x)));
          	elseif (y <= 2.3e-190)
          		tmp = Float64(y / fma(x, x, x));
          	elseif (y <= 1e+140)
          		tmp = Float64(Float64(1.0 * x) / Float64(Float64(Float64(y + x) + 1.0) * Float64(y + x)));
          	else
          		tmp = Float64(Float64(x / Float64(y + x)) * (y ^ -1.0));
          	end
          	return tmp
          end
          
          NOTE: x and y should be sorted in increasing order before calling this function.
          code[x_, y_] := If[LessEqual[y, -3.1e+27], N[(1.0 * N[(N[(y / N[(y + x), $MachinePrecision]), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 2.3e-190], N[(y / N[(x * x + x), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1e+140], N[(N[(1.0 * x), $MachinePrecision] / N[(N[(N[(y + x), $MachinePrecision] + 1.0), $MachinePrecision] * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x / N[(y + x), $MachinePrecision]), $MachinePrecision] * N[Power[y, -1.0], $MachinePrecision]), $MachinePrecision]]]]
          
          \begin{array}{l}
          [x, y] = \mathsf{sort}([x, y])\\
          \\
          \begin{array}{l}
          \mathbf{if}\;y \leq -3.1 \cdot 10^{+27}:\\
          \;\;\;\;1 \cdot \frac{\frac{y}{y + x}}{y + x}\\
          
          \mathbf{elif}\;y \leq 2.3 \cdot 10^{-190}:\\
          \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\
          
          \mathbf{elif}\;y \leq 10^{+140}:\\
          \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\
          
          \mathbf{else}:\\
          \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\
          
          
          \end{array}
          \end{array}
          
          Derivation
          1. Split input into 4 regimes
          2. if y < -3.09999999999999996e27

            1. Initial program 46.3%

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

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

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

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

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

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

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

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

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

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

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

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

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

                \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
              14. lower-/.f6499.7

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

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

                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
              17. lower-+.f6499.7

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

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

                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
              20. lower-+.f6499.7

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

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

                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
              23. lower-+.f6499.7

                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
            4. Applied rewrites99.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
              14. lower-/.f6499.7

                \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
            6. Applied rewrites99.7%

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

              \[\leadsto \color{blue}{1} \cdot \frac{\frac{y}{y + x}}{y + x} \]
            8. Step-by-step derivation
              1. Applied rewrites29.0%

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

              if -3.09999999999999996e27 < y < 2.29999999999999992e-190

              1. Initial program 73.9%

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

                \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
              4. Step-by-step derivation
                1. lower-/.f64N/A

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

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

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

                  \[\leadsto \frac{y}{x \cdot x + \color{blue}{x}} \]
                5. lower-fma.f6477.1

                  \[\leadsto \frac{y}{\color{blue}{\mathsf{fma}\left(x, x, x\right)}} \]
              5. Applied rewrites77.1%

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

              if 2.29999999999999992e-190 < y < 1.00000000000000006e140

              1. Initial program 83.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                  \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                14. lower-/.f6499.7

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

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

                  \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                17. lower-+.f6499.7

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

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

                  \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                20. lower-+.f6499.7

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

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

                  \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                23. lower-+.f6499.7

                  \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
              4. Applied rewrites99.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                  \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                14. lower-/.f6499.7

                  \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
              6. Applied rewrites99.7%

                \[\leadsto \color{blue}{\frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x}} \]
              7. Step-by-step derivation
                1. lift-*.f64N/A

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

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

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

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

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

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

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

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

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

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

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

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

                  \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
                14. lower-*.f6497.2

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

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

                  \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                17. lower-+.f6497.2

                  \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
              8. Applied rewrites97.2%

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

                \[\leadsto \frac{\color{blue}{1} \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)} \]
              10. Step-by-step derivation
                1. Applied rewrites69.0%

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

                if 1.00000000000000006e140 < y

                1. Initial program 57.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                    \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                  14. lower-/.f6499.9

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

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

                    \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                  17. lower-+.f6499.9

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

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

                    \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                  20. lower-+.f6499.9

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

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

                    \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                  23. lower-+.f6499.9

                    \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                4. Applied rewrites99.9%

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

                  \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
                6. Step-by-step derivation
                  1. lower-/.f6491.4

                    \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
                7. Applied rewrites91.4%

                  \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
              11. Recombined 4 regimes into one program.
              12. Final simplification65.3%

                \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -3.1 \cdot 10^{+27}:\\ \;\;\;\;1 \cdot \frac{\frac{y}{y + x}}{y + x}\\ \mathbf{elif}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \]
              13. Add Preprocessing

              Alternative 5: 87.5% accurate, 0.3× speedup?

              \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\ \;\;\;\;\frac{\frac{y}{x}}{x}\\ \mathbf{elif}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \end{array} \]
              NOTE: x and y should be sorted in increasing order before calling this function.
              (FPCore (x y)
               :precision binary64
               (if (<= y -3.2e+27)
                 (/ (/ y x) x)
                 (if (<= y 2.3e-190)
                   (/ y (fma x x x))
                   (if (<= y 1e+140)
                     (/ (* 1.0 x) (* (+ (+ y x) 1.0) (+ y x)))
                     (* (/ x (+ y x)) (pow y -1.0))))))
              assert(x < y);
              double code(double x, double y) {
              	double tmp;
              	if (y <= -3.2e+27) {
              		tmp = (y / x) / x;
              	} else if (y <= 2.3e-190) {
              		tmp = y / fma(x, x, x);
              	} else if (y <= 1e+140) {
              		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x));
              	} else {
              		tmp = (x / (y + x)) * pow(y, -1.0);
              	}
              	return tmp;
              }
              
              x, y = sort([x, y])
              function code(x, y)
              	tmp = 0.0
              	if (y <= -3.2e+27)
              		tmp = Float64(Float64(y / x) / x);
              	elseif (y <= 2.3e-190)
              		tmp = Float64(y / fma(x, x, x));
              	elseif (y <= 1e+140)
              		tmp = Float64(Float64(1.0 * x) / Float64(Float64(Float64(y + x) + 1.0) * Float64(y + x)));
              	else
              		tmp = Float64(Float64(x / Float64(y + x)) * (y ^ -1.0));
              	end
              	return tmp
              end
              
              NOTE: x and y should be sorted in increasing order before calling this function.
              code[x_, y_] := If[LessEqual[y, -3.2e+27], N[(N[(y / x), $MachinePrecision] / x), $MachinePrecision], If[LessEqual[y, 2.3e-190], N[(y / N[(x * x + x), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1e+140], N[(N[(1.0 * x), $MachinePrecision] / N[(N[(N[(y + x), $MachinePrecision] + 1.0), $MachinePrecision] * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x / N[(y + x), $MachinePrecision]), $MachinePrecision] * N[Power[y, -1.0], $MachinePrecision]), $MachinePrecision]]]]
              
              \begin{array}{l}
              [x, y] = \mathsf{sort}([x, y])\\
              \\
              \begin{array}{l}
              \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\
              \;\;\;\;\frac{\frac{y}{x}}{x}\\
              
              \mathbf{elif}\;y \leq 2.3 \cdot 10^{-190}:\\
              \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\
              
              \mathbf{elif}\;y \leq 10^{+140}:\\
              \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\
              
              \mathbf{else}:\\
              \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 4 regimes
              2. if y < -3.20000000000000015e27

                1. Initial program 46.3%

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

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

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

                    \[\leadsto \color{blue}{\frac{\frac{y}{x}}{x}} \]
                  3. lower-/.f64N/A

                    \[\leadsto \color{blue}{\frac{\frac{y}{x}}{x}} \]
                  4. lower-/.f6425.6

                    \[\leadsto \frac{\color{blue}{\frac{y}{x}}}{x} \]
                5. Applied rewrites25.6%

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

                if -3.20000000000000015e27 < y < 2.29999999999999992e-190

                1. Initial program 73.9%

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

                  \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
                4. Step-by-step derivation
                  1. lower-/.f64N/A

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

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

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

                    \[\leadsto \frac{y}{x \cdot x + \color{blue}{x}} \]
                  5. lower-fma.f6477.1

                    \[\leadsto \frac{y}{\color{blue}{\mathsf{fma}\left(x, x, x\right)}} \]
                5. Applied rewrites77.1%

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

                if 2.29999999999999992e-190 < y < 1.00000000000000006e140

                1. Initial program 83.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                    \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                  14. lower-/.f6499.7

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

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

                    \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                  17. lower-+.f6499.7

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

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

                    \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                  20. lower-+.f6499.7

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

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

                    \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                  23. lower-+.f6499.7

                    \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                4. Applied rewrites99.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                    \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                  14. lower-/.f6499.7

                    \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
                6. Applied rewrites99.7%

                  \[\leadsto \color{blue}{\frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x}} \]
                7. Step-by-step derivation
                  1. lift-*.f64N/A

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

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

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

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

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

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

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

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

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

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

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

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

                    \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
                  14. lower-*.f6497.2

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

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

                    \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                  17. lower-+.f6497.2

                    \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                8. Applied rewrites97.2%

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

                  \[\leadsto \frac{\color{blue}{1} \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)} \]
                10. Step-by-step derivation
                  1. Applied rewrites69.0%

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

                  if 1.00000000000000006e140 < y

                  1. Initial program 57.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                      \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                    14. lower-/.f6499.9

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

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

                      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                    17. lower-+.f6499.9

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

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

                      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                    20. lower-+.f6499.9

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

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

                      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                    23. lower-+.f6499.9

                      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                  4. Applied rewrites99.9%

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

                    \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
                  6. Step-by-step derivation
                    1. lower-/.f6491.4

                      \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
                  7. Applied rewrites91.4%

                    \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
                11. Recombined 4 regimes into one program.
                12. Final simplification64.5%

                  \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\ \;\;\;\;\frac{\frac{y}{x}}{x}\\ \mathbf{elif}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \]
                13. Add Preprocessing

                Alternative 6: 87.5% accurate, 0.3× speedup?

                \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;1 \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}\\ \mathbf{elif}\;y \leq 10^{+140}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\ \end{array} \end{array} \]
                NOTE: x and y should be sorted in increasing order before calling this function.
                (FPCore (x y)
                 :precision binary64
                 (if (<= y 2.3e-190)
                   (* 1.0 (/ (/ y (+ 1.0 (+ y x))) (+ y x)))
                   (if (<= y 1e+140)
                     (/ (* 1.0 x) (* (+ (+ y x) 1.0) (+ y x)))
                     (* (/ x (+ y x)) (pow y -1.0)))))
                assert(x < y);
                double code(double x, double y) {
                	double tmp;
                	if (y <= 2.3e-190) {
                		tmp = 1.0 * ((y / (1.0 + (y + x))) / (y + x));
                	} else if (y <= 1e+140) {
                		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x));
                	} else {
                		tmp = (x / (y + x)) * pow(y, -1.0);
                	}
                	return tmp;
                }
                
                NOTE: x and y should be sorted in increasing order before calling this function.
                real(8) function code(x, y)
                    real(8), intent (in) :: x
                    real(8), intent (in) :: y
                    real(8) :: tmp
                    if (y <= 2.3d-190) then
                        tmp = 1.0d0 * ((y / (1.0d0 + (y + x))) / (y + x))
                    else if (y <= 1d+140) then
                        tmp = (1.0d0 * x) / (((y + x) + 1.0d0) * (y + x))
                    else
                        tmp = (x / (y + x)) * (y ** (-1.0d0))
                    end if
                    code = tmp
                end function
                
                assert x < y;
                public static double code(double x, double y) {
                	double tmp;
                	if (y <= 2.3e-190) {
                		tmp = 1.0 * ((y / (1.0 + (y + x))) / (y + x));
                	} else if (y <= 1e+140) {
                		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x));
                	} else {
                		tmp = (x / (y + x)) * Math.pow(y, -1.0);
                	}
                	return tmp;
                }
                
                [x, y] = sort([x, y])
                def code(x, y):
                	tmp = 0
                	if y <= 2.3e-190:
                		tmp = 1.0 * ((y / (1.0 + (y + x))) / (y + x))
                	elif y <= 1e+140:
                		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x))
                	else:
                		tmp = (x / (y + x)) * math.pow(y, -1.0)
                	return tmp
                
                x, y = sort([x, y])
                function code(x, y)
                	tmp = 0.0
                	if (y <= 2.3e-190)
                		tmp = Float64(1.0 * Float64(Float64(y / Float64(1.0 + Float64(y + x))) / Float64(y + x)));
                	elseif (y <= 1e+140)
                		tmp = Float64(Float64(1.0 * x) / Float64(Float64(Float64(y + x) + 1.0) * Float64(y + x)));
                	else
                		tmp = Float64(Float64(x / Float64(y + x)) * (y ^ -1.0));
                	end
                	return tmp
                end
                
                x, y = num2cell(sort([x, y])){:}
                function tmp_2 = code(x, y)
                	tmp = 0.0;
                	if (y <= 2.3e-190)
                		tmp = 1.0 * ((y / (1.0 + (y + x))) / (y + x));
                	elseif (y <= 1e+140)
                		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x));
                	else
                		tmp = (x / (y + x)) * (y ^ -1.0);
                	end
                	tmp_2 = tmp;
                end
                
                NOTE: x and y should be sorted in increasing order before calling this function.
                code[x_, y_] := If[LessEqual[y, 2.3e-190], N[(1.0 * N[(N[(y / N[(1.0 + N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1e+140], N[(N[(1.0 * x), $MachinePrecision] / N[(N[(N[(y + x), $MachinePrecision] + 1.0), $MachinePrecision] * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x / N[(y + x), $MachinePrecision]), $MachinePrecision] * N[Power[y, -1.0], $MachinePrecision]), $MachinePrecision]]]
                
                \begin{array}{l}
                [x, y] = \mathsf{sort}([x, y])\\
                \\
                \begin{array}{l}
                \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\
                \;\;\;\;1 \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}\\
                
                \mathbf{elif}\;y \leq 10^{+140}:\\
                \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\
                
                \mathbf{else}:\\
                \;\;\;\;\frac{x}{y + x} \cdot {y}^{-1}\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 3 regimes
                2. if y < 2.29999999999999992e-190

                  1. Initial program 62.9%

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

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

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

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

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

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

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

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

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

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

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

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

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

                      \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                    14. lower-/.f6499.8

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

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

                      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                    17. lower-+.f6499.8

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

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

                      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                    20. lower-+.f6499.8

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

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

                      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                    23. lower-+.f6499.8

                      \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                  4. Applied rewrites99.8%

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

                    \[\leadsto \color{blue}{1} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x} \]
                  6. Step-by-step derivation
                    1. Applied rewrites57.9%

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

                    if 2.29999999999999992e-190 < y < 1.00000000000000006e140

                    1. Initial program 83.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                        \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                      14. lower-/.f6499.7

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

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

                        \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                      17. lower-+.f6499.7

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

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

                        \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                      20. lower-+.f6499.7

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

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

                        \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                      23. lower-+.f6499.7

                        \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                    4. Applied rewrites99.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                        \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                      14. lower-/.f6499.7

                        \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
                    6. Applied rewrites99.7%

                      \[\leadsto \color{blue}{\frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x}} \]
                    7. Step-by-step derivation
                      1. lift-*.f64N/A

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

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

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

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

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

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

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

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

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

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

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

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

                        \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
                      14. lower-*.f6497.2

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

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

                        \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                      17. lower-+.f6497.2

                        \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                    8. Applied rewrites97.2%

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

                      \[\leadsto \frac{\color{blue}{1} \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)} \]
                    10. Step-by-step derivation
                      1. Applied rewrites69.0%

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

                      if 1.00000000000000006e140 < y

                      1. Initial program 57.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                          \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                        14. lower-/.f6499.9

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

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

                          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                        17. lower-+.f6499.9

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

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

                          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                        20. lower-+.f6499.9

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

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

                          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                        23. lower-+.f6499.9

                          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                      4. Applied rewrites99.9%

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

                        \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
                      6. Step-by-step derivation
                        1. lower-/.f6491.4

                          \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
                      7. Applied rewrites91.4%

                        \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{1}{y}} \]
                    11. Recombined 3 regimes into one program.
                    12. Final simplification65.4%

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

                    Alternative 7: 89.9% accurate, 0.6× speedup?

                    \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} t_0 := 1 + \left(y + x\right)\\ \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;1 \cdot \frac{\frac{y}{t\_0}}{y + x}\\ \mathbf{elif}\;y \leq 1.5 \cdot 10^{-176}:\\ \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{elif}\;y \leq 5.2 \cdot 10^{+14}:\\ \;\;\;\;\frac{x \cdot y}{\left(y + x\right) \cdot \left(t\_0 \cdot \left(y + x\right)\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y} \cdot \frac{\frac{y}{y + x}}{y + x}\\ \end{array} \end{array} \]
                    NOTE: x and y should be sorted in increasing order before calling this function.
                    (FPCore (x y)
                     :precision binary64
                     (let* ((t_0 (+ 1.0 (+ y x))))
                       (if (<= y 2.3e-190)
                         (* 1.0 (/ (/ y t_0) (+ y x)))
                         (if (<= y 1.5e-176)
                           (/ (* 1.0 x) (* (+ (+ y x) 1.0) (+ y x)))
                           (if (<= y 5.2e+14)
                             (/ (* x y) (* (+ y x) (* t_0 (+ y x))))
                             (* (/ x y) (/ (/ y (+ y x)) (+ y x))))))))
                    assert(x < y);
                    double code(double x, double y) {
                    	double t_0 = 1.0 + (y + x);
                    	double tmp;
                    	if (y <= 2.3e-190) {
                    		tmp = 1.0 * ((y / t_0) / (y + x));
                    	} else if (y <= 1.5e-176) {
                    		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x));
                    	} else if (y <= 5.2e+14) {
                    		tmp = (x * y) / ((y + x) * (t_0 * (y + x)));
                    	} else {
                    		tmp = (x / y) * ((y / (y + x)) / (y + x));
                    	}
                    	return tmp;
                    }
                    
                    NOTE: x and y should be sorted in increasing order before calling this function.
                    real(8) function code(x, y)
                        real(8), intent (in) :: x
                        real(8), intent (in) :: y
                        real(8) :: t_0
                        real(8) :: tmp
                        t_0 = 1.0d0 + (y + x)
                        if (y <= 2.3d-190) then
                            tmp = 1.0d0 * ((y / t_0) / (y + x))
                        else if (y <= 1.5d-176) then
                            tmp = (1.0d0 * x) / (((y + x) + 1.0d0) * (y + x))
                        else if (y <= 5.2d+14) then
                            tmp = (x * y) / ((y + x) * (t_0 * (y + x)))
                        else
                            tmp = (x / y) * ((y / (y + x)) / (y + x))
                        end if
                        code = tmp
                    end function
                    
                    assert x < y;
                    public static double code(double x, double y) {
                    	double t_0 = 1.0 + (y + x);
                    	double tmp;
                    	if (y <= 2.3e-190) {
                    		tmp = 1.0 * ((y / t_0) / (y + x));
                    	} else if (y <= 1.5e-176) {
                    		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x));
                    	} else if (y <= 5.2e+14) {
                    		tmp = (x * y) / ((y + x) * (t_0 * (y + x)));
                    	} else {
                    		tmp = (x / y) * ((y / (y + x)) / (y + x));
                    	}
                    	return tmp;
                    }
                    
                    [x, y] = sort([x, y])
                    def code(x, y):
                    	t_0 = 1.0 + (y + x)
                    	tmp = 0
                    	if y <= 2.3e-190:
                    		tmp = 1.0 * ((y / t_0) / (y + x))
                    	elif y <= 1.5e-176:
                    		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x))
                    	elif y <= 5.2e+14:
                    		tmp = (x * y) / ((y + x) * (t_0 * (y + x)))
                    	else:
                    		tmp = (x / y) * ((y / (y + x)) / (y + x))
                    	return tmp
                    
                    x, y = sort([x, y])
                    function code(x, y)
                    	t_0 = Float64(1.0 + Float64(y + x))
                    	tmp = 0.0
                    	if (y <= 2.3e-190)
                    		tmp = Float64(1.0 * Float64(Float64(y / t_0) / Float64(y + x)));
                    	elseif (y <= 1.5e-176)
                    		tmp = Float64(Float64(1.0 * x) / Float64(Float64(Float64(y + x) + 1.0) * Float64(y + x)));
                    	elseif (y <= 5.2e+14)
                    		tmp = Float64(Float64(x * y) / Float64(Float64(y + x) * Float64(t_0 * Float64(y + x))));
                    	else
                    		tmp = Float64(Float64(x / y) * Float64(Float64(y / Float64(y + x)) / Float64(y + x)));
                    	end
                    	return tmp
                    end
                    
                    x, y = num2cell(sort([x, y])){:}
                    function tmp_2 = code(x, y)
                    	t_0 = 1.0 + (y + x);
                    	tmp = 0.0;
                    	if (y <= 2.3e-190)
                    		tmp = 1.0 * ((y / t_0) / (y + x));
                    	elseif (y <= 1.5e-176)
                    		tmp = (1.0 * x) / (((y + x) + 1.0) * (y + x));
                    	elseif (y <= 5.2e+14)
                    		tmp = (x * y) / ((y + x) * (t_0 * (y + x)));
                    	else
                    		tmp = (x / y) * ((y / (y + x)) / (y + x));
                    	end
                    	tmp_2 = tmp;
                    end
                    
                    NOTE: x and y should be sorted in increasing order before calling this function.
                    code[x_, y_] := Block[{t$95$0 = N[(1.0 + N[(y + x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, 2.3e-190], N[(1.0 * N[(N[(y / t$95$0), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1.5e-176], N[(N[(1.0 * x), $MachinePrecision] / N[(N[(N[(y + x), $MachinePrecision] + 1.0), $MachinePrecision] * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 5.2e+14], N[(N[(x * y), $MachinePrecision] / N[(N[(y + x), $MachinePrecision] * N[(t$95$0 * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x / y), $MachinePrecision] * N[(N[(y / N[(y + x), $MachinePrecision]), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]
                    
                    \begin{array}{l}
                    [x, y] = \mathsf{sort}([x, y])\\
                    \\
                    \begin{array}{l}
                    t_0 := 1 + \left(y + x\right)\\
                    \mathbf{if}\;y \leq 2.3 \cdot 10^{-190}:\\
                    \;\;\;\;1 \cdot \frac{\frac{y}{t\_0}}{y + x}\\
                    
                    \mathbf{elif}\;y \leq 1.5 \cdot 10^{-176}:\\
                    \;\;\;\;\frac{1 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\
                    
                    \mathbf{elif}\;y \leq 5.2 \cdot 10^{+14}:\\
                    \;\;\;\;\frac{x \cdot y}{\left(y + x\right) \cdot \left(t\_0 \cdot \left(y + x\right)\right)}\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;\frac{x}{y} \cdot \frac{\frac{y}{y + x}}{y + x}\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 4 regimes
                    2. if y < 2.29999999999999992e-190

                      1. Initial program 62.9%

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

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

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

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

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

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

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

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

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

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

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

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

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

                          \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                        14. lower-/.f6499.8

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

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

                          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                        17. lower-+.f6499.8

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

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

                          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                        20. lower-+.f6499.8

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

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

                          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                        23. lower-+.f6499.8

                          \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                      4. Applied rewrites99.8%

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

                        \[\leadsto \color{blue}{1} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x} \]
                      6. Step-by-step derivation
                        1. Applied rewrites57.9%

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

                        if 2.29999999999999992e-190 < y < 1.5e-176

                        1. Initial program 24.6%

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

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

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

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

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

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

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

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

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

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

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

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

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

                            \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                          14. lower-/.f6499.6

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

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

                            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                          17. lower-+.f6499.6

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

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

                            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                          20. lower-+.f6499.6

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

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

                            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                          23. lower-+.f6499.6

                            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                        4. Applied rewrites99.6%

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

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

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

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

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

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

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

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

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

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

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

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

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

                            \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                          14. lower-/.f6499.2

                            \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
                        6. Applied rewrites99.2%

                          \[\leadsto \color{blue}{\frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x}} \]
                        7. Step-by-step derivation
                          1. lift-*.f64N/A

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

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

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

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

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

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

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

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

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

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

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

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

                            \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
                          14. lower-*.f6499.2

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

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

                            \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                          17. lower-+.f6499.2

                            \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                        8. Applied rewrites99.2%

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

                          \[\leadsto \frac{\color{blue}{1} \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)} \]
                        10. Step-by-step derivation
                          1. Applied rewrites75.5%

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

                          if 1.5e-176 < y < 5.2e14

                          1. Initial program 97.1%

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \color{blue}{\left(\left(\left(x + y\right) + 1\right) \cdot \left(x + y\right)\right)}} \]
                            9. lower-*.f6497.2

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

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

                              \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \left(\color{blue}{\left(1 + \left(x + y\right)\right)} \cdot \left(x + y\right)\right)} \]
                            12. lower-+.f6497.2

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

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

                              \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \left(\left(1 + \color{blue}{\left(y + x\right)}\right) \cdot \left(x + y\right)\right)} \]
                            15. lower-+.f6497.2

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

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

                              \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \left(\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}\right)} \]
                            18. lower-+.f6497.2

                              \[\leadsto \frac{x \cdot y}{\left(y + x\right) \cdot \left(\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}\right)} \]
                          4. Applied rewrites97.2%

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

                          if 5.2e14 < y

                          1. Initial program 64.6%

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                            14. lower-/.f6499.7

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                            17. lower-+.f6499.7

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                            20. lower-+.f6499.7

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                            23. lower-+.f6499.7

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                          4. Applied rewrites99.7%

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                            14. lower-/.f6499.7

                              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
                          6. Applied rewrites99.7%

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

                            \[\leadsto \color{blue}{\frac{x}{y}} \cdot \frac{\frac{y}{y + x}}{y + x} \]
                          8. Step-by-step derivation
                            1. lower-/.f6492.1

                              \[\leadsto \color{blue}{\frac{x}{y}} \cdot \frac{\frac{y}{y + x}}{y + x} \]
                          9. Applied rewrites92.1%

                            \[\leadsto \color{blue}{\frac{x}{y}} \cdot \frac{\frac{y}{y + x}}{y + x} \]
                        11. Recombined 4 regimes into one program.
                        12. Add Preprocessing

                        Alternative 8: 96.7% accurate, 0.8× speedup?

                        \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} t_0 := \frac{y}{y + x}\\ \mathbf{if}\;y \leq 1.85 \cdot 10^{+126}:\\ \;\;\;\;\frac{t\_0 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y} \cdot \frac{t\_0}{y + x}\\ \end{array} \end{array} \]
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        (FPCore (x y)
                         :precision binary64
                         (let* ((t_0 (/ y (+ y x))))
                           (if (<= y 1.85e+126)
                             (/ (* t_0 x) (* (+ (+ y x) 1.0) (+ y x)))
                             (* (/ x y) (/ t_0 (+ y x))))))
                        assert(x < y);
                        double code(double x, double y) {
                        	double t_0 = y / (y + x);
                        	double tmp;
                        	if (y <= 1.85e+126) {
                        		tmp = (t_0 * x) / (((y + x) + 1.0) * (y + x));
                        	} else {
                        		tmp = (x / y) * (t_0 / (y + x));
                        	}
                        	return tmp;
                        }
                        
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        real(8) function code(x, y)
                            real(8), intent (in) :: x
                            real(8), intent (in) :: y
                            real(8) :: t_0
                            real(8) :: tmp
                            t_0 = y / (y + x)
                            if (y <= 1.85d+126) then
                                tmp = (t_0 * x) / (((y + x) + 1.0d0) * (y + x))
                            else
                                tmp = (x / y) * (t_0 / (y + x))
                            end if
                            code = tmp
                        end function
                        
                        assert x < y;
                        public static double code(double x, double y) {
                        	double t_0 = y / (y + x);
                        	double tmp;
                        	if (y <= 1.85e+126) {
                        		tmp = (t_0 * x) / (((y + x) + 1.0) * (y + x));
                        	} else {
                        		tmp = (x / y) * (t_0 / (y + x));
                        	}
                        	return tmp;
                        }
                        
                        [x, y] = sort([x, y])
                        def code(x, y):
                        	t_0 = y / (y + x)
                        	tmp = 0
                        	if y <= 1.85e+126:
                        		tmp = (t_0 * x) / (((y + x) + 1.0) * (y + x))
                        	else:
                        		tmp = (x / y) * (t_0 / (y + x))
                        	return tmp
                        
                        x, y = sort([x, y])
                        function code(x, y)
                        	t_0 = Float64(y / Float64(y + x))
                        	tmp = 0.0
                        	if (y <= 1.85e+126)
                        		tmp = Float64(Float64(t_0 * x) / Float64(Float64(Float64(y + x) + 1.0) * Float64(y + x)));
                        	else
                        		tmp = Float64(Float64(x / y) * Float64(t_0 / Float64(y + x)));
                        	end
                        	return tmp
                        end
                        
                        x, y = num2cell(sort([x, y])){:}
                        function tmp_2 = code(x, y)
                        	t_0 = y / (y + x);
                        	tmp = 0.0;
                        	if (y <= 1.85e+126)
                        		tmp = (t_0 * x) / (((y + x) + 1.0) * (y + x));
                        	else
                        		tmp = (x / y) * (t_0 / (y + x));
                        	end
                        	tmp_2 = tmp;
                        end
                        
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        code[x_, y_] := Block[{t$95$0 = N[(y / N[(y + x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, 1.85e+126], N[(N[(t$95$0 * x), $MachinePrecision] / N[(N[(N[(y + x), $MachinePrecision] + 1.0), $MachinePrecision] * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x / y), $MachinePrecision] * N[(t$95$0 / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
                        
                        \begin{array}{l}
                        [x, y] = \mathsf{sort}([x, y])\\
                        \\
                        \begin{array}{l}
                        t_0 := \frac{y}{y + x}\\
                        \mathbf{if}\;y \leq 1.85 \cdot 10^{+126}:\\
                        \;\;\;\;\frac{t\_0 \cdot x}{\left(\left(y + x\right) + 1\right) \cdot \left(y + x\right)}\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\frac{x}{y} \cdot \frac{t\_0}{y + x}\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 2 regimes
                        2. if y < 1.8499999999999999e126

                          1. Initial program 69.8%

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                            14. lower-/.f6499.8

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                            17. lower-+.f6499.8

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                            20. lower-+.f6499.8

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                            23. lower-+.f6499.8

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                          4. Applied rewrites99.8%

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                            14. lower-/.f6499.7

                              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
                          6. Applied rewrites99.7%

                            \[\leadsto \color{blue}{\frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x}} \]
                          7. Step-by-step derivation
                            1. lift-*.f64N/A

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
                            14. lower-*.f6495.7

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

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

                              \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                            17. lower-+.f6495.7

                              \[\leadsto \frac{\frac{y}{y + x} \cdot x}{\color{blue}{\left(\left(y + x\right) + 1\right)} \cdot \left(y + x\right)} \]
                          8. Applied rewrites95.7%

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

                          if 1.8499999999999999e126 < y

                          1. Initial program 58.5%

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                            14. lower-/.f6499.9

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                            17. lower-+.f6499.9

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                            20. lower-+.f6499.9

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                            23. lower-+.f6499.9

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                          4. Applied rewrites99.9%

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                            14. lower-/.f6499.9

                              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
                          6. Applied rewrites99.9%

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

                            \[\leadsto \color{blue}{\frac{x}{y}} \cdot \frac{\frac{y}{y + x}}{y + x} \]
                          8. Step-by-step derivation
                            1. lower-/.f6494.9

                              \[\leadsto \color{blue}{\frac{x}{y}} \cdot \frac{\frac{y}{y + x}}{y + x} \]
                          9. Applied rewrites94.9%

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

                        Alternative 9: 96.7% accurate, 0.8× speedup?

                        \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} t_0 := \frac{y}{y + x}\\ \mathbf{if}\;y \leq 1.85 \cdot 10^{+126}:\\ \;\;\;\;t\_0 \cdot \frac{x}{\left(1 + \left(y + x\right)\right) \cdot \left(y + x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y} \cdot \frac{t\_0}{y + x}\\ \end{array} \end{array} \]
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        (FPCore (x y)
                         :precision binary64
                         (let* ((t_0 (/ y (+ y x))))
                           (if (<= y 1.85e+126)
                             (* t_0 (/ x (* (+ 1.0 (+ y x)) (+ y x))))
                             (* (/ x y) (/ t_0 (+ y x))))))
                        assert(x < y);
                        double code(double x, double y) {
                        	double t_0 = y / (y + x);
                        	double tmp;
                        	if (y <= 1.85e+126) {
                        		tmp = t_0 * (x / ((1.0 + (y + x)) * (y + x)));
                        	} else {
                        		tmp = (x / y) * (t_0 / (y + x));
                        	}
                        	return tmp;
                        }
                        
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        real(8) function code(x, y)
                            real(8), intent (in) :: x
                            real(8), intent (in) :: y
                            real(8) :: t_0
                            real(8) :: tmp
                            t_0 = y / (y + x)
                            if (y <= 1.85d+126) then
                                tmp = t_0 * (x / ((1.0d0 + (y + x)) * (y + x)))
                            else
                                tmp = (x / y) * (t_0 / (y + x))
                            end if
                            code = tmp
                        end function
                        
                        assert x < y;
                        public static double code(double x, double y) {
                        	double t_0 = y / (y + x);
                        	double tmp;
                        	if (y <= 1.85e+126) {
                        		tmp = t_0 * (x / ((1.0 + (y + x)) * (y + x)));
                        	} else {
                        		tmp = (x / y) * (t_0 / (y + x));
                        	}
                        	return tmp;
                        }
                        
                        [x, y] = sort([x, y])
                        def code(x, y):
                        	t_0 = y / (y + x)
                        	tmp = 0
                        	if y <= 1.85e+126:
                        		tmp = t_0 * (x / ((1.0 + (y + x)) * (y + x)))
                        	else:
                        		tmp = (x / y) * (t_0 / (y + x))
                        	return tmp
                        
                        x, y = sort([x, y])
                        function code(x, y)
                        	t_0 = Float64(y / Float64(y + x))
                        	tmp = 0.0
                        	if (y <= 1.85e+126)
                        		tmp = Float64(t_0 * Float64(x / Float64(Float64(1.0 + Float64(y + x)) * Float64(y + x))));
                        	else
                        		tmp = Float64(Float64(x / y) * Float64(t_0 / Float64(y + x)));
                        	end
                        	return tmp
                        end
                        
                        x, y = num2cell(sort([x, y])){:}
                        function tmp_2 = code(x, y)
                        	t_0 = y / (y + x);
                        	tmp = 0.0;
                        	if (y <= 1.85e+126)
                        		tmp = t_0 * (x / ((1.0 + (y + x)) * (y + x)));
                        	else
                        		tmp = (x / y) * (t_0 / (y + x));
                        	end
                        	tmp_2 = tmp;
                        end
                        
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        code[x_, y_] := Block[{t$95$0 = N[(y / N[(y + x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, 1.85e+126], N[(t$95$0 * N[(x / N[(N[(1.0 + N[(y + x), $MachinePrecision]), $MachinePrecision] * N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x / y), $MachinePrecision] * N[(t$95$0 / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
                        
                        \begin{array}{l}
                        [x, y] = \mathsf{sort}([x, y])\\
                        \\
                        \begin{array}{l}
                        t_0 := \frac{y}{y + x}\\
                        \mathbf{if}\;y \leq 1.85 \cdot 10^{+126}:\\
                        \;\;\;\;t\_0 \cdot \frac{x}{\left(1 + \left(y + x\right)\right) \cdot \left(y + x\right)}\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\frac{x}{y} \cdot \frac{t\_0}{y + x}\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 2 regimes
                        2. if y < 1.8499999999999999e126

                          1. Initial program 69.8%

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{y}{y + x} \cdot \frac{x}{\color{blue}{\left(\left(x + y\right) + 1\right) \cdot \left(x + y\right)}} \]
                            15. lower-*.f6495.7

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

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

                              \[\leadsto \frac{y}{y + x} \cdot \frac{x}{\color{blue}{\left(1 + \left(x + y\right)\right)} \cdot \left(x + y\right)} \]
                            18. lower-+.f6495.7

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

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

                              \[\leadsto \frac{y}{y + x} \cdot \frac{x}{\left(1 + \color{blue}{\left(y + x\right)}\right) \cdot \left(x + y\right)} \]
                            21. lower-+.f6495.7

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

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

                              \[\leadsto \frac{y}{y + x} \cdot \frac{x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
                            24. lower-+.f6495.7

                              \[\leadsto \frac{y}{y + x} \cdot \frac{x}{\left(1 + \left(y + x\right)\right) \cdot \color{blue}{\left(y + x\right)}} \]
                          4. Applied rewrites95.7%

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

                          if 1.8499999999999999e126 < y

                          1. Initial program 58.5%

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                            14. lower-/.f6499.9

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                            17. lower-+.f6499.9

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                            20. lower-+.f6499.9

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

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

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                            23. lower-+.f6499.9

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                          4. Applied rewrites99.9%

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

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

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

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

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

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

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

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

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

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

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

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

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

                              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                            14. lower-/.f6499.9

                              \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
                          6. Applied rewrites99.9%

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

                            \[\leadsto \color{blue}{\frac{x}{y}} \cdot \frac{\frac{y}{y + x}}{y + x} \]
                          8. Step-by-step derivation
                            1. lower-/.f6494.9

                              \[\leadsto \color{blue}{\frac{x}{y}} \cdot \frac{\frac{y}{y + x}}{y + x} \]
                          9. Applied rewrites94.9%

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

                        Alternative 10: 99.8% accurate, 0.8× speedup?

                        \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x} \end{array} \]
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        (FPCore (x y)
                         :precision binary64
                         (* (/ x (+ 1.0 (+ y x))) (/ (/ y (+ y x)) (+ y x))))
                        assert(x < y);
                        double code(double x, double y) {
                        	return (x / (1.0 + (y + x))) * ((y / (y + x)) / (y + x));
                        }
                        
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        real(8) function code(x, y)
                            real(8), intent (in) :: x
                            real(8), intent (in) :: y
                            code = (x / (1.0d0 + (y + x))) * ((y / (y + x)) / (y + x))
                        end function
                        
                        assert x < y;
                        public static double code(double x, double y) {
                        	return (x / (1.0 + (y + x))) * ((y / (y + x)) / (y + x));
                        }
                        
                        [x, y] = sort([x, y])
                        def code(x, y):
                        	return (x / (1.0 + (y + x))) * ((y / (y + x)) / (y + x))
                        
                        x, y = sort([x, y])
                        function code(x, y)
                        	return Float64(Float64(x / Float64(1.0 + Float64(y + x))) * Float64(Float64(y / Float64(y + x)) / Float64(y + x)))
                        end
                        
                        x, y = num2cell(sort([x, y])){:}
                        function tmp = code(x, y)
                        	tmp = (x / (1.0 + (y + x))) * ((y / (y + x)) / (y + x));
                        end
                        
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        code[x_, y_] := N[(N[(x / N[(1.0 + N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[(y / N[(y + x), $MachinePrecision]), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
                        
                        \begin{array}{l}
                        [x, y] = \mathsf{sort}([x, y])\\
                        \\
                        \frac{x}{1 + \left(y + x\right)} \cdot \frac{\frac{y}{y + x}}{y + x}
                        \end{array}
                        
                        Derivation
                        1. Initial program 68.2%

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

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

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

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

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

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

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

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

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

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

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

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

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

                            \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                          14. lower-/.f6499.8

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

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

                            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                          17. lower-+.f6499.8

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

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

                            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                          20. lower-+.f6499.8

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

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

                            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                          23. lower-+.f6499.8

                            \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                        4. Applied rewrites99.8%

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

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

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

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

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

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

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

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

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

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

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

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

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

                            \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \color{blue}{\frac{\frac{y}{y + x}}{y + x}} \]
                          14. lower-/.f6499.8

                            \[\leadsto \frac{x}{1 + \left(y + x\right)} \cdot \frac{\color{blue}{\frac{y}{y + x}}}{y + x} \]
                        6. Applied rewrites99.8%

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

                        Alternative 11: 82.2% accurate, 1.0× speedup?

                        \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\ \;\;\;\;\frac{\frac{y}{x}}{x}\\ \mathbf{elif}\;y \leq 1.95 \cdot 10^{-31}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{elif}\;y \leq 2 \cdot 10^{+39}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{y}}{y}\\ \end{array} \end{array} \]
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        (FPCore (x y)
                         :precision binary64
                         (if (<= y -3.2e+27)
                           (/ (/ y x) x)
                           (if (<= y 1.95e-31)
                             (/ y (fma x x x))
                             (if (<= y 2e+39) (/ x (fma y y y)) (/ (/ x y) y)))))
                        assert(x < y);
                        double code(double x, double y) {
                        	double tmp;
                        	if (y <= -3.2e+27) {
                        		tmp = (y / x) / x;
                        	} else if (y <= 1.95e-31) {
                        		tmp = y / fma(x, x, x);
                        	} else if (y <= 2e+39) {
                        		tmp = x / fma(y, y, y);
                        	} else {
                        		tmp = (x / y) / y;
                        	}
                        	return tmp;
                        }
                        
                        x, y = sort([x, y])
                        function code(x, y)
                        	tmp = 0.0
                        	if (y <= -3.2e+27)
                        		tmp = Float64(Float64(y / x) / x);
                        	elseif (y <= 1.95e-31)
                        		tmp = Float64(y / fma(x, x, x));
                        	elseif (y <= 2e+39)
                        		tmp = Float64(x / fma(y, y, y));
                        	else
                        		tmp = Float64(Float64(x / y) / y);
                        	end
                        	return tmp
                        end
                        
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        code[x_, y_] := If[LessEqual[y, -3.2e+27], N[(N[(y / x), $MachinePrecision] / x), $MachinePrecision], If[LessEqual[y, 1.95e-31], N[(y / N[(x * x + x), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 2e+39], N[(x / N[(y * y + y), $MachinePrecision]), $MachinePrecision], N[(N[(x / y), $MachinePrecision] / y), $MachinePrecision]]]]
                        
                        \begin{array}{l}
                        [x, y] = \mathsf{sort}([x, y])\\
                        \\
                        \begin{array}{l}
                        \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\
                        \;\;\;\;\frac{\frac{y}{x}}{x}\\
                        
                        \mathbf{elif}\;y \leq 1.95 \cdot 10^{-31}:\\
                        \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\
                        
                        \mathbf{elif}\;y \leq 2 \cdot 10^{+39}:\\
                        \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\frac{\frac{x}{y}}{y}\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 4 regimes
                        2. if y < -3.20000000000000015e27

                          1. Initial program 46.3%

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

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

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

                              \[\leadsto \color{blue}{\frac{\frac{y}{x}}{x}} \]
                            3. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{\frac{y}{x}}{x}} \]
                            4. lower-/.f6425.6

                              \[\leadsto \frac{\color{blue}{\frac{y}{x}}}{x} \]
                          5. Applied rewrites25.6%

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

                          if -3.20000000000000015e27 < y < 1.9500000000000001e-31

                          1. Initial program 78.3%

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

                            \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
                          4. Step-by-step derivation
                            1. lower-/.f64N/A

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

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

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

                              \[\leadsto \frac{y}{x \cdot x + \color{blue}{x}} \]
                            5. lower-fma.f6476.4

                              \[\leadsto \frac{y}{\color{blue}{\mathsf{fma}\left(x, x, x\right)}} \]
                          5. Applied rewrites76.4%

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

                          if 1.9500000000000001e-31 < y < 1.99999999999999988e39

                          1. Initial program 88.5%

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

                            \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                          4. Step-by-step derivation
                            1. lower-/.f64N/A

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

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

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

                              \[\leadsto \frac{x}{y \cdot y + \color{blue}{y}} \]
                            5. lower-fma.f6460.0

                              \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(y, y, y\right)}} \]
                          5. Applied rewrites60.0%

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

                          if 1.99999999999999988e39 < y

                          1. Initial program 63.1%

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

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

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

                              \[\leadsto \color{blue}{\frac{\frac{x}{y}}{y}} \]
                            3. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{\frac{x}{y}}{y}} \]
                            4. lower-/.f6487.9

                              \[\leadsto \frac{\color{blue}{\frac{x}{y}}}{y} \]
                          5. Applied rewrites87.9%

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

                          \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\ \;\;\;\;\frac{\frac{y}{x}}{x}\\ \mathbf{elif}\;y \leq 1.95 \cdot 10^{-31}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{elif}\;y \leq 2 \cdot 10^{+39}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{y}}{y}\\ \end{array} \]
                        5. Add Preprocessing

                        Alternative 12: 82.2% accurate, 1.0× speedup?

                        \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\ \;\;\;\;\frac{\frac{y}{x}}{x}\\ \mathbf{elif}\;y \leq 1.95 \cdot 10^{-31}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{1 + y}}{y}\\ \end{array} \end{array} \]
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        (FPCore (x y)
                         :precision binary64
                         (if (<= y -3.2e+27)
                           (/ (/ y x) x)
                           (if (<= y 1.95e-31) (/ y (fma x x x)) (/ (/ x (+ 1.0 y)) y))))
                        assert(x < y);
                        double code(double x, double y) {
                        	double tmp;
                        	if (y <= -3.2e+27) {
                        		tmp = (y / x) / x;
                        	} else if (y <= 1.95e-31) {
                        		tmp = y / fma(x, x, x);
                        	} else {
                        		tmp = (x / (1.0 + y)) / y;
                        	}
                        	return tmp;
                        }
                        
                        x, y = sort([x, y])
                        function code(x, y)
                        	tmp = 0.0
                        	if (y <= -3.2e+27)
                        		tmp = Float64(Float64(y / x) / x);
                        	elseif (y <= 1.95e-31)
                        		tmp = Float64(y / fma(x, x, x));
                        	else
                        		tmp = Float64(Float64(x / Float64(1.0 + y)) / y);
                        	end
                        	return tmp
                        end
                        
                        NOTE: x and y should be sorted in increasing order before calling this function.
                        code[x_, y_] := If[LessEqual[y, -3.2e+27], N[(N[(y / x), $MachinePrecision] / x), $MachinePrecision], If[LessEqual[y, 1.95e-31], N[(y / N[(x * x + x), $MachinePrecision]), $MachinePrecision], N[(N[(x / N[(1.0 + y), $MachinePrecision]), $MachinePrecision] / y), $MachinePrecision]]]
                        
                        \begin{array}{l}
                        [x, y] = \mathsf{sort}([x, y])\\
                        \\
                        \begin{array}{l}
                        \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\
                        \;\;\;\;\frac{\frac{y}{x}}{x}\\
                        
                        \mathbf{elif}\;y \leq 1.95 \cdot 10^{-31}:\\
                        \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\frac{\frac{x}{1 + y}}{y}\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 3 regimes
                        2. if y < -3.20000000000000015e27

                          1. Initial program 46.3%

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

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

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

                              \[\leadsto \color{blue}{\frac{\frac{y}{x}}{x}} \]
                            3. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{\frac{y}{x}}{x}} \]
                            4. lower-/.f6425.6

                              \[\leadsto \frac{\color{blue}{\frac{y}{x}}}{x} \]
                          5. Applied rewrites25.6%

                            \[\leadsto \color{blue}{\frac{\frac{y}{x}}{x}} \]

                          if -3.20000000000000015e27 < y < 1.9500000000000001e-31

                          1. Initial program 78.3%

                            \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                          2. Add Preprocessing
                          3. Taylor expanded in y around 0

                            \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
                          4. Step-by-step derivation
                            1. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
                            2. +-commutativeN/A

                              \[\leadsto \frac{y}{x \cdot \color{blue}{\left(x + 1\right)}} \]
                            3. distribute-lft-inN/A

                              \[\leadsto \frac{y}{\color{blue}{x \cdot x + x \cdot 1}} \]
                            4. *-rgt-identityN/A

                              \[\leadsto \frac{y}{x \cdot x + \color{blue}{x}} \]
                            5. lower-fma.f6476.4

                              \[\leadsto \frac{y}{\color{blue}{\mathsf{fma}\left(x, x, x\right)}} \]
                          5. Applied rewrites76.4%

                            \[\leadsto \color{blue}{\frac{y}{\mathsf{fma}\left(x, x, x\right)}} \]

                          if 1.9500000000000001e-31 < y

                          1. Initial program 69.0%

                            \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                          2. Add Preprocessing
                          3. Taylor expanded in x around 0

                            \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                          4. Step-by-step derivation
                            1. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                            2. +-commutativeN/A

                              \[\leadsto \frac{x}{y \cdot \color{blue}{\left(y + 1\right)}} \]
                            3. distribute-lft-inN/A

                              \[\leadsto \frac{x}{\color{blue}{y \cdot y + y \cdot 1}} \]
                            4. *-rgt-identityN/A

                              \[\leadsto \frac{x}{y \cdot y + \color{blue}{y}} \]
                            5. lower-fma.f6478.6

                              \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(y, y, y\right)}} \]
                          5. Applied rewrites78.6%

                            \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(y, y, y\right)}} \]
                          6. Step-by-step derivation
                            1. Applied rewrites81.4%

                              \[\leadsto \frac{\frac{x}{1 + y}}{\color{blue}{y}} \]
                          7. Recombined 3 regimes into one program.
                          8. Final simplification65.9%

                            \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq -3.2 \cdot 10^{+27}:\\ \;\;\;\;\frac{\frac{y}{x}}{x}\\ \mathbf{elif}\;y \leq 1.95 \cdot 10^{-31}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{1 + y}}{y}\\ \end{array} \]
                          9. Add Preprocessing

                          Alternative 13: 80.8% accurate, 1.1× speedup?

                          \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;y \leq 1.95 \cdot 10^{-31}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{elif}\;y \leq 2 \cdot 10^{+39}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{y}}{y}\\ \end{array} \end{array} \]
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          (FPCore (x y)
                           :precision binary64
                           (if (<= y 1.95e-31)
                             (/ y (fma x x x))
                             (if (<= y 2e+39) (/ x (fma y y y)) (/ (/ x y) y))))
                          assert(x < y);
                          double code(double x, double y) {
                          	double tmp;
                          	if (y <= 1.95e-31) {
                          		tmp = y / fma(x, x, x);
                          	} else if (y <= 2e+39) {
                          		tmp = x / fma(y, y, y);
                          	} else {
                          		tmp = (x / y) / y;
                          	}
                          	return tmp;
                          }
                          
                          x, y = sort([x, y])
                          function code(x, y)
                          	tmp = 0.0
                          	if (y <= 1.95e-31)
                          		tmp = Float64(y / fma(x, x, x));
                          	elseif (y <= 2e+39)
                          		tmp = Float64(x / fma(y, y, y));
                          	else
                          		tmp = Float64(Float64(x / y) / y);
                          	end
                          	return tmp
                          end
                          
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          code[x_, y_] := If[LessEqual[y, 1.95e-31], N[(y / N[(x * x + x), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 2e+39], N[(x / N[(y * y + y), $MachinePrecision]), $MachinePrecision], N[(N[(x / y), $MachinePrecision] / y), $MachinePrecision]]]
                          
                          \begin{array}{l}
                          [x, y] = \mathsf{sort}([x, y])\\
                          \\
                          \begin{array}{l}
                          \mathbf{if}\;y \leq 1.95 \cdot 10^{-31}:\\
                          \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\
                          
                          \mathbf{elif}\;y \leq 2 \cdot 10^{+39}:\\
                          \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;\frac{\frac{x}{y}}{y}\\
                          
                          
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 3 regimes
                          2. if y < 1.9500000000000001e-31

                            1. Initial program 67.8%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Taylor expanded in y around 0

                              \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
                            4. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
                              2. +-commutativeN/A

                                \[\leadsto \frac{y}{x \cdot \color{blue}{\left(x + 1\right)}} \]
                              3. distribute-lft-inN/A

                                \[\leadsto \frac{y}{\color{blue}{x \cdot x + x \cdot 1}} \]
                              4. *-rgt-identityN/A

                                \[\leadsto \frac{y}{x \cdot x + \color{blue}{x}} \]
                              5. lower-fma.f6459.3

                                \[\leadsto \frac{y}{\color{blue}{\mathsf{fma}\left(x, x, x\right)}} \]
                            5. Applied rewrites59.3%

                              \[\leadsto \color{blue}{\frac{y}{\mathsf{fma}\left(x, x, x\right)}} \]

                            if 1.9500000000000001e-31 < y < 1.99999999999999988e39

                            1. Initial program 88.5%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Taylor expanded in x around 0

                              \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                            4. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                              2. +-commutativeN/A

                                \[\leadsto \frac{x}{y \cdot \color{blue}{\left(y + 1\right)}} \]
                              3. distribute-lft-inN/A

                                \[\leadsto \frac{x}{\color{blue}{y \cdot y + y \cdot 1}} \]
                              4. *-rgt-identityN/A

                                \[\leadsto \frac{x}{y \cdot y + \color{blue}{y}} \]
                              5. lower-fma.f6460.0

                                \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(y, y, y\right)}} \]
                            5. Applied rewrites60.0%

                              \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(y, y, y\right)}} \]

                            if 1.99999999999999988e39 < y

                            1. Initial program 63.1%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Taylor expanded in y around inf

                              \[\leadsto \color{blue}{\frac{x}{{y}^{2}}} \]
                            4. Step-by-step derivation
                              1. unpow2N/A

                                \[\leadsto \frac{x}{\color{blue}{y \cdot y}} \]
                              2. associate-/r*N/A

                                \[\leadsto \color{blue}{\frac{\frac{x}{y}}{y}} \]
                              3. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{\frac{x}{y}}{y}} \]
                              4. lower-/.f6487.9

                                \[\leadsto \frac{\color{blue}{\frac{x}{y}}}{y} \]
                            5. Applied rewrites87.9%

                              \[\leadsto \color{blue}{\frac{\frac{x}{y}}{y}} \]
                          3. Recombined 3 regimes into one program.
                          4. Final simplification65.6%

                            \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq 1.95 \cdot 10^{-31}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{elif}\;y \leq 2 \cdot 10^{+39}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{x}{y}}{y}\\ \end{array} \]
                          5. Add Preprocessing

                          Alternative 14: 78.6% accurate, 1.6× speedup?

                          \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;y \leq 1.95 \cdot 10^{-31}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\ \end{array} \end{array} \]
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          (FPCore (x y)
                           :precision binary64
                           (if (<= y 1.95e-31) (/ y (fma x x x)) (/ x (fma y y y))))
                          assert(x < y);
                          double code(double x, double y) {
                          	double tmp;
                          	if (y <= 1.95e-31) {
                          		tmp = y / fma(x, x, x);
                          	} else {
                          		tmp = x / fma(y, y, y);
                          	}
                          	return tmp;
                          }
                          
                          x, y = sort([x, y])
                          function code(x, y)
                          	tmp = 0.0
                          	if (y <= 1.95e-31)
                          		tmp = Float64(y / fma(x, x, x));
                          	else
                          		tmp = Float64(x / fma(y, y, y));
                          	end
                          	return tmp
                          end
                          
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          code[x_, y_] := If[LessEqual[y, 1.95e-31], N[(y / N[(x * x + x), $MachinePrecision]), $MachinePrecision], N[(x / N[(y * y + y), $MachinePrecision]), $MachinePrecision]]
                          
                          \begin{array}{l}
                          [x, y] = \mathsf{sort}([x, y])\\
                          \\
                          \begin{array}{l}
                          \mathbf{if}\;y \leq 1.95 \cdot 10^{-31}:\\
                          \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\
                          
                          
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 2 regimes
                          2. if y < 1.9500000000000001e-31

                            1. Initial program 67.8%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Taylor expanded in y around 0

                              \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
                            4. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{y}{x \cdot \left(1 + x\right)}} \]
                              2. +-commutativeN/A

                                \[\leadsto \frac{y}{x \cdot \color{blue}{\left(x + 1\right)}} \]
                              3. distribute-lft-inN/A

                                \[\leadsto \frac{y}{\color{blue}{x \cdot x + x \cdot 1}} \]
                              4. *-rgt-identityN/A

                                \[\leadsto \frac{y}{x \cdot x + \color{blue}{x}} \]
                              5. lower-fma.f6459.3

                                \[\leadsto \frac{y}{\color{blue}{\mathsf{fma}\left(x, x, x\right)}} \]
                            5. Applied rewrites59.3%

                              \[\leadsto \color{blue}{\frac{y}{\mathsf{fma}\left(x, x, x\right)}} \]

                            if 1.9500000000000001e-31 < y

                            1. Initial program 69.0%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Taylor expanded in x around 0

                              \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                            4. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                              2. +-commutativeN/A

                                \[\leadsto \frac{x}{y \cdot \color{blue}{\left(y + 1\right)}} \]
                              3. distribute-lft-inN/A

                                \[\leadsto \frac{x}{\color{blue}{y \cdot y + y \cdot 1}} \]
                              4. *-rgt-identityN/A

                                \[\leadsto \frac{x}{y \cdot y + \color{blue}{y}} \]
                              5. lower-fma.f6478.6

                                \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(y, y, y\right)}} \]
                            5. Applied rewrites78.6%

                              \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(y, y, y\right)}} \]
                          3. Recombined 2 regimes into one program.
                          4. Final simplification64.8%

                            \[\leadsto \begin{array}{l} \mathbf{if}\;y \leq 1.95 \cdot 10^{-31}:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(x, x, x\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\ \end{array} \]
                          5. Add Preprocessing

                          Alternative 15: 77.4% accurate, 1.6× speedup?

                          \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;x \leq -1.1 \cdot 10^{+19}:\\ \;\;\;\;\frac{y}{x \cdot x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\ \end{array} \end{array} \]
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          (FPCore (x y)
                           :precision binary64
                           (if (<= x -1.1e+19) (/ y (* x x)) (/ x (fma y y y))))
                          assert(x < y);
                          double code(double x, double y) {
                          	double tmp;
                          	if (x <= -1.1e+19) {
                          		tmp = y / (x * x);
                          	} else {
                          		tmp = x / fma(y, y, y);
                          	}
                          	return tmp;
                          }
                          
                          x, y = sort([x, y])
                          function code(x, y)
                          	tmp = 0.0
                          	if (x <= -1.1e+19)
                          		tmp = Float64(y / Float64(x * x));
                          	else
                          		tmp = Float64(x / fma(y, y, y));
                          	end
                          	return tmp
                          end
                          
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          code[x_, y_] := If[LessEqual[x, -1.1e+19], N[(y / N[(x * x), $MachinePrecision]), $MachinePrecision], N[(x / N[(y * y + y), $MachinePrecision]), $MachinePrecision]]
                          
                          \begin{array}{l}
                          [x, y] = \mathsf{sort}([x, y])\\
                          \\
                          \begin{array}{l}
                          \mathbf{if}\;x \leq -1.1 \cdot 10^{+19}:\\
                          \;\;\;\;\frac{y}{x \cdot x}\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\
                          
                          
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 2 regimes
                          2. if x < -1.1e19

                            1. Initial program 47.2%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Step-by-step derivation
                              1. lift-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}} \]
                              2. lift-*.f64N/A

                                \[\leadsto \frac{\color{blue}{x \cdot y}}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                              3. lift-*.f64N/A

                                \[\leadsto \frac{x \cdot y}{\color{blue}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}} \]
                              4. times-fracN/A

                                \[\leadsto \color{blue}{\frac{x}{\left(x + y\right) \cdot \left(x + y\right)} \cdot \frac{y}{\left(x + y\right) + 1}} \]
                              5. associate-*l/N/A

                                \[\leadsto \color{blue}{\frac{x \cdot \frac{y}{\left(x + y\right) + 1}}{\left(x + y\right) \cdot \left(x + y\right)}} \]
                              6. lift-*.f64N/A

                                \[\leadsto \frac{x \cdot \frac{y}{\left(x + y\right) + 1}}{\color{blue}{\left(x + y\right) \cdot \left(x + y\right)}} \]
                              7. times-fracN/A

                                \[\leadsto \color{blue}{\frac{x}{x + y} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              8. lower-*.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{x + y} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              9. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{x + y}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              10. lift-+.f64N/A

                                \[\leadsto \frac{x}{\color{blue}{x + y}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              11. +-commutativeN/A

                                \[\leadsto \frac{x}{\color{blue}{y + x}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              12. lower-+.f64N/A

                                \[\leadsto \frac{x}{\color{blue}{y + x}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              13. lower-/.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              14. lower-/.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\color{blue}{\frac{y}{\left(x + y\right) + 1}}}{x + y} \]
                              15. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{\left(x + y\right) + 1}}}{x + y} \]
                              16. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                              17. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                              18. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(x + y\right)}}}{x + y} \]
                              19. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                              20. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                              21. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{x + y}} \]
                              22. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                              23. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                            4. Applied rewrites99.8%

                              \[\leadsto \color{blue}{\frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}} \]
                            5. Taylor expanded in x around inf

                              \[\leadsto \color{blue}{\frac{y}{{x}^{2}}} \]
                            6. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{y}{{x}^{2}}} \]
                              2. unpow2N/A

                                \[\leadsto \frac{y}{\color{blue}{x \cdot x}} \]
                              3. lower-*.f6472.5

                                \[\leadsto \frac{y}{\color{blue}{x \cdot x}} \]
                            7. Applied rewrites72.5%

                              \[\leadsto \color{blue}{\frac{y}{x \cdot x}} \]

                            if -1.1e19 < x

                            1. Initial program 74.7%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Taylor expanded in x around 0

                              \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                            4. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{y \cdot \left(1 + y\right)}} \]
                              2. +-commutativeN/A

                                \[\leadsto \frac{x}{y \cdot \color{blue}{\left(y + 1\right)}} \]
                              3. distribute-lft-inN/A

                                \[\leadsto \frac{x}{\color{blue}{y \cdot y + y \cdot 1}} \]
                              4. *-rgt-identityN/A

                                \[\leadsto \frac{x}{y \cdot y + \color{blue}{y}} \]
                              5. lower-fma.f6459.4

                                \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(y, y, y\right)}} \]
                            5. Applied rewrites59.4%

                              \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(y, y, y\right)}} \]
                          3. Recombined 2 regimes into one program.
                          4. Final simplification62.5%

                            \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq -1.1 \cdot 10^{+19}:\\ \;\;\;\;\frac{y}{x \cdot x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(y, y, y\right)}\\ \end{array} \]
                          5. Add Preprocessing

                          Alternative 16: 65.0% accurate, 1.7× speedup?

                          \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \begin{array}{l} \mathbf{if}\;x \leq -1.1 \cdot 10^{+19}:\\ \;\;\;\;\frac{y}{x \cdot x}\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{y \cdot y}\\ \end{array} \end{array} \]
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          (FPCore (x y)
                           :precision binary64
                           (if (<= x -1.1e+19) (/ y (* x x)) (/ x (* y y))))
                          assert(x < y);
                          double code(double x, double y) {
                          	double tmp;
                          	if (x <= -1.1e+19) {
                          		tmp = y / (x * x);
                          	} else {
                          		tmp = x / (y * y);
                          	}
                          	return tmp;
                          }
                          
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          real(8) function code(x, y)
                              real(8), intent (in) :: x
                              real(8), intent (in) :: y
                              real(8) :: tmp
                              if (x <= (-1.1d+19)) then
                                  tmp = y / (x * x)
                              else
                                  tmp = x / (y * y)
                              end if
                              code = tmp
                          end function
                          
                          assert x < y;
                          public static double code(double x, double y) {
                          	double tmp;
                          	if (x <= -1.1e+19) {
                          		tmp = y / (x * x);
                          	} else {
                          		tmp = x / (y * y);
                          	}
                          	return tmp;
                          }
                          
                          [x, y] = sort([x, y])
                          def code(x, y):
                          	tmp = 0
                          	if x <= -1.1e+19:
                          		tmp = y / (x * x)
                          	else:
                          		tmp = x / (y * y)
                          	return tmp
                          
                          x, y = sort([x, y])
                          function code(x, y)
                          	tmp = 0.0
                          	if (x <= -1.1e+19)
                          		tmp = Float64(y / Float64(x * x));
                          	else
                          		tmp = Float64(x / Float64(y * y));
                          	end
                          	return tmp
                          end
                          
                          x, y = num2cell(sort([x, y])){:}
                          function tmp_2 = code(x, y)
                          	tmp = 0.0;
                          	if (x <= -1.1e+19)
                          		tmp = y / (x * x);
                          	else
                          		tmp = x / (y * y);
                          	end
                          	tmp_2 = tmp;
                          end
                          
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          code[x_, y_] := If[LessEqual[x, -1.1e+19], N[(y / N[(x * x), $MachinePrecision]), $MachinePrecision], N[(x / N[(y * y), $MachinePrecision]), $MachinePrecision]]
                          
                          \begin{array}{l}
                          [x, y] = \mathsf{sort}([x, y])\\
                          \\
                          \begin{array}{l}
                          \mathbf{if}\;x \leq -1.1 \cdot 10^{+19}:\\
                          \;\;\;\;\frac{y}{x \cdot x}\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;\frac{x}{y \cdot y}\\
                          
                          
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 2 regimes
                          2. if x < -1.1e19

                            1. Initial program 47.2%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Step-by-step derivation
                              1. lift-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}} \]
                              2. lift-*.f64N/A

                                \[\leadsto \frac{\color{blue}{x \cdot y}}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                              3. lift-*.f64N/A

                                \[\leadsto \frac{x \cdot y}{\color{blue}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}} \]
                              4. times-fracN/A

                                \[\leadsto \color{blue}{\frac{x}{\left(x + y\right) \cdot \left(x + y\right)} \cdot \frac{y}{\left(x + y\right) + 1}} \]
                              5. associate-*l/N/A

                                \[\leadsto \color{blue}{\frac{x \cdot \frac{y}{\left(x + y\right) + 1}}{\left(x + y\right) \cdot \left(x + y\right)}} \]
                              6. lift-*.f64N/A

                                \[\leadsto \frac{x \cdot \frac{y}{\left(x + y\right) + 1}}{\color{blue}{\left(x + y\right) \cdot \left(x + y\right)}} \]
                              7. times-fracN/A

                                \[\leadsto \color{blue}{\frac{x}{x + y} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              8. lower-*.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{x + y} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              9. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{x + y}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              10. lift-+.f64N/A

                                \[\leadsto \frac{x}{\color{blue}{x + y}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              11. +-commutativeN/A

                                \[\leadsto \frac{x}{\color{blue}{y + x}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              12. lower-+.f64N/A

                                \[\leadsto \frac{x}{\color{blue}{y + x}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              13. lower-/.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              14. lower-/.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\color{blue}{\frac{y}{\left(x + y\right) + 1}}}{x + y} \]
                              15. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{\left(x + y\right) + 1}}}{x + y} \]
                              16. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                              17. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                              18. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(x + y\right)}}}{x + y} \]
                              19. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                              20. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                              21. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{x + y}} \]
                              22. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                              23. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                            4. Applied rewrites99.8%

                              \[\leadsto \color{blue}{\frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}} \]
                            5. Taylor expanded in x around inf

                              \[\leadsto \color{blue}{\frac{y}{{x}^{2}}} \]
                            6. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{y}{{x}^{2}}} \]
                              2. unpow2N/A

                                \[\leadsto \frac{y}{\color{blue}{x \cdot x}} \]
                              3. lower-*.f6472.5

                                \[\leadsto \frac{y}{\color{blue}{x \cdot x}} \]
                            7. Applied rewrites72.5%

                              \[\leadsto \color{blue}{\frac{y}{x \cdot x}} \]

                            if -1.1e19 < x

                            1. Initial program 74.7%

                              \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            2. Add Preprocessing
                            3. Step-by-step derivation
                              1. lift-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}} \]
                              2. lift-*.f64N/A

                                \[\leadsto \frac{\color{blue}{x \cdot y}}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                              3. lift-*.f64N/A

                                \[\leadsto \frac{x \cdot y}{\color{blue}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}} \]
                              4. times-fracN/A

                                \[\leadsto \color{blue}{\frac{x}{\left(x + y\right) \cdot \left(x + y\right)} \cdot \frac{y}{\left(x + y\right) + 1}} \]
                              5. associate-*l/N/A

                                \[\leadsto \color{blue}{\frac{x \cdot \frac{y}{\left(x + y\right) + 1}}{\left(x + y\right) \cdot \left(x + y\right)}} \]
                              6. lift-*.f64N/A

                                \[\leadsto \frac{x \cdot \frac{y}{\left(x + y\right) + 1}}{\color{blue}{\left(x + y\right) \cdot \left(x + y\right)}} \]
                              7. times-fracN/A

                                \[\leadsto \color{blue}{\frac{x}{x + y} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              8. lower-*.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{x + y} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              9. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{x + y}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              10. lift-+.f64N/A

                                \[\leadsto \frac{x}{\color{blue}{x + y}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              11. +-commutativeN/A

                                \[\leadsto \frac{x}{\color{blue}{y + x}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              12. lower-+.f64N/A

                                \[\leadsto \frac{x}{\color{blue}{y + x}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                              13. lower-/.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                              14. lower-/.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\color{blue}{\frac{y}{\left(x + y\right) + 1}}}{x + y} \]
                              15. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{\left(x + y\right) + 1}}}{x + y} \]
                              16. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                              17. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                              18. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(x + y\right)}}}{x + y} \]
                              19. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                              20. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                              21. lift-+.f64N/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{x + y}} \]
                              22. +-commutativeN/A

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                              23. lower-+.f6499.8

                                \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                            4. Applied rewrites99.8%

                              \[\leadsto \color{blue}{\frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}} \]
                            5. Taylor expanded in y around inf

                              \[\leadsto \color{blue}{\frac{x}{{y}^{2}}} \]
                            6. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{{y}^{2}}} \]
                              2. unpow2N/A

                                \[\leadsto \frac{x}{\color{blue}{y \cdot y}} \]
                              3. lower-*.f6443.7

                                \[\leadsto \frac{x}{\color{blue}{y \cdot y}} \]
                            7. Applied rewrites43.7%

                              \[\leadsto \color{blue}{\frac{x}{y \cdot y}} \]
                          3. Recombined 2 regimes into one program.
                          4. Add Preprocessing

                          Alternative 17: 36.8% accurate, 2.3× speedup?

                          \[\begin{array}{l} [x, y] = \mathsf{sort}([x, y])\\ \\ \frac{x}{y \cdot y} \end{array} \]
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          (FPCore (x y) :precision binary64 (/ x (* y y)))
                          assert(x < y);
                          double code(double x, double y) {
                          	return x / (y * y);
                          }
                          
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          real(8) function code(x, y)
                              real(8), intent (in) :: x
                              real(8), intent (in) :: y
                              code = x / (y * y)
                          end function
                          
                          assert x < y;
                          public static double code(double x, double y) {
                          	return x / (y * y);
                          }
                          
                          [x, y] = sort([x, y])
                          def code(x, y):
                          	return x / (y * y)
                          
                          x, y = sort([x, y])
                          function code(x, y)
                          	return Float64(x / Float64(y * y))
                          end
                          
                          x, y = num2cell(sort([x, y])){:}
                          function tmp = code(x, y)
                          	tmp = x / (y * y);
                          end
                          
                          NOTE: x and y should be sorted in increasing order before calling this function.
                          code[x_, y_] := N[(x / N[(y * y), $MachinePrecision]), $MachinePrecision]
                          
                          \begin{array}{l}
                          [x, y] = \mathsf{sort}([x, y])\\
                          \\
                          \frac{x}{y \cdot y}
                          \end{array}
                          
                          Derivation
                          1. Initial program 68.2%

                            \[\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                          2. Add Preprocessing
                          3. Step-by-step derivation
                            1. lift-/.f64N/A

                              \[\leadsto \color{blue}{\frac{x \cdot y}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}} \]
                            2. lift-*.f64N/A

                              \[\leadsto \frac{\color{blue}{x \cdot y}}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)} \]
                            3. lift-*.f64N/A

                              \[\leadsto \frac{x \cdot y}{\color{blue}{\left(\left(x + y\right) \cdot \left(x + y\right)\right) \cdot \left(\left(x + y\right) + 1\right)}} \]
                            4. times-fracN/A

                              \[\leadsto \color{blue}{\frac{x}{\left(x + y\right) \cdot \left(x + y\right)} \cdot \frac{y}{\left(x + y\right) + 1}} \]
                            5. associate-*l/N/A

                              \[\leadsto \color{blue}{\frac{x \cdot \frac{y}{\left(x + y\right) + 1}}{\left(x + y\right) \cdot \left(x + y\right)}} \]
                            6. lift-*.f64N/A

                              \[\leadsto \frac{x \cdot \frac{y}{\left(x + y\right) + 1}}{\color{blue}{\left(x + y\right) \cdot \left(x + y\right)}} \]
                            7. times-fracN/A

                              \[\leadsto \color{blue}{\frac{x}{x + y} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                            8. lower-*.f64N/A

                              \[\leadsto \color{blue}{\frac{x}{x + y} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                            9. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{x}{x + y}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                            10. lift-+.f64N/A

                              \[\leadsto \frac{x}{\color{blue}{x + y}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                            11. +-commutativeN/A

                              \[\leadsto \frac{x}{\color{blue}{y + x}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                            12. lower-+.f64N/A

                              \[\leadsto \frac{x}{\color{blue}{y + x}} \cdot \frac{\frac{y}{\left(x + y\right) + 1}}{x + y} \]
                            13. lower-/.f64N/A

                              \[\leadsto \frac{x}{y + x} \cdot \color{blue}{\frac{\frac{y}{\left(x + y\right) + 1}}{x + y}} \]
                            14. lower-/.f6499.8

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\color{blue}{\frac{y}{\left(x + y\right) + 1}}}{x + y} \]
                            15. lift-+.f64N/A

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{\left(x + y\right) + 1}}}{x + y} \]
                            16. +-commutativeN/A

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                            17. lower-+.f6499.8

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{\color{blue}{1 + \left(x + y\right)}}}{x + y} \]
                            18. lift-+.f64N/A

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(x + y\right)}}}{x + y} \]
                            19. +-commutativeN/A

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                            20. lower-+.f6499.8

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \color{blue}{\left(y + x\right)}}}{x + y} \]
                            21. lift-+.f64N/A

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{x + y}} \]
                            22. +-commutativeN/A

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                            23. lower-+.f6499.8

                              \[\leadsto \frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{\color{blue}{y + x}} \]
                          4. Applied rewrites99.8%

                            \[\leadsto \color{blue}{\frac{x}{y + x} \cdot \frac{\frac{y}{1 + \left(y + x\right)}}{y + x}} \]
                          5. Taylor expanded in y around inf

                            \[\leadsto \color{blue}{\frac{x}{{y}^{2}}} \]
                          6. Step-by-step derivation
                            1. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{x}{{y}^{2}}} \]
                            2. unpow2N/A

                              \[\leadsto \frac{x}{\color{blue}{y \cdot y}} \]
                            3. lower-*.f6440.1

                              \[\leadsto \frac{x}{\color{blue}{y \cdot y}} \]
                          7. Applied rewrites40.1%

                            \[\leadsto \color{blue}{\frac{x}{y \cdot y}} \]
                          8. Add Preprocessing

                          Developer Target 1: 99.8% accurate, 0.6× speedup?

                          \[\begin{array}{l} \\ \frac{\frac{\frac{x}{\left(y + 1\right) + x}}{y + x}}{\frac{1}{\frac{y}{y + x}}} \end{array} \]
                          (FPCore (x y)
                           :precision binary64
                           (/ (/ (/ x (+ (+ y 1.0) x)) (+ y x)) (/ 1.0 (/ y (+ y x)))))
                          double code(double x, double y) {
                          	return ((x / ((y + 1.0) + x)) / (y + x)) / (1.0 / (y / (y + x)));
                          }
                          
                          real(8) function code(x, y)
                              real(8), intent (in) :: x
                              real(8), intent (in) :: y
                              code = ((x / ((y + 1.0d0) + x)) / (y + x)) / (1.0d0 / (y / (y + x)))
                          end function
                          
                          public static double code(double x, double y) {
                          	return ((x / ((y + 1.0) + x)) / (y + x)) / (1.0 / (y / (y + x)));
                          }
                          
                          def code(x, y):
                          	return ((x / ((y + 1.0) + x)) / (y + x)) / (1.0 / (y / (y + x)))
                          
                          function code(x, y)
                          	return Float64(Float64(Float64(x / Float64(Float64(y + 1.0) + x)) / Float64(y + x)) / Float64(1.0 / Float64(y / Float64(y + x))))
                          end
                          
                          function tmp = code(x, y)
                          	tmp = ((x / ((y + 1.0) + x)) / (y + x)) / (1.0 / (y / (y + x)));
                          end
                          
                          code[x_, y_] := N[(N[(N[(x / N[(N[(y + 1.0), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision] / N[(y + x), $MachinePrecision]), $MachinePrecision] / N[(1.0 / N[(y / N[(y + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
                          
                          \begin{array}{l}
                          
                          \\
                          \frac{\frac{\frac{x}{\left(y + 1\right) + x}}{y + x}}{\frac{1}{\frac{y}{y + x}}}
                          \end{array}
                          

                          Reproduce

                          ?
                          herbie shell --seed 2024339 
                          (FPCore (x y)
                            :name "Numeric.SpecFunctions:incompleteBetaApprox from math-functions-0.1.5.2, A"
                            :precision binary64
                          
                            :alt
                            (! :herbie-platform default (/ (/ (/ x (+ (+ y 1) x)) (+ y x)) (/ 1 (/ y (+ y x)))))
                          
                            (/ (* x y) (* (* (+ x y) (+ x y)) (+ (+ x y) 1.0))))