Diagrams.Solve.Tridiagonal:solveCyclicTriDiagonal from diagrams-solve-0.1, B

Percentage Accurate: 75.1% → 88.8%
Time: 10.1s
Alternatives: 16
Speedup: 0.5×

Specification

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

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

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 16 alternatives:

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

Initial Program: 75.1% accurate, 1.0× speedup?

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

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

Alternative 1: 88.8% accurate, 0.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \left(1 + a\right) + \frac{b \cdot y}{t}\\ t_2 := \frac{\frac{z \cdot y}{t} + x}{t\_1}\\ t_3 := \frac{z}{\mathsf{fma}\left(b, \frac{y}{t}, a\right) + 1} \cdot \frac{y}{t}\\ \mathbf{if}\;t\_2 \leq -\infty:\\ \;\;\;\;t\_3\\ \mathbf{elif}\;t\_2 \leq 5 \cdot 10^{+300}:\\ \;\;\;\;\frac{\mathsf{fma}\left({t}^{-1}, z \cdot y, x\right)}{t\_1}\\ \mathbf{elif}\;t\_2 \leq \infty:\\ \;\;\;\;t\_3\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \end{array} \]
(FPCore (x y z t a b)
 :precision binary64
 (let* ((t_1 (+ (+ 1.0 a) (/ (* b y) t)))
        (t_2 (/ (+ (/ (* z y) t) x) t_1))
        (t_3 (* (/ z (+ (fma b (/ y t) a) 1.0)) (/ y t))))
   (if (<= t_2 (- INFINITY))
     t_3
     (if (<= t_2 5e+300)
       (/ (fma (pow t -1.0) (* z y) x) t_1)
       (if (<= t_2 INFINITY) t_3 (/ z b))))))
double code(double x, double y, double z, double t, double a, double b) {
	double t_1 = (1.0 + a) + ((b * y) / t);
	double t_2 = (((z * y) / t) + x) / t_1;
	double t_3 = (z / (fma(b, (y / t), a) + 1.0)) * (y / t);
	double tmp;
	if (t_2 <= -((double) INFINITY)) {
		tmp = t_3;
	} else if (t_2 <= 5e+300) {
		tmp = fma(pow(t, -1.0), (z * y), x) / t_1;
	} else if (t_2 <= ((double) INFINITY)) {
		tmp = t_3;
	} else {
		tmp = z / b;
	}
	return tmp;
}
function code(x, y, z, t, a, b)
	t_1 = Float64(Float64(1.0 + a) + Float64(Float64(b * y) / t))
	t_2 = Float64(Float64(Float64(Float64(z * y) / t) + x) / t_1)
	t_3 = Float64(Float64(z / Float64(fma(b, Float64(y / t), a) + 1.0)) * Float64(y / t))
	tmp = 0.0
	if (t_2 <= Float64(-Inf))
		tmp = t_3;
	elseif (t_2 <= 5e+300)
		tmp = Float64(fma((t ^ -1.0), Float64(z * y), x) / t_1);
	elseif (t_2 <= Inf)
		tmp = t_3;
	else
		tmp = Float64(z / b);
	end
	return tmp
end
code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(1.0 + a), $MachinePrecision] + N[(N[(b * y), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(N[(z * y), $MachinePrecision] / t), $MachinePrecision] + x), $MachinePrecision] / t$95$1), $MachinePrecision]}, Block[{t$95$3 = N[(N[(z / N[(N[(b * N[(y / t), $MachinePrecision] + a), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] * N[(y / t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, (-Infinity)], t$95$3, If[LessEqual[t$95$2, 5e+300], N[(N[(N[Power[t, -1.0], $MachinePrecision] * N[(z * y), $MachinePrecision] + x), $MachinePrecision] / t$95$1), $MachinePrecision], If[LessEqual[t$95$2, Infinity], t$95$3, N[(z / b), $MachinePrecision]]]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \left(1 + a\right) + \frac{b \cdot y}{t}\\
t_2 := \frac{\frac{z \cdot y}{t} + x}{t\_1}\\
t_3 := \frac{z}{\mathsf{fma}\left(b, \frac{y}{t}, a\right) + 1} \cdot \frac{y}{t}\\
\mathbf{if}\;t\_2 \leq -\infty:\\
\;\;\;\;t\_3\\

\mathbf{elif}\;t\_2 \leq 5 \cdot 10^{+300}:\\
\;\;\;\;\frac{\mathsf{fma}\left({t}^{-1}, z \cdot y, x\right)}{t\_1}\\

\mathbf{elif}\;t\_2 \leq \infty:\\
\;\;\;\;t\_3\\

\mathbf{else}:\\
\;\;\;\;\frac{z}{b}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -inf.0 or 5.00000000000000026e300 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < +inf.0

    1. Initial program 30.4%

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

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

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

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

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

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

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

        \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]
      8. lower-/.f6458.8

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

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

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

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

        \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\frac{\color{blue}{y \cdot b}}{t} + \left(a + 1\right)} \]
      13. associate-/l*N/A

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

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

        \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\color{blue}{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}} \]
      16. lower-/.f6458.5

        \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\color{blue}{\frac{b}{t}}, y, a + 1\right)} \]
      17. lift-+.f64N/A

        \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{a + 1}\right)} \]
      18. +-commutativeN/A

        \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{1 + a}\right)} \]
      19. lower-+.f6458.5

        \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{1 + a}\right)} \]
    4. Applied rewrites58.5%

      \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}} \]
    5. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}} \]
      2. clear-numN/A

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

        \[\leadsto \color{blue}{\frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}}} \]
      4. lift-fma.f64N/A

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

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

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

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

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

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}}} \]
      10. lift-/.f64N/A

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}} \]
      11. lower-/.f6458.6

        \[\leadsto \frac{1}{\color{blue}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}}} \]
      12. lift-+.f64N/A

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{1 + a}\right)}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}} \]
      13. +-commutativeN/A

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{a + 1}\right)}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}} \]
      14. lower-+.f6458.6

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{a + 1}\right)}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}} \]
      15. lift-/.f64N/A

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}} \]
      16. lift-fma.f64N/A

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\color{blue}{\frac{y}{t} \cdot z + x}}} \]
      17. associate-*l/N/A

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\color{blue}{\frac{y \cdot z}{t}} + x}} \]
      18. associate-/l*N/A

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\color{blue}{y \cdot \frac{z}{t}} + x}} \]
      19. lift-/.f64N/A

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{y \cdot \color{blue}{\frac{z}{t}} + x}} \]
      20. lower-fma.f6458.5

        \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\color{blue}{\mathsf{fma}\left(y, \frac{z}{t}, x\right)}}} \]
    6. Applied rewrites58.5%

      \[\leadsto \color{blue}{\frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\mathsf{fma}\left(y, \frac{z}{t}, x\right)}}} \]
    7. Taylor expanded in x around 0

      \[\leadsto \color{blue}{\frac{y \cdot z}{t \cdot \left(1 + \left(a + \frac{b \cdot y}{t}\right)\right)}} \]
    8. Step-by-step derivation
      1. times-fracN/A

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

        \[\leadsto \color{blue}{\frac{y}{t} \cdot \frac{z}{1 + \left(a + \frac{b \cdot y}{t}\right)}} \]
      3. lower-/.f64N/A

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

        \[\leadsto \frac{y}{t} \cdot \color{blue}{\frac{z}{1 + \left(a + \frac{b \cdot y}{t}\right)}} \]
      5. +-commutativeN/A

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

        \[\leadsto \frac{y}{t} \cdot \frac{z}{\color{blue}{\left(a + \frac{b \cdot y}{t}\right) + 1}} \]
      7. +-commutativeN/A

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

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

        \[\leadsto \frac{y}{t} \cdot \frac{z}{\color{blue}{\mathsf{fma}\left(b, \frac{y}{t}, a\right)} + 1} \]
      10. lower-/.f6481.5

        \[\leadsto \frac{y}{t} \cdot \frac{z}{\mathsf{fma}\left(b, \color{blue}{\frac{y}{t}}, a\right) + 1} \]
    9. Applied rewrites81.5%

      \[\leadsto \color{blue}{\frac{y}{t} \cdot \frac{z}{\mathsf{fma}\left(b, \frac{y}{t}, a\right) + 1}} \]

    if -inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < 5.00000000000000026e300

    1. Initial program 92.8%

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

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

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

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

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

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

        \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{t}, y \cdot z, x\right)}}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]
      7. inv-powN/A

        \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{{t}^{-1}}, y \cdot z, x\right)}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]
      8. lower-pow.f6492.8

        \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{{t}^{-1}}, y \cdot z, x\right)}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]
      9. lift-*.f64N/A

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

        \[\leadsto \frac{\mathsf{fma}\left({t}^{-1}, \color{blue}{z \cdot y}, x\right)}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]
      11. lower-*.f6492.8

        \[\leadsto \frac{\mathsf{fma}\left({t}^{-1}, \color{blue}{z \cdot y}, x\right)}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]
    4. Applied rewrites92.8%

      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left({t}^{-1}, z \cdot y, x\right)}}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]

    if +inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t)))

    1. Initial program 0.0%

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

      \[\leadsto \color{blue}{\frac{z}{b}} \]
    4. Step-by-step derivation
      1. lower-/.f6497.5

        \[\leadsto \color{blue}{\frac{z}{b}} \]
    5. Applied rewrites97.5%

      \[\leadsto \color{blue}{\frac{z}{b}} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification92.0%

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

Alternative 2: 75.3% accurate, 0.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{z \cdot y}{t} + x\\ t_2 := \frac{t\_1}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\ \mathbf{if}\;t\_2 \leq -\infty:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{y}{t}, b, a\right), t, t\right)} \cdot z\\ \mathbf{elif}\;t\_2 \leq -4 \cdot 10^{-320}:\\ \;\;\;\;\frac{t\_1}{1 + a}\\ \mathbf{elif}\;t\_2 \leq 0:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;t\_2 \leq \infty:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \end{array} \]
(FPCore (x y z t a b)
 :precision binary64
 (let* ((t_1 (+ (/ (* z y) t) x)) (t_2 (/ t_1 (+ (+ 1.0 a) (/ (* b y) t)))))
   (if (<= t_2 (- INFINITY))
     (* (/ y (fma (fma (/ y t) b a) t t)) z)
     (if (<= t_2 -4e-320)
       (/ t_1 (+ 1.0 a))
       (if (<= t_2 0.0)
         (/ (fma t (/ x y) z) b)
         (if (<= t_2 INFINITY) (/ (fma (/ y t) z x) (+ 1.0 a)) (/ z b)))))))
double code(double x, double y, double z, double t, double a, double b) {
	double t_1 = ((z * y) / t) + x;
	double t_2 = t_1 / ((1.0 + a) + ((b * y) / t));
	double tmp;
	if (t_2 <= -((double) INFINITY)) {
		tmp = (y / fma(fma((y / t), b, a), t, t)) * z;
	} else if (t_2 <= -4e-320) {
		tmp = t_1 / (1.0 + a);
	} else if (t_2 <= 0.0) {
		tmp = fma(t, (x / y), z) / b;
	} else if (t_2 <= ((double) INFINITY)) {
		tmp = fma((y / t), z, x) / (1.0 + a);
	} else {
		tmp = z / b;
	}
	return tmp;
}
function code(x, y, z, t, a, b)
	t_1 = Float64(Float64(Float64(z * y) / t) + x)
	t_2 = Float64(t_1 / Float64(Float64(1.0 + a) + Float64(Float64(b * y) / t)))
	tmp = 0.0
	if (t_2 <= Float64(-Inf))
		tmp = Float64(Float64(y / fma(fma(Float64(y / t), b, a), t, t)) * z);
	elseif (t_2 <= -4e-320)
		tmp = Float64(t_1 / Float64(1.0 + a));
	elseif (t_2 <= 0.0)
		tmp = Float64(fma(t, Float64(x / y), z) / b);
	elseif (t_2 <= Inf)
		tmp = Float64(fma(Float64(y / t), z, x) / Float64(1.0 + a));
	else
		tmp = Float64(z / b);
	end
	return tmp
end
code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(N[(z * y), $MachinePrecision] / t), $MachinePrecision] + x), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 / N[(N[(1.0 + a), $MachinePrecision] + N[(N[(b * y), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, (-Infinity)], N[(N[(y / N[(N[(N[(y / t), $MachinePrecision] * b + a), $MachinePrecision] * t + t), $MachinePrecision]), $MachinePrecision] * z), $MachinePrecision], If[LessEqual[t$95$2, -4e-320], N[(t$95$1 / N[(1.0 + a), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.0], N[(N[(t * N[(x / y), $MachinePrecision] + z), $MachinePrecision] / b), $MachinePrecision], If[LessEqual[t$95$2, Infinity], N[(N[(N[(y / t), $MachinePrecision] * z + x), $MachinePrecision] / N[(1.0 + a), $MachinePrecision]), $MachinePrecision], N[(z / b), $MachinePrecision]]]]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_1 := \frac{z \cdot y}{t} + x\\
t_2 := \frac{t\_1}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\
\mathbf{if}\;t\_2 \leq -\infty:\\
\;\;\;\;\frac{y}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{y}{t}, b, a\right), t, t\right)} \cdot z\\

\mathbf{elif}\;t\_2 \leq -4 \cdot 10^{-320}:\\
\;\;\;\;\frac{t\_1}{1 + a}\\

\mathbf{elif}\;t\_2 \leq 0:\\
\;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\

\mathbf{elif}\;t\_2 \leq \infty:\\
\;\;\;\;\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\

\mathbf{else}:\\
\;\;\;\;\frac{z}{b}\\


\end{array}
\end{array}
Derivation
  1. Split input into 5 regimes
  2. if (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -inf.0

    1. Initial program 35.5%

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

      \[\leadsto \color{blue}{\frac{y \cdot z}{t \cdot \left(1 + \left(a + \frac{b \cdot y}{t}\right)\right)}} \]
    4. Step-by-step derivation
      1. associate-*l/N/A

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

        \[\leadsto \color{blue}{\frac{y}{t \cdot \left(1 + \left(a + \frac{b \cdot y}{t}\right)\right)} \cdot z} \]
      3. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{y}{t \cdot \left(1 + \left(a + \frac{b \cdot y}{t}\right)\right)}} \cdot z \]
      4. +-commutativeN/A

        \[\leadsto \frac{y}{t \cdot \color{blue}{\left(\left(a + \frac{b \cdot y}{t}\right) + 1\right)}} \cdot z \]
      5. distribute-rgt-inN/A

        \[\leadsto \frac{y}{\color{blue}{\left(a + \frac{b \cdot y}{t}\right) \cdot t + 1 \cdot t}} \cdot z \]
      6. *-lft-identityN/A

        \[\leadsto \frac{y}{\left(a + \frac{b \cdot y}{t}\right) \cdot t + \color{blue}{t}} \cdot z \]
      7. lower-fma.f64N/A

        \[\leadsto \frac{y}{\color{blue}{\mathsf{fma}\left(a + \frac{b \cdot y}{t}, t, t\right)}} \cdot z \]
      8. +-commutativeN/A

        \[\leadsto \frac{y}{\mathsf{fma}\left(\color{blue}{\frac{b \cdot y}{t} + a}, t, t\right)} \cdot z \]
      9. associate-/l*N/A

        \[\leadsto \frac{y}{\mathsf{fma}\left(\color{blue}{b \cdot \frac{y}{t}} + a, t, t\right)} \cdot z \]
      10. *-commutativeN/A

        \[\leadsto \frac{y}{\mathsf{fma}\left(\color{blue}{\frac{y}{t} \cdot b} + a, t, t\right)} \cdot z \]
      11. lower-fma.f64N/A

        \[\leadsto \frac{y}{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{y}{t}, b, a\right)}, t, t\right)} \cdot z \]
      12. lower-/.f6484.2

        \[\leadsto \frac{y}{\mathsf{fma}\left(\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, b, a\right), t, t\right)} \cdot z \]
    5. Applied rewrites84.2%

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

    if -inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -3.99996e-320

    1. Initial program 99.7%

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

      \[\leadsto \frac{x + \frac{y \cdot z}{t}}{\color{blue}{1 + a}} \]
    4. Step-by-step derivation
      1. lower-+.f6475.6

        \[\leadsto \frac{x + \frac{y \cdot z}{t}}{\color{blue}{1 + a}} \]
    5. Applied rewrites75.6%

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

    if -3.99996e-320 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -0.0

    1. Initial program 55.8%

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

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

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

        \[\leadsto \color{blue}{\frac{z}{b} + \left(\frac{t \cdot x}{b \cdot y} + \left(\mathsf{neg}\left(\frac{t \cdot \left(z \cdot \left(1 + a\right)\right)}{{b}^{2} \cdot y}\right)\right)\right)} \]
      3. sub-negN/A

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

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

        \[\leadsto \frac{z}{b} + \left(\color{blue}{t \cdot \frac{x}{b \cdot y}} - t \cdot \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) \]
      6. distribute-lft-out--N/A

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

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

        \[\leadsto \color{blue}{t \cdot \left(\frac{x}{b \cdot y} - \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) + \frac{z}{b}} \]
    5. Applied rewrites64.5%

      \[\leadsto \color{blue}{\frac{t \cdot \left(\frac{x}{b} - \frac{\frac{\mathsf{fma}\left(a, z, z\right)}{b}}{b}\right)}{y} + \frac{z}{b}} \]
    6. Taylor expanded in b around inf

      \[\leadsto \frac{z + \frac{t \cdot x}{y}}{\color{blue}{b}} \]
    7. Step-by-step derivation
      1. Applied rewrites67.2%

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

      if -0.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < +inf.0

      1. Initial program 88.2%

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

        \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + a}} \]
      4. Step-by-step derivation
        1. lower-/.f64N/A

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

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

          \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + a} \]
        4. lower-fma.f64N/A

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

          \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{1 + a} \]
        6. lower-+.f6479.3

          \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{1 + a}} \]
      5. Applied rewrites79.3%

        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}} \]

      if +inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t)))

      1. Initial program 0.0%

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

        \[\leadsto \color{blue}{\frac{z}{b}} \]
      4. Step-by-step derivation
        1. lower-/.f6497.5

          \[\leadsto \color{blue}{\frac{z}{b}} \]
      5. Applied rewrites97.5%

        \[\leadsto \color{blue}{\frac{z}{b}} \]
    8. Recombined 5 regimes into one program.
    9. Final simplification77.9%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq -\infty:\\ \;\;\;\;\frac{y}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{y}{t}, b, a\right), t, t\right)} \cdot z\\ \mathbf{elif}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq -4 \cdot 10^{-320}:\\ \;\;\;\;\frac{\frac{z \cdot y}{t} + x}{1 + a}\\ \mathbf{elif}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq 0:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq \infty:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \]
    10. Add Preprocessing

    Alternative 3: 88.8% accurate, 0.2× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\ t_2 := \frac{z}{\mathsf{fma}\left(b, \frac{y}{t}, a\right) + 1} \cdot \frac{y}{t}\\ \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{+300}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t\_1 \leq \infty:\\ \;\;\;\;t\_2\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \end{array} \]
    (FPCore (x y z t a b)
     :precision binary64
     (let* ((t_1 (/ (+ (/ (* z y) t) x) (+ (+ 1.0 a) (/ (* b y) t))))
            (t_2 (* (/ z (+ (fma b (/ y t) a) 1.0)) (/ y t))))
       (if (<= t_1 (- INFINITY))
         t_2
         (if (<= t_1 5e+300) t_1 (if (<= t_1 INFINITY) t_2 (/ z b))))))
    double code(double x, double y, double z, double t, double a, double b) {
    	double t_1 = (((z * y) / t) + x) / ((1.0 + a) + ((b * y) / t));
    	double t_2 = (z / (fma(b, (y / t), a) + 1.0)) * (y / t);
    	double tmp;
    	if (t_1 <= -((double) INFINITY)) {
    		tmp = t_2;
    	} else if (t_1 <= 5e+300) {
    		tmp = t_1;
    	} else if (t_1 <= ((double) INFINITY)) {
    		tmp = t_2;
    	} else {
    		tmp = z / b;
    	}
    	return tmp;
    }
    
    function code(x, y, z, t, a, b)
    	t_1 = Float64(Float64(Float64(Float64(z * y) / t) + x) / Float64(Float64(1.0 + a) + Float64(Float64(b * y) / t)))
    	t_2 = Float64(Float64(z / Float64(fma(b, Float64(y / t), a) + 1.0)) * Float64(y / t))
    	tmp = 0.0
    	if (t_1 <= Float64(-Inf))
    		tmp = t_2;
    	elseif (t_1 <= 5e+300)
    		tmp = t_1;
    	elseif (t_1 <= Inf)
    		tmp = t_2;
    	else
    		tmp = Float64(z / b);
    	end
    	return tmp
    end
    
    code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(N[(N[(z * y), $MachinePrecision] / t), $MachinePrecision] + x), $MachinePrecision] / N[(N[(1.0 + a), $MachinePrecision] + N[(N[(b * y), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(z / N[(N[(b * N[(y / t), $MachinePrecision] + a), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision] * N[(y / t), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, (-Infinity)], t$95$2, If[LessEqual[t$95$1, 5e+300], t$95$1, If[LessEqual[t$95$1, Infinity], t$95$2, N[(z / b), $MachinePrecision]]]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_1 := \frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\
    t_2 := \frac{z}{\mathsf{fma}\left(b, \frac{y}{t}, a\right) + 1} \cdot \frac{y}{t}\\
    \mathbf{if}\;t\_1 \leq -\infty:\\
    \;\;\;\;t\_2\\
    
    \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{+300}:\\
    \;\;\;\;t\_1\\
    
    \mathbf{elif}\;t\_1 \leq \infty:\\
    \;\;\;\;t\_2\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{z}{b}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -inf.0 or 5.00000000000000026e300 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < +inf.0

      1. Initial program 30.4%

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

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

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

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

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

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

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

          \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]
        8. lower-/.f6458.8

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

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

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

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

          \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\frac{\color{blue}{y \cdot b}}{t} + \left(a + 1\right)} \]
        13. associate-/l*N/A

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

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

          \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\color{blue}{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}} \]
        16. lower-/.f6458.5

          \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\color{blue}{\frac{b}{t}}, y, a + 1\right)} \]
        17. lift-+.f64N/A

          \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{a + 1}\right)} \]
        18. +-commutativeN/A

          \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{1 + a}\right)} \]
        19. lower-+.f6458.5

          \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{1 + a}\right)} \]
      4. Applied rewrites58.5%

        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}} \]
      5. Step-by-step derivation
        1. lift-/.f64N/A

          \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}} \]
        2. clear-numN/A

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

          \[\leadsto \color{blue}{\frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}}} \]
        4. lift-fma.f64N/A

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

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

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

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

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

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}}} \]
        10. lift-/.f64N/A

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}} \]
        11. lower-/.f6458.6

          \[\leadsto \frac{1}{\color{blue}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}}} \]
        12. lift-+.f64N/A

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{1 + a}\right)}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}} \]
        13. +-commutativeN/A

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{a + 1}\right)}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}} \]
        14. lower-+.f6458.6

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{a + 1}\right)}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}} \]
        15. lift-/.f64N/A

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}} \]
        16. lift-fma.f64N/A

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\color{blue}{\frac{y}{t} \cdot z + x}}} \]
        17. associate-*l/N/A

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\color{blue}{\frac{y \cdot z}{t}} + x}} \]
        18. associate-/l*N/A

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\color{blue}{y \cdot \frac{z}{t}} + x}} \]
        19. lift-/.f64N/A

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{y \cdot \color{blue}{\frac{z}{t}} + x}} \]
        20. lower-fma.f6458.5

          \[\leadsto \frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\color{blue}{\mathsf{fma}\left(y, \frac{z}{t}, x\right)}}} \]
      6. Applied rewrites58.5%

        \[\leadsto \color{blue}{\frac{1}{\frac{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}{\mathsf{fma}\left(y, \frac{z}{t}, x\right)}}} \]
      7. Taylor expanded in x around 0

        \[\leadsto \color{blue}{\frac{y \cdot z}{t \cdot \left(1 + \left(a + \frac{b \cdot y}{t}\right)\right)}} \]
      8. Step-by-step derivation
        1. times-fracN/A

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

          \[\leadsto \color{blue}{\frac{y}{t} \cdot \frac{z}{1 + \left(a + \frac{b \cdot y}{t}\right)}} \]
        3. lower-/.f64N/A

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

          \[\leadsto \frac{y}{t} \cdot \color{blue}{\frac{z}{1 + \left(a + \frac{b \cdot y}{t}\right)}} \]
        5. +-commutativeN/A

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

          \[\leadsto \frac{y}{t} \cdot \frac{z}{\color{blue}{\left(a + \frac{b \cdot y}{t}\right) + 1}} \]
        7. +-commutativeN/A

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

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

          \[\leadsto \frac{y}{t} \cdot \frac{z}{\color{blue}{\mathsf{fma}\left(b, \frac{y}{t}, a\right)} + 1} \]
        10. lower-/.f6481.5

          \[\leadsto \frac{y}{t} \cdot \frac{z}{\mathsf{fma}\left(b, \color{blue}{\frac{y}{t}}, a\right) + 1} \]
      9. Applied rewrites81.5%

        \[\leadsto \color{blue}{\frac{y}{t} \cdot \frac{z}{\mathsf{fma}\left(b, \frac{y}{t}, a\right) + 1}} \]

      if -inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < 5.00000000000000026e300

      1. Initial program 92.8%

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

      if +inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t)))

      1. Initial program 0.0%

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

        \[\leadsto \color{blue}{\frac{z}{b}} \]
      4. Step-by-step derivation
        1. lower-/.f6497.5

          \[\leadsto \color{blue}{\frac{z}{b}} \]
      5. Applied rewrites97.5%

        \[\leadsto \color{blue}{\frac{z}{b}} \]
    3. Recombined 3 regimes into one program.
    4. Final simplification92.0%

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

    Alternative 4: 73.0% accurate, 0.3× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{z \cdot y}{t} + x\\ t_2 := \frac{t\_1}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\ \mathbf{if}\;t\_2 \leq -4 \cdot 10^{-320}:\\ \;\;\;\;\frac{t\_1}{1 + a}\\ \mathbf{elif}\;t\_2 \leq 0:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;t\_2 \leq \infty:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \end{array} \]
    (FPCore (x y z t a b)
     :precision binary64
     (let* ((t_1 (+ (/ (* z y) t) x)) (t_2 (/ t_1 (+ (+ 1.0 a) (/ (* b y) t)))))
       (if (<= t_2 -4e-320)
         (/ t_1 (+ 1.0 a))
         (if (<= t_2 0.0)
           (/ (fma t (/ x y) z) b)
           (if (<= t_2 INFINITY) (/ (fma (/ y t) z x) (+ 1.0 a)) (/ z b))))))
    double code(double x, double y, double z, double t, double a, double b) {
    	double t_1 = ((z * y) / t) + x;
    	double t_2 = t_1 / ((1.0 + a) + ((b * y) / t));
    	double tmp;
    	if (t_2 <= -4e-320) {
    		tmp = t_1 / (1.0 + a);
    	} else if (t_2 <= 0.0) {
    		tmp = fma(t, (x / y), z) / b;
    	} else if (t_2 <= ((double) INFINITY)) {
    		tmp = fma((y / t), z, x) / (1.0 + a);
    	} else {
    		tmp = z / b;
    	}
    	return tmp;
    }
    
    function code(x, y, z, t, a, b)
    	t_1 = Float64(Float64(Float64(z * y) / t) + x)
    	t_2 = Float64(t_1 / Float64(Float64(1.0 + a) + Float64(Float64(b * y) / t)))
    	tmp = 0.0
    	if (t_2 <= -4e-320)
    		tmp = Float64(t_1 / Float64(1.0 + a));
    	elseif (t_2 <= 0.0)
    		tmp = Float64(fma(t, Float64(x / y), z) / b);
    	elseif (t_2 <= Inf)
    		tmp = Float64(fma(Float64(y / t), z, x) / Float64(1.0 + a));
    	else
    		tmp = Float64(z / b);
    	end
    	return tmp
    end
    
    code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(N[(z * y), $MachinePrecision] / t), $MachinePrecision] + x), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 / N[(N[(1.0 + a), $MachinePrecision] + N[(N[(b * y), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$2, -4e-320], N[(t$95$1 / N[(1.0 + a), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$2, 0.0], N[(N[(t * N[(x / y), $MachinePrecision] + z), $MachinePrecision] / b), $MachinePrecision], If[LessEqual[t$95$2, Infinity], N[(N[(N[(y / t), $MachinePrecision] * z + x), $MachinePrecision] / N[(1.0 + a), $MachinePrecision]), $MachinePrecision], N[(z / b), $MachinePrecision]]]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_1 := \frac{z \cdot y}{t} + x\\
    t_2 := \frac{t\_1}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\
    \mathbf{if}\;t\_2 \leq -4 \cdot 10^{-320}:\\
    \;\;\;\;\frac{t\_1}{1 + a}\\
    
    \mathbf{elif}\;t\_2 \leq 0:\\
    \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\
    
    \mathbf{elif}\;t\_2 \leq \infty:\\
    \;\;\;\;\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\
    
    \mathbf{else}:\\
    \;\;\;\;\frac{z}{b}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 4 regimes
    2. if (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -3.99996e-320

      1. Initial program 92.4%

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

        \[\leadsto \frac{x + \frac{y \cdot z}{t}}{\color{blue}{1 + a}} \]
      4. Step-by-step derivation
        1. lower-+.f6470.9

          \[\leadsto \frac{x + \frac{y \cdot z}{t}}{\color{blue}{1 + a}} \]
      5. Applied rewrites70.9%

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

      if -3.99996e-320 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -0.0

      1. Initial program 55.8%

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

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

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

          \[\leadsto \color{blue}{\frac{z}{b} + \left(\frac{t \cdot x}{b \cdot y} + \left(\mathsf{neg}\left(\frac{t \cdot \left(z \cdot \left(1 + a\right)\right)}{{b}^{2} \cdot y}\right)\right)\right)} \]
        3. sub-negN/A

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

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

          \[\leadsto \frac{z}{b} + \left(\color{blue}{t \cdot \frac{x}{b \cdot y}} - t \cdot \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) \]
        6. distribute-lft-out--N/A

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

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

          \[\leadsto \color{blue}{t \cdot \left(\frac{x}{b \cdot y} - \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) + \frac{z}{b}} \]
      5. Applied rewrites64.5%

        \[\leadsto \color{blue}{\frac{t \cdot \left(\frac{x}{b} - \frac{\frac{\mathsf{fma}\left(a, z, z\right)}{b}}{b}\right)}{y} + \frac{z}{b}} \]
      6. Taylor expanded in b around inf

        \[\leadsto \frac{z + \frac{t \cdot x}{y}}{\color{blue}{b}} \]
      7. Step-by-step derivation
        1. Applied rewrites67.2%

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

        if -0.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < +inf.0

        1. Initial program 88.2%

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

          \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + a}} \]
        4. Step-by-step derivation
          1. lower-/.f64N/A

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

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

            \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + a} \]
          4. lower-fma.f64N/A

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

            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{1 + a} \]
          6. lower-+.f6479.3

            \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{1 + a}} \]
        5. Applied rewrites79.3%

          \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}} \]

        if +inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t)))

        1. Initial program 0.0%

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

          \[\leadsto \color{blue}{\frac{z}{b}} \]
        4. Step-by-step derivation
          1. lower-/.f6497.5

            \[\leadsto \color{blue}{\frac{z}{b}} \]
        5. Applied rewrites97.5%

          \[\leadsto \color{blue}{\frac{z}{b}} \]
      8. Recombined 4 regimes into one program.
      9. Final simplification75.3%

        \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq -4 \cdot 10^{-320}:\\ \;\;\;\;\frac{\frac{z \cdot y}{t} + x}{1 + a}\\ \mathbf{elif}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq 0:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq \infty:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \]
      10. Add Preprocessing

      Alternative 5: 74.0% accurate, 0.3× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\ t_2 := \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\ \mathbf{if}\;t\_1 \leq -4 \cdot 10^{-320}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;t\_1 \leq 0:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;t\_1 \leq \infty:\\ \;\;\;\;t\_2\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \end{array} \]
      (FPCore (x y z t a b)
       :precision binary64
       (let* ((t_1 (/ (+ (/ (* z y) t) x) (+ (+ 1.0 a) (/ (* b y) t))))
              (t_2 (/ (fma (/ y t) z x) (+ 1.0 a))))
         (if (<= t_1 -4e-320)
           t_2
           (if (<= t_1 0.0)
             (/ (fma t (/ x y) z) b)
             (if (<= t_1 INFINITY) t_2 (/ z b))))))
      double code(double x, double y, double z, double t, double a, double b) {
      	double t_1 = (((z * y) / t) + x) / ((1.0 + a) + ((b * y) / t));
      	double t_2 = fma((y / t), z, x) / (1.0 + a);
      	double tmp;
      	if (t_1 <= -4e-320) {
      		tmp = t_2;
      	} else if (t_1 <= 0.0) {
      		tmp = fma(t, (x / y), z) / b;
      	} else if (t_1 <= ((double) INFINITY)) {
      		tmp = t_2;
      	} else {
      		tmp = z / b;
      	}
      	return tmp;
      }
      
      function code(x, y, z, t, a, b)
      	t_1 = Float64(Float64(Float64(Float64(z * y) / t) + x) / Float64(Float64(1.0 + a) + Float64(Float64(b * y) / t)))
      	t_2 = Float64(fma(Float64(y / t), z, x) / Float64(1.0 + a))
      	tmp = 0.0
      	if (t_1 <= -4e-320)
      		tmp = t_2;
      	elseif (t_1 <= 0.0)
      		tmp = Float64(fma(t, Float64(x / y), z) / b);
      	elseif (t_1 <= Inf)
      		tmp = t_2;
      	else
      		tmp = Float64(z / b);
      	end
      	return tmp
      end
      
      code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(N[(N[(z * y), $MachinePrecision] / t), $MachinePrecision] + x), $MachinePrecision] / N[(N[(1.0 + a), $MachinePrecision] + N[(N[(b * y), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(N[(y / t), $MachinePrecision] * z + x), $MachinePrecision] / N[(1.0 + a), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, -4e-320], t$95$2, If[LessEqual[t$95$1, 0.0], N[(N[(t * N[(x / y), $MachinePrecision] + z), $MachinePrecision] / b), $MachinePrecision], If[LessEqual[t$95$1, Infinity], t$95$2, N[(z / b), $MachinePrecision]]]]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      t_1 := \frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\
      t_2 := \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\
      \mathbf{if}\;t\_1 \leq -4 \cdot 10^{-320}:\\
      \;\;\;\;t\_2\\
      
      \mathbf{elif}\;t\_1 \leq 0:\\
      \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\
      
      \mathbf{elif}\;t\_1 \leq \infty:\\
      \;\;\;\;t\_2\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{z}{b}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -3.99996e-320 or -0.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < +inf.0

        1. Initial program 90.5%

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

          \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + a}} \]
        4. Step-by-step derivation
          1. lower-/.f64N/A

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

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

            \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + a} \]
          4. lower-fma.f64N/A

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

            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{1 + a} \]
          6. lower-+.f6474.1

            \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{1 + a}} \]
        5. Applied rewrites74.1%

          \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}} \]

        if -3.99996e-320 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -0.0

        1. Initial program 55.8%

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

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

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

            \[\leadsto \color{blue}{\frac{z}{b} + \left(\frac{t \cdot x}{b \cdot y} + \left(\mathsf{neg}\left(\frac{t \cdot \left(z \cdot \left(1 + a\right)\right)}{{b}^{2} \cdot y}\right)\right)\right)} \]
          3. sub-negN/A

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

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

            \[\leadsto \frac{z}{b} + \left(\color{blue}{t \cdot \frac{x}{b \cdot y}} - t \cdot \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) \]
          6. distribute-lft-out--N/A

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

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

            \[\leadsto \color{blue}{t \cdot \left(\frac{x}{b \cdot y} - \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) + \frac{z}{b}} \]
        5. Applied rewrites64.5%

          \[\leadsto \color{blue}{\frac{t \cdot \left(\frac{x}{b} - \frac{\frac{\mathsf{fma}\left(a, z, z\right)}{b}}{b}\right)}{y} + \frac{z}{b}} \]
        6. Taylor expanded in b around inf

          \[\leadsto \frac{z + \frac{t \cdot x}{y}}{\color{blue}{b}} \]
        7. Step-by-step derivation
          1. Applied rewrites67.2%

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

          if +inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t)))

          1. Initial program 0.0%

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

            \[\leadsto \color{blue}{\frac{z}{b}} \]
          4. Step-by-step derivation
            1. lower-/.f6497.5

              \[\leadsto \color{blue}{\frac{z}{b}} \]
          5. Applied rewrites97.5%

            \[\leadsto \color{blue}{\frac{z}{b}} \]
        8. Recombined 3 regimes into one program.
        9. Final simplification75.0%

          \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq -4 \cdot 10^{-320}:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\ \mathbf{elif}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq 0:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq \infty:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \]
        10. Add Preprocessing

        Alternative 6: 66.9% accurate, 0.3× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\ \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;\frac{z}{b}\\ \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{+300}:\\ \;\;\;\;\frac{x}{\mathsf{fma}\left(\frac{y}{t}, b, 1 + a\right)}\\ \mathbf{elif}\;t\_1 \leq \infty:\\ \;\;\;\;\frac{y}{\frac{\mathsf{fma}\left(a, t, t\right)}{z}}\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \end{array} \]
        (FPCore (x y z t a b)
         :precision binary64
         (let* ((t_1 (/ (+ (/ (* z y) t) x) (+ (+ 1.0 a) (/ (* b y) t)))))
           (if (<= t_1 (- INFINITY))
             (/ z b)
             (if (<= t_1 5e+300)
               (/ x (fma (/ y t) b (+ 1.0 a)))
               (if (<= t_1 INFINITY) (/ y (/ (fma a t t) z)) (/ z b))))))
        double code(double x, double y, double z, double t, double a, double b) {
        	double t_1 = (((z * y) / t) + x) / ((1.0 + a) + ((b * y) / t));
        	double tmp;
        	if (t_1 <= -((double) INFINITY)) {
        		tmp = z / b;
        	} else if (t_1 <= 5e+300) {
        		tmp = x / fma((y / t), b, (1.0 + a));
        	} else if (t_1 <= ((double) INFINITY)) {
        		tmp = y / (fma(a, t, t) / z);
        	} else {
        		tmp = z / b;
        	}
        	return tmp;
        }
        
        function code(x, y, z, t, a, b)
        	t_1 = Float64(Float64(Float64(Float64(z * y) / t) + x) / Float64(Float64(1.0 + a) + Float64(Float64(b * y) / t)))
        	tmp = 0.0
        	if (t_1 <= Float64(-Inf))
        		tmp = Float64(z / b);
        	elseif (t_1 <= 5e+300)
        		tmp = Float64(x / fma(Float64(y / t), b, Float64(1.0 + a)));
        	elseif (t_1 <= Inf)
        		tmp = Float64(y / Float64(fma(a, t, t) / z));
        	else
        		tmp = Float64(z / b);
        	end
        	return tmp
        end
        
        code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(N[(N[(z * y), $MachinePrecision] / t), $MachinePrecision] + x), $MachinePrecision] / N[(N[(1.0 + a), $MachinePrecision] + N[(N[(b * y), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, (-Infinity)], N[(z / b), $MachinePrecision], If[LessEqual[t$95$1, 5e+300], N[(x / N[(N[(y / t), $MachinePrecision] * b + N[(1.0 + a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, Infinity], N[(y / N[(N[(a * t + t), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision], N[(z / b), $MachinePrecision]]]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        t_1 := \frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}}\\
        \mathbf{if}\;t\_1 \leq -\infty:\\
        \;\;\;\;\frac{z}{b}\\
        
        \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{+300}:\\
        \;\;\;\;\frac{x}{\mathsf{fma}\left(\frac{y}{t}, b, 1 + a\right)}\\
        
        \mathbf{elif}\;t\_1 \leq \infty:\\
        \;\;\;\;\frac{y}{\frac{\mathsf{fma}\left(a, t, t\right)}{z}}\\
        
        \mathbf{else}:\\
        \;\;\;\;\frac{z}{b}\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < -inf.0 or +inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t)))

          1. Initial program 14.4%

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

            \[\leadsto \color{blue}{\frac{z}{b}} \]
          4. Step-by-step derivation
            1. lower-/.f6480.6

              \[\leadsto \color{blue}{\frac{z}{b}} \]
          5. Applied rewrites80.6%

            \[\leadsto \color{blue}{\frac{z}{b}} \]

          if -inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < 5.00000000000000026e300

          1. Initial program 92.8%

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

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

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

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

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

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

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

              \[\leadsto \frac{x}{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, b, 1 + a\right)}} \]
            7. lower-/.f64N/A

              \[\leadsto \frac{x}{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, b, 1 + a\right)} \]
            8. lower-+.f6465.5

              \[\leadsto \frac{x}{\mathsf{fma}\left(\frac{y}{t}, b, \color{blue}{1 + a}\right)} \]
          5. Applied rewrites65.5%

            \[\leadsto \color{blue}{\frac{x}{\mathsf{fma}\left(\frac{y}{t}, b, 1 + a\right)}} \]

          if 5.00000000000000026e300 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < +inf.0

          1. Initial program 25.8%

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

            \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + a}} \]
          4. Step-by-step derivation
            1. lower-/.f64N/A

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

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

              \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + a} \]
            4. lower-fma.f64N/A

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

              \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{1 + a} \]
            6. lower-+.f6459.7

              \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{1 + a}} \]
          5. Applied rewrites59.7%

            \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}} \]
          6. Taylor expanded in x around 0

            \[\leadsto \frac{y \cdot z}{\color{blue}{t \cdot \left(1 + a\right)}} \]
          7. Step-by-step derivation
            1. Applied rewrites58.8%

              \[\leadsto y \cdot \color{blue}{\frac{z}{\mathsf{fma}\left(a, t, t\right)}} \]
            2. Step-by-step derivation
              1. Applied rewrites58.8%

                \[\leadsto \frac{y}{\frac{\mathsf{fma}\left(a, t, t\right)}{\color{blue}{z}}} \]
            3. Recombined 3 regimes into one program.
            4. Final simplification67.0%

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

            Alternative 7: 84.1% accurate, 0.5× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq \infty:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{z}{b}\\ \end{array} \end{array} \]
            (FPCore (x y z t a b)
             :precision binary64
             (if (<= (/ (+ (/ (* z y) t) x) (+ (+ 1.0 a) (/ (* b y) t))) INFINITY)
               (/ (fma (/ z t) y x) (fma (/ b t) y (+ 1.0 a)))
               (/ z b)))
            double code(double x, double y, double z, double t, double a, double b) {
            	double tmp;
            	if (((((z * y) / t) + x) / ((1.0 + a) + ((b * y) / t))) <= ((double) INFINITY)) {
            		tmp = fma((z / t), y, x) / fma((b / t), y, (1.0 + a));
            	} else {
            		tmp = z / b;
            	}
            	return tmp;
            }
            
            function code(x, y, z, t, a, b)
            	tmp = 0.0
            	if (Float64(Float64(Float64(Float64(z * y) / t) + x) / Float64(Float64(1.0 + a) + Float64(Float64(b * y) / t))) <= Inf)
            		tmp = Float64(fma(Float64(z / t), y, x) / fma(Float64(b / t), y, Float64(1.0 + a)));
            	else
            		tmp = Float64(z / b);
            	end
            	return tmp
            end
            
            code[x_, y_, z_, t_, a_, b_] := If[LessEqual[N[(N[(N[(N[(z * y), $MachinePrecision] / t), $MachinePrecision] + x), $MachinePrecision] / N[(N[(1.0 + a), $MachinePrecision] + N[(N[(b * y), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], Infinity], N[(N[(N[(z / t), $MachinePrecision] * y + x), $MachinePrecision] / N[(N[(b / t), $MachinePrecision] * y + N[(1.0 + a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(z / b), $MachinePrecision]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            \mathbf{if}\;\frac{\frac{z \cdot y}{t} + x}{\left(1 + a\right) + \frac{b \cdot y}{t}} \leq \infty:\\
            \;\;\;\;\frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;\frac{z}{b}\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 2 regimes
            2. if (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t))) < +inf.0

              1. Initial program 85.7%

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

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

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

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

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

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

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

                  \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}}{\left(a + 1\right) + \frac{y \cdot b}{t}} \]
                8. lower-/.f6481.3

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

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

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

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

                  \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\frac{\color{blue}{y \cdot b}}{t} + \left(a + 1\right)} \]
                13. associate-/l*N/A

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

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

                  \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\color{blue}{\mathsf{fma}\left(\frac{b}{t}, y, a + 1\right)}} \]
                16. lower-/.f6479.2

                  \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\color{blue}{\frac{b}{t}}, y, a + 1\right)} \]
                17. lift-+.f64N/A

                  \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{a + 1}\right)} \]
                18. +-commutativeN/A

                  \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{1 + a}\right)} \]
                19. lower-+.f6479.2

                  \[\leadsto \frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, \color{blue}{1 + a}\right)} \]
              4. Applied rewrites79.2%

                \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{z}{t}, y, x\right)}{\mathsf{fma}\left(\frac{b}{t}, y, 1 + a\right)}} \]

              if +inf.0 < (/.f64 (+.f64 x (/.f64 (*.f64 y z) t)) (+.f64 (+.f64 a #s(literal 1 binary64)) (/.f64 (*.f64 y b) t)))

              1. Initial program 0.0%

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

                \[\leadsto \color{blue}{\frac{z}{b}} \]
              4. Step-by-step derivation
                1. lower-/.f6497.5

                  \[\leadsto \color{blue}{\frac{z}{b}} \]
              5. Applied rewrites97.5%

                \[\leadsto \color{blue}{\frac{z}{b}} \]
            3. Recombined 2 regimes into one program.
            4. Final simplification80.6%

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

            Alternative 8: 69.7% accurate, 0.8× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{y}{t}, z, x\right)\\ \mathbf{if}\;a \leq -8.8 \cdot 10^{+26}:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{1}{\frac{t}{y}}, z, x\right)}{1 + a}\\ \mathbf{elif}\;a \leq -8.8 \cdot 10^{-27}:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;a \leq 1.3 \cdot 10^{-8}:\\ \;\;\;\;\frac{t\_1}{\mathsf{fma}\left(\frac{y}{t}, b, 1\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{t\_1}{1 + a}\\ \end{array} \end{array} \]
            (FPCore (x y z t a b)
             :precision binary64
             (let* ((t_1 (fma (/ y t) z x)))
               (if (<= a -8.8e+26)
                 (/ (fma (/ 1.0 (/ t y)) z x) (+ 1.0 a))
                 (if (<= a -8.8e-27)
                   (/ (fma t (/ x y) z) b)
                   (if (<= a 1.3e-8) (/ t_1 (fma (/ y t) b 1.0)) (/ t_1 (+ 1.0 a)))))))
            double code(double x, double y, double z, double t, double a, double b) {
            	double t_1 = fma((y / t), z, x);
            	double tmp;
            	if (a <= -8.8e+26) {
            		tmp = fma((1.0 / (t / y)), z, x) / (1.0 + a);
            	} else if (a <= -8.8e-27) {
            		tmp = fma(t, (x / y), z) / b;
            	} else if (a <= 1.3e-8) {
            		tmp = t_1 / fma((y / t), b, 1.0);
            	} else {
            		tmp = t_1 / (1.0 + a);
            	}
            	return tmp;
            }
            
            function code(x, y, z, t, a, b)
            	t_1 = fma(Float64(y / t), z, x)
            	tmp = 0.0
            	if (a <= -8.8e+26)
            		tmp = Float64(fma(Float64(1.0 / Float64(t / y)), z, x) / Float64(1.0 + a));
            	elseif (a <= -8.8e-27)
            		tmp = Float64(fma(t, Float64(x / y), z) / b);
            	elseif (a <= 1.3e-8)
            		tmp = Float64(t_1 / fma(Float64(y / t), b, 1.0));
            	else
            		tmp = Float64(t_1 / Float64(1.0 + a));
            	end
            	return tmp
            end
            
            code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(y / t), $MachinePrecision] * z + x), $MachinePrecision]}, If[LessEqual[a, -8.8e+26], N[(N[(N[(1.0 / N[(t / y), $MachinePrecision]), $MachinePrecision] * z + x), $MachinePrecision] / N[(1.0 + a), $MachinePrecision]), $MachinePrecision], If[LessEqual[a, -8.8e-27], N[(N[(t * N[(x / y), $MachinePrecision] + z), $MachinePrecision] / b), $MachinePrecision], If[LessEqual[a, 1.3e-8], N[(t$95$1 / N[(N[(y / t), $MachinePrecision] * b + 1.0), $MachinePrecision]), $MachinePrecision], N[(t$95$1 / N[(1.0 + a), $MachinePrecision]), $MachinePrecision]]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_1 := \mathsf{fma}\left(\frac{y}{t}, z, x\right)\\
            \mathbf{if}\;a \leq -8.8 \cdot 10^{+26}:\\
            \;\;\;\;\frac{\mathsf{fma}\left(\frac{1}{\frac{t}{y}}, z, x\right)}{1 + a}\\
            
            \mathbf{elif}\;a \leq -8.8 \cdot 10^{-27}:\\
            \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\
            
            \mathbf{elif}\;a \leq 1.3 \cdot 10^{-8}:\\
            \;\;\;\;\frac{t\_1}{\mathsf{fma}\left(\frac{y}{t}, b, 1\right)}\\
            
            \mathbf{else}:\\
            \;\;\;\;\frac{t\_1}{1 + a}\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 4 regimes
            2. if a < -8.80000000000000028e26

              1. Initial program 78.1%

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

                \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + a}} \]
              4. Step-by-step derivation
                1. lower-/.f64N/A

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

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

                  \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + a} \]
                4. lower-fma.f64N/A

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

                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{1 + a} \]
                6. lower-+.f6469.1

                  \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{1 + a}} \]
              5. Applied rewrites69.1%

                \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}} \]
              6. Step-by-step derivation
                1. Applied rewrites69.2%

                  \[\leadsto \frac{\mathsf{fma}\left(\frac{1}{\frac{t}{y}}, z, x\right)}{1 + a} \]

                if -8.80000000000000028e26 < a < -8.79999999999999948e-27

                1. Initial program 62.0%

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

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

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

                    \[\leadsto \color{blue}{\frac{z}{b} + \left(\frac{t \cdot x}{b \cdot y} + \left(\mathsf{neg}\left(\frac{t \cdot \left(z \cdot \left(1 + a\right)\right)}{{b}^{2} \cdot y}\right)\right)\right)} \]
                  3. sub-negN/A

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

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

                    \[\leadsto \frac{z}{b} + \left(\color{blue}{t \cdot \frac{x}{b \cdot y}} - t \cdot \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) \]
                  6. distribute-lft-out--N/A

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

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

                    \[\leadsto \color{blue}{t \cdot \left(\frac{x}{b \cdot y} - \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) + \frac{z}{b}} \]
                5. Applied rewrites77.2%

                  \[\leadsto \color{blue}{\frac{t \cdot \left(\frac{x}{b} - \frac{\frac{\mathsf{fma}\left(a, z, z\right)}{b}}{b}\right)}{y} + \frac{z}{b}} \]
                6. Taylor expanded in b around inf

                  \[\leadsto \frac{z + \frac{t \cdot x}{y}}{\color{blue}{b}} \]
                7. Step-by-step derivation
                  1. Applied rewrites84.7%

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

                  if -8.79999999999999948e-27 < a < 1.3000000000000001e-8

                  1. Initial program 82.9%

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

                    \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + \frac{b \cdot y}{t}}} \]
                  4. Step-by-step derivation
                    1. lower-/.f64N/A

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

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

                      \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + \frac{b \cdot y}{t}} \]
                    4. lower-fma.f64N/A

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

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

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

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

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

                      \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, b, 1\right)}} \]
                    10. lower-/.f6484.2

                      \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, b, 1\right)} \]
                  5. Applied rewrites84.2%

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

                  if 1.3000000000000001e-8 < a

                  1. Initial program 77.7%

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

                    \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + a}} \]
                  4. Step-by-step derivation
                    1. lower-/.f64N/A

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

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

                      \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + a} \]
                    4. lower-fma.f64N/A

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

                      \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{1 + a} \]
                    6. lower-+.f6469.8

                      \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{1 + a}} \]
                  5. Applied rewrites69.8%

                    \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1 + a}} \]
                8. Recombined 4 regimes into one program.
                9. Add Preprocessing

                Alternative 9: 57.3% accurate, 1.1× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} t_1 := \mathsf{fma}\left(\frac{y}{t}, z, x\right)\\ t_2 := \frac{t\_1}{a}\\ \mathbf{if}\;a \leq -8.8 \cdot 10^{+26}:\\ \;\;\;\;t\_2\\ \mathbf{elif}\;a \leq -1.3 \cdot 10^{-28}:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;a \leq 4.4 \cdot 10^{-7}:\\ \;\;\;\;\frac{t\_1}{1}\\ \mathbf{else}:\\ \;\;\;\;t\_2\\ \end{array} \end{array} \]
                (FPCore (x y z t a b)
                 :precision binary64
                 (let* ((t_1 (fma (/ y t) z x)) (t_2 (/ t_1 a)))
                   (if (<= a -8.8e+26)
                     t_2
                     (if (<= a -1.3e-28)
                       (/ (fma t (/ x y) z) b)
                       (if (<= a 4.4e-7) (/ t_1 1.0) t_2)))))
                double code(double x, double y, double z, double t, double a, double b) {
                	double t_1 = fma((y / t), z, x);
                	double t_2 = t_1 / a;
                	double tmp;
                	if (a <= -8.8e+26) {
                		tmp = t_2;
                	} else if (a <= -1.3e-28) {
                		tmp = fma(t, (x / y), z) / b;
                	} else if (a <= 4.4e-7) {
                		tmp = t_1 / 1.0;
                	} else {
                		tmp = t_2;
                	}
                	return tmp;
                }
                
                function code(x, y, z, t, a, b)
                	t_1 = fma(Float64(y / t), z, x)
                	t_2 = Float64(t_1 / a)
                	tmp = 0.0
                	if (a <= -8.8e+26)
                		tmp = t_2;
                	elseif (a <= -1.3e-28)
                		tmp = Float64(fma(t, Float64(x / y), z) / b);
                	elseif (a <= 4.4e-7)
                		tmp = Float64(t_1 / 1.0);
                	else
                		tmp = t_2;
                	end
                	return tmp
                end
                
                code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(y / t), $MachinePrecision] * z + x), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 / a), $MachinePrecision]}, If[LessEqual[a, -8.8e+26], t$95$2, If[LessEqual[a, -1.3e-28], N[(N[(t * N[(x / y), $MachinePrecision] + z), $MachinePrecision] / b), $MachinePrecision], If[LessEqual[a, 4.4e-7], N[(t$95$1 / 1.0), $MachinePrecision], t$95$2]]]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_1 := \mathsf{fma}\left(\frac{y}{t}, z, x\right)\\
                t_2 := \frac{t\_1}{a}\\
                \mathbf{if}\;a \leq -8.8 \cdot 10^{+26}:\\
                \;\;\;\;t\_2\\
                
                \mathbf{elif}\;a \leq -1.3 \cdot 10^{-28}:\\
                \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\
                
                \mathbf{elif}\;a \leq 4.4 \cdot 10^{-7}:\\
                \;\;\;\;\frac{t\_1}{1}\\
                
                \mathbf{else}:\\
                \;\;\;\;t\_2\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 3 regimes
                2. if a < -8.80000000000000028e26 or 4.4000000000000002e-7 < a

                  1. Initial program 77.9%

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

                    \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{a}} \]
                  4. Step-by-step derivation
                    1. lower-/.f64N/A

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

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

                      \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{a} \]
                    4. lower-fma.f64N/A

                      \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}}{a} \]
                    5. lower-/.f6468.3

                      \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{a} \]
                  5. Applied rewrites68.3%

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

                  if -8.80000000000000028e26 < a < -1.3e-28

                  1. Initial program 62.0%

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

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

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

                      \[\leadsto \color{blue}{\frac{z}{b} + \left(\frac{t \cdot x}{b \cdot y} + \left(\mathsf{neg}\left(\frac{t \cdot \left(z \cdot \left(1 + a\right)\right)}{{b}^{2} \cdot y}\right)\right)\right)} \]
                    3. sub-negN/A

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

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

                      \[\leadsto \frac{z}{b} + \left(\color{blue}{t \cdot \frac{x}{b \cdot y}} - t \cdot \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) \]
                    6. distribute-lft-out--N/A

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

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

                      \[\leadsto \color{blue}{t \cdot \left(\frac{x}{b \cdot y} - \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) + \frac{z}{b}} \]
                  5. Applied rewrites77.2%

                    \[\leadsto \color{blue}{\frac{t \cdot \left(\frac{x}{b} - \frac{\frac{\mathsf{fma}\left(a, z, z\right)}{b}}{b}\right)}{y} + \frac{z}{b}} \]
                  6. Taylor expanded in b around inf

                    \[\leadsto \frac{z + \frac{t \cdot x}{y}}{\color{blue}{b}} \]
                  7. Step-by-step derivation
                    1. Applied rewrites84.7%

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

                    if -1.3e-28 < a < 4.4000000000000002e-7

                    1. Initial program 82.9%

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

                      \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + \frac{b \cdot y}{t}}} \]
                    4. Step-by-step derivation
                      1. lower-/.f64N/A

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

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

                        \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + \frac{b \cdot y}{t}} \]
                      4. lower-fma.f64N/A

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

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

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

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

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

                        \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, b, 1\right)}} \]
                      10. lower-/.f6484.2

                        \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, b, 1\right)} \]
                    5. Applied rewrites84.2%

                      \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\mathsf{fma}\left(\frac{y}{t}, b, 1\right)}} \]
                    6. Taylor expanded in y around 0

                      \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1} \]
                    7. Step-by-step derivation
                      1. Applied rewrites63.0%

                        \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{1} \]
                    8. Recombined 3 regimes into one program.
                    9. Add Preprocessing

                    Alternative 10: 56.9% accurate, 1.1× speedup?

                    \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{a}\\ \mathbf{if}\;a \leq -8.8 \cdot 10^{+26}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;a \leq -1.3 \cdot 10^{-28}:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{elif}\;a \leq 4.4 \cdot 10^{-7}:\\ \;\;\;\;x - \frac{\left(-y\right) \cdot z}{t}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                    (FPCore (x y z t a b)
                     :precision binary64
                     (let* ((t_1 (/ (fma (/ y t) z x) a)))
                       (if (<= a -8.8e+26)
                         t_1
                         (if (<= a -1.3e-28)
                           (/ (fma t (/ x y) z) b)
                           (if (<= a 4.4e-7) (- x (/ (* (- y) z) t)) t_1)))))
                    double code(double x, double y, double z, double t, double a, double b) {
                    	double t_1 = fma((y / t), z, x) / a;
                    	double tmp;
                    	if (a <= -8.8e+26) {
                    		tmp = t_1;
                    	} else if (a <= -1.3e-28) {
                    		tmp = fma(t, (x / y), z) / b;
                    	} else if (a <= 4.4e-7) {
                    		tmp = x - ((-y * z) / t);
                    	} else {
                    		tmp = t_1;
                    	}
                    	return tmp;
                    }
                    
                    function code(x, y, z, t, a, b)
                    	t_1 = Float64(fma(Float64(y / t), z, x) / a)
                    	tmp = 0.0
                    	if (a <= -8.8e+26)
                    		tmp = t_1;
                    	elseif (a <= -1.3e-28)
                    		tmp = Float64(fma(t, Float64(x / y), z) / b);
                    	elseif (a <= 4.4e-7)
                    		tmp = Float64(x - Float64(Float64(Float64(-y) * z) / t));
                    	else
                    		tmp = t_1;
                    	end
                    	return tmp
                    end
                    
                    code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(N[(y / t), $MachinePrecision] * z + x), $MachinePrecision] / a), $MachinePrecision]}, If[LessEqual[a, -8.8e+26], t$95$1, If[LessEqual[a, -1.3e-28], N[(N[(t * N[(x / y), $MachinePrecision] + z), $MachinePrecision] / b), $MachinePrecision], If[LessEqual[a, 4.4e-7], N[(x - N[(N[((-y) * z), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision], t$95$1]]]]
                    
                    \begin{array}{l}
                    
                    \\
                    \begin{array}{l}
                    t_1 := \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{a}\\
                    \mathbf{if}\;a \leq -8.8 \cdot 10^{+26}:\\
                    \;\;\;\;t\_1\\
                    
                    \mathbf{elif}\;a \leq -1.3 \cdot 10^{-28}:\\
                    \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\
                    
                    \mathbf{elif}\;a \leq 4.4 \cdot 10^{-7}:\\
                    \;\;\;\;x - \frac{\left(-y\right) \cdot z}{t}\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;t\_1\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 3 regimes
                    2. if a < -8.80000000000000028e26 or 4.4000000000000002e-7 < a

                      1. Initial program 77.9%

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

                        \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{a}} \]
                      4. Step-by-step derivation
                        1. lower-/.f64N/A

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

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

                          \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{a} \]
                        4. lower-fma.f64N/A

                          \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}}{a} \]
                        5. lower-/.f6468.3

                          \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{a} \]
                      5. Applied rewrites68.3%

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

                      if -8.80000000000000028e26 < a < -1.3e-28

                      1. Initial program 62.0%

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

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

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

                          \[\leadsto \color{blue}{\frac{z}{b} + \left(\frac{t \cdot x}{b \cdot y} + \left(\mathsf{neg}\left(\frac{t \cdot \left(z \cdot \left(1 + a\right)\right)}{{b}^{2} \cdot y}\right)\right)\right)} \]
                        3. sub-negN/A

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

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

                          \[\leadsto \frac{z}{b} + \left(\color{blue}{t \cdot \frac{x}{b \cdot y}} - t \cdot \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) \]
                        6. distribute-lft-out--N/A

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

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

                          \[\leadsto \color{blue}{t \cdot \left(\frac{x}{b \cdot y} - \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) + \frac{z}{b}} \]
                      5. Applied rewrites77.2%

                        \[\leadsto \color{blue}{\frac{t \cdot \left(\frac{x}{b} - \frac{\frac{\mathsf{fma}\left(a, z, z\right)}{b}}{b}\right)}{y} + \frac{z}{b}} \]
                      6. Taylor expanded in b around inf

                        \[\leadsto \frac{z + \frac{t \cdot x}{y}}{\color{blue}{b}} \]
                      7. Step-by-step derivation
                        1. Applied rewrites84.7%

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

                        if -1.3e-28 < a < 4.4000000000000002e-7

                        1. Initial program 82.9%

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

                          \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{1 + \frac{b \cdot y}{t}}} \]
                        4. Step-by-step derivation
                          1. lower-/.f64N/A

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

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

                            \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{1 + \frac{b \cdot y}{t}} \]
                          4. lower-fma.f64N/A

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

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

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

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

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

                            \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, b, 1\right)}} \]
                          10. lower-/.f6484.2

                            \[\leadsto \frac{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, b, 1\right)} \]
                        5. Applied rewrites84.2%

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

                          \[\leadsto x + \color{blue}{-1 \cdot \frac{-1 \cdot \left(y \cdot z\right) - -1 \cdot \left(b \cdot \left(x \cdot y\right)\right)}{t}} \]
                        7. Step-by-step derivation
                          1. Applied rewrites57.8%

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

                            \[\leadsto x - \frac{-1 \cdot \left(y \cdot z\right)}{t} \]
                          3. Step-by-step derivation
                            1. Applied rewrites63.0%

                              \[\leadsto x - \frac{\left(-y\right) \cdot z}{t} \]
                          4. Recombined 3 regimes into one program.
                          5. Add Preprocessing

                          Alternative 11: 57.5% accurate, 1.3× speedup?

                          \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{x}{1 + a}\\ \mathbf{if}\;t \leq -1.15 \cdot 10^{-147}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t \leq 4.5 \cdot 10^{-34}:\\ \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                          (FPCore (x y z t a b)
                           :precision binary64
                           (let* ((t_1 (/ x (+ 1.0 a))))
                             (if (<= t -1.15e-147) t_1 (if (<= t 4.5e-34) (/ (fma t (/ x y) z) b) t_1))))
                          double code(double x, double y, double z, double t, double a, double b) {
                          	double t_1 = x / (1.0 + a);
                          	double tmp;
                          	if (t <= -1.15e-147) {
                          		tmp = t_1;
                          	} else if (t <= 4.5e-34) {
                          		tmp = fma(t, (x / y), z) / b;
                          	} else {
                          		tmp = t_1;
                          	}
                          	return tmp;
                          }
                          
                          function code(x, y, z, t, a, b)
                          	t_1 = Float64(x / Float64(1.0 + a))
                          	tmp = 0.0
                          	if (t <= -1.15e-147)
                          		tmp = t_1;
                          	elseif (t <= 4.5e-34)
                          		tmp = Float64(fma(t, Float64(x / y), z) / b);
                          	else
                          		tmp = t_1;
                          	end
                          	return tmp
                          end
                          
                          code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(x / N[(1.0 + a), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t, -1.15e-147], t$95$1, If[LessEqual[t, 4.5e-34], N[(N[(t * N[(x / y), $MachinePrecision] + z), $MachinePrecision] / b), $MachinePrecision], t$95$1]]]
                          
                          \begin{array}{l}
                          
                          \\
                          \begin{array}{l}
                          t_1 := \frac{x}{1 + a}\\
                          \mathbf{if}\;t \leq -1.15 \cdot 10^{-147}:\\
                          \;\;\;\;t\_1\\
                          
                          \mathbf{elif}\;t \leq 4.5 \cdot 10^{-34}:\\
                          \;\;\;\;\frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{b}\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;t\_1\\
                          
                          
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 2 regimes
                          2. if t < -1.14999999999999995e-147 or 4.50000000000000042e-34 < t

                            1. Initial program 83.9%

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

                              \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                            4. Step-by-step derivation
                              1. lower-/.f64N/A

                                \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                              2. lower-+.f6463.4

                                \[\leadsto \frac{x}{\color{blue}{1 + a}} \]
                            5. Applied rewrites63.4%

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

                            if -1.14999999999999995e-147 < t < 4.50000000000000042e-34

                            1. Initial program 71.3%

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

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

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

                                \[\leadsto \color{blue}{\frac{z}{b} + \left(\frac{t \cdot x}{b \cdot y} + \left(\mathsf{neg}\left(\frac{t \cdot \left(z \cdot \left(1 + a\right)\right)}{{b}^{2} \cdot y}\right)\right)\right)} \]
                              3. sub-negN/A

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

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

                                \[\leadsto \frac{z}{b} + \left(\color{blue}{t \cdot \frac{x}{b \cdot y}} - t \cdot \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) \]
                              6. distribute-lft-out--N/A

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

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

                                \[\leadsto \color{blue}{t \cdot \left(\frac{x}{b \cdot y} - \frac{z \cdot \left(1 + a\right)}{{b}^{2} \cdot y}\right) + \frac{z}{b}} \]
                            5. Applied rewrites51.1%

                              \[\leadsto \color{blue}{\frac{t \cdot \left(\frac{x}{b} - \frac{\frac{\mathsf{fma}\left(a, z, z\right)}{b}}{b}\right)}{y} + \frac{z}{b}} \]
                            6. Taylor expanded in b around inf

                              \[\leadsto \frac{z + \frac{t \cdot x}{y}}{\color{blue}{b}} \]
                            7. Step-by-step derivation
                              1. Applied rewrites59.6%

                                \[\leadsto \frac{\mathsf{fma}\left(t, \frac{x}{y}, z\right)}{\color{blue}{b}} \]
                            8. Recombined 2 regimes into one program.
                            9. Add Preprocessing

                            Alternative 12: 41.8% accurate, 1.8× speedup?

                            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \leq -8.8 \cdot 10^{+26}:\\ \;\;\;\;\frac{x}{a}\\ \mathbf{elif}\;a \leq -1.3 \cdot 10^{-28}:\\ \;\;\;\;\frac{z}{b}\\ \mathbf{elif}\;a \leq 0.76:\\ \;\;\;\;\left(1 - a\right) \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{a}\\ \end{array} \end{array} \]
                            (FPCore (x y z t a b)
                             :precision binary64
                             (if (<= a -8.8e+26)
                               (/ x a)
                               (if (<= a -1.3e-28) (/ z b) (if (<= a 0.76) (* (- 1.0 a) x) (/ x a)))))
                            double code(double x, double y, double z, double t, double a, double b) {
                            	double tmp;
                            	if (a <= -8.8e+26) {
                            		tmp = x / a;
                            	} else if (a <= -1.3e-28) {
                            		tmp = z / b;
                            	} else if (a <= 0.76) {
                            		tmp = (1.0 - a) * x;
                            	} else {
                            		tmp = x / a;
                            	}
                            	return tmp;
                            }
                            
                            real(8) function code(x, y, z, t, a, b)
                                real(8), intent (in) :: x
                                real(8), intent (in) :: y
                                real(8), intent (in) :: z
                                real(8), intent (in) :: t
                                real(8), intent (in) :: a
                                real(8), intent (in) :: b
                                real(8) :: tmp
                                if (a <= (-8.8d+26)) then
                                    tmp = x / a
                                else if (a <= (-1.3d-28)) then
                                    tmp = z / b
                                else if (a <= 0.76d0) then
                                    tmp = (1.0d0 - a) * x
                                else
                                    tmp = x / a
                                end if
                                code = tmp
                            end function
                            
                            public static double code(double x, double y, double z, double t, double a, double b) {
                            	double tmp;
                            	if (a <= -8.8e+26) {
                            		tmp = x / a;
                            	} else if (a <= -1.3e-28) {
                            		tmp = z / b;
                            	} else if (a <= 0.76) {
                            		tmp = (1.0 - a) * x;
                            	} else {
                            		tmp = x / a;
                            	}
                            	return tmp;
                            }
                            
                            def code(x, y, z, t, a, b):
                            	tmp = 0
                            	if a <= -8.8e+26:
                            		tmp = x / a
                            	elif a <= -1.3e-28:
                            		tmp = z / b
                            	elif a <= 0.76:
                            		tmp = (1.0 - a) * x
                            	else:
                            		tmp = x / a
                            	return tmp
                            
                            function code(x, y, z, t, a, b)
                            	tmp = 0.0
                            	if (a <= -8.8e+26)
                            		tmp = Float64(x / a);
                            	elseif (a <= -1.3e-28)
                            		tmp = Float64(z / b);
                            	elseif (a <= 0.76)
                            		tmp = Float64(Float64(1.0 - a) * x);
                            	else
                            		tmp = Float64(x / a);
                            	end
                            	return tmp
                            end
                            
                            function tmp_2 = code(x, y, z, t, a, b)
                            	tmp = 0.0;
                            	if (a <= -8.8e+26)
                            		tmp = x / a;
                            	elseif (a <= -1.3e-28)
                            		tmp = z / b;
                            	elseif (a <= 0.76)
                            		tmp = (1.0 - a) * x;
                            	else
                            		tmp = x / a;
                            	end
                            	tmp_2 = tmp;
                            end
                            
                            code[x_, y_, z_, t_, a_, b_] := If[LessEqual[a, -8.8e+26], N[(x / a), $MachinePrecision], If[LessEqual[a, -1.3e-28], N[(z / b), $MachinePrecision], If[LessEqual[a, 0.76], N[(N[(1.0 - a), $MachinePrecision] * x), $MachinePrecision], N[(x / a), $MachinePrecision]]]]
                            
                            \begin{array}{l}
                            
                            \\
                            \begin{array}{l}
                            \mathbf{if}\;a \leq -8.8 \cdot 10^{+26}:\\
                            \;\;\;\;\frac{x}{a}\\
                            
                            \mathbf{elif}\;a \leq -1.3 \cdot 10^{-28}:\\
                            \;\;\;\;\frac{z}{b}\\
                            
                            \mathbf{elif}\;a \leq 0.76:\\
                            \;\;\;\;\left(1 - a\right) \cdot x\\
                            
                            \mathbf{else}:\\
                            \;\;\;\;\frac{x}{a}\\
                            
                            
                            \end{array}
                            \end{array}
                            
                            Derivation
                            1. Split input into 3 regimes
                            2. if a < -8.80000000000000028e26 or 0.76000000000000001 < a

                              1. Initial program 78.5%

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

                                \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{a}} \]
                              4. Step-by-step derivation
                                1. lower-/.f64N/A

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

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

                                  \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{a} \]
                                4. lower-fma.f64N/A

                                  \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}}{a} \]
                                5. lower-/.f6468.8

                                  \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{a} \]
                              5. Applied rewrites68.8%

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

                                \[\leadsto \frac{x}{\color{blue}{a}} \]
                              7. Step-by-step derivation
                                1. Applied rewrites50.8%

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

                                if -8.80000000000000028e26 < a < -1.3e-28

                                1. Initial program 62.0%

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

                                  \[\leadsto \color{blue}{\frac{z}{b}} \]
                                4. Step-by-step derivation
                                  1. lower-/.f6477.8

                                    \[\leadsto \color{blue}{\frac{z}{b}} \]
                                5. Applied rewrites77.8%

                                  \[\leadsto \color{blue}{\frac{z}{b}} \]

                                if -1.3e-28 < a < 0.76000000000000001

                                1. Initial program 82.2%

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

                                  \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                4. Step-by-step derivation
                                  1. lower-/.f64N/A

                                    \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                  2. lower-+.f6446.5

                                    \[\leadsto \frac{x}{\color{blue}{1 + a}} \]
                                5. Applied rewrites46.5%

                                  \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                6. Taylor expanded in a around 0

                                  \[\leadsto x + \color{blue}{-1 \cdot \left(a \cdot x\right)} \]
                                7. Step-by-step derivation
                                  1. Applied rewrites46.5%

                                    \[\leadsto \mathsf{fma}\left(-x, \color{blue}{a}, x\right) \]
                                  2. Taylor expanded in a around 0

                                    \[\leadsto x + \color{blue}{-1 \cdot \left(a \cdot x\right)} \]
                                  3. Step-by-step derivation
                                    1. Applied rewrites46.5%

                                      \[\leadsto \left(1 - a\right) \cdot \color{blue}{x} \]
                                  4. Recombined 3 regimes into one program.
                                  5. Add Preprocessing

                                  Alternative 13: 55.0% accurate, 2.0× speedup?

                                  \[\begin{array}{l} \\ \begin{array}{l} t_1 := \frac{x}{1 + a}\\ \mathbf{if}\;t \leq -7.1 \cdot 10^{-149}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t \leq 4.5 \cdot 10^{-34}:\\ \;\;\;\;\frac{z}{b}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                                  (FPCore (x y z t a b)
                                   :precision binary64
                                   (let* ((t_1 (/ x (+ 1.0 a))))
                                     (if (<= t -7.1e-149) t_1 (if (<= t 4.5e-34) (/ z b) t_1))))
                                  double code(double x, double y, double z, double t, double a, double b) {
                                  	double t_1 = x / (1.0 + a);
                                  	double tmp;
                                  	if (t <= -7.1e-149) {
                                  		tmp = t_1;
                                  	} else if (t <= 4.5e-34) {
                                  		tmp = z / b;
                                  	} else {
                                  		tmp = t_1;
                                  	}
                                  	return tmp;
                                  }
                                  
                                  real(8) function code(x, y, z, t, a, b)
                                      real(8), intent (in) :: x
                                      real(8), intent (in) :: y
                                      real(8), intent (in) :: z
                                      real(8), intent (in) :: t
                                      real(8), intent (in) :: a
                                      real(8), intent (in) :: b
                                      real(8) :: t_1
                                      real(8) :: tmp
                                      t_1 = x / (1.0d0 + a)
                                      if (t <= (-7.1d-149)) then
                                          tmp = t_1
                                      else if (t <= 4.5d-34) then
                                          tmp = z / b
                                      else
                                          tmp = t_1
                                      end if
                                      code = tmp
                                  end function
                                  
                                  public static double code(double x, double y, double z, double t, double a, double b) {
                                  	double t_1 = x / (1.0 + a);
                                  	double tmp;
                                  	if (t <= -7.1e-149) {
                                  		tmp = t_1;
                                  	} else if (t <= 4.5e-34) {
                                  		tmp = z / b;
                                  	} else {
                                  		tmp = t_1;
                                  	}
                                  	return tmp;
                                  }
                                  
                                  def code(x, y, z, t, a, b):
                                  	t_1 = x / (1.0 + a)
                                  	tmp = 0
                                  	if t <= -7.1e-149:
                                  		tmp = t_1
                                  	elif t <= 4.5e-34:
                                  		tmp = z / b
                                  	else:
                                  		tmp = t_1
                                  	return tmp
                                  
                                  function code(x, y, z, t, a, b)
                                  	t_1 = Float64(x / Float64(1.0 + a))
                                  	tmp = 0.0
                                  	if (t <= -7.1e-149)
                                  		tmp = t_1;
                                  	elseif (t <= 4.5e-34)
                                  		tmp = Float64(z / b);
                                  	else
                                  		tmp = t_1;
                                  	end
                                  	return tmp
                                  end
                                  
                                  function tmp_2 = code(x, y, z, t, a, b)
                                  	t_1 = x / (1.0 + a);
                                  	tmp = 0.0;
                                  	if (t <= -7.1e-149)
                                  		tmp = t_1;
                                  	elseif (t <= 4.5e-34)
                                  		tmp = z / b;
                                  	else
                                  		tmp = t_1;
                                  	end
                                  	tmp_2 = tmp;
                                  end
                                  
                                  code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(x / N[(1.0 + a), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t, -7.1e-149], t$95$1, If[LessEqual[t, 4.5e-34], N[(z / b), $MachinePrecision], t$95$1]]]
                                  
                                  \begin{array}{l}
                                  
                                  \\
                                  \begin{array}{l}
                                  t_1 := \frac{x}{1 + a}\\
                                  \mathbf{if}\;t \leq -7.1 \cdot 10^{-149}:\\
                                  \;\;\;\;t\_1\\
                                  
                                  \mathbf{elif}\;t \leq 4.5 \cdot 10^{-34}:\\
                                  \;\;\;\;\frac{z}{b}\\
                                  
                                  \mathbf{else}:\\
                                  \;\;\;\;t\_1\\
                                  
                                  
                                  \end{array}
                                  \end{array}
                                  
                                  Derivation
                                  1. Split input into 2 regimes
                                  2. if t < -7.1000000000000002e-149 or 4.50000000000000042e-34 < t

                                    1. Initial program 83.9%

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

                                      \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                    4. Step-by-step derivation
                                      1. lower-/.f64N/A

                                        \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                      2. lower-+.f6463.4

                                        \[\leadsto \frac{x}{\color{blue}{1 + a}} \]
                                    5. Applied rewrites63.4%

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

                                    if -7.1000000000000002e-149 < t < 4.50000000000000042e-34

                                    1. Initial program 71.3%

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

                                      \[\leadsto \color{blue}{\frac{z}{b}} \]
                                    4. Step-by-step derivation
                                      1. lower-/.f6454.6

                                        \[\leadsto \color{blue}{\frac{z}{b}} \]
                                    5. Applied rewrites54.6%

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

                                  Alternative 14: 41.5% accurate, 2.2× speedup?

                                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;a \leq -1:\\ \;\;\;\;\frac{x}{a}\\ \mathbf{elif}\;a \leq 0.76:\\ \;\;\;\;\left(1 - a\right) \cdot x\\ \mathbf{else}:\\ \;\;\;\;\frac{x}{a}\\ \end{array} \end{array} \]
                                  (FPCore (x y z t a b)
                                   :precision binary64
                                   (if (<= a -1.0) (/ x a) (if (<= a 0.76) (* (- 1.0 a) x) (/ x a))))
                                  double code(double x, double y, double z, double t, double a, double b) {
                                  	double tmp;
                                  	if (a <= -1.0) {
                                  		tmp = x / a;
                                  	} else if (a <= 0.76) {
                                  		tmp = (1.0 - a) * x;
                                  	} else {
                                  		tmp = x / a;
                                  	}
                                  	return tmp;
                                  }
                                  
                                  real(8) function code(x, y, z, t, a, b)
                                      real(8), intent (in) :: x
                                      real(8), intent (in) :: y
                                      real(8), intent (in) :: z
                                      real(8), intent (in) :: t
                                      real(8), intent (in) :: a
                                      real(8), intent (in) :: b
                                      real(8) :: tmp
                                      if (a <= (-1.0d0)) then
                                          tmp = x / a
                                      else if (a <= 0.76d0) then
                                          tmp = (1.0d0 - a) * x
                                      else
                                          tmp = x / a
                                      end if
                                      code = tmp
                                  end function
                                  
                                  public static double code(double x, double y, double z, double t, double a, double b) {
                                  	double tmp;
                                  	if (a <= -1.0) {
                                  		tmp = x / a;
                                  	} else if (a <= 0.76) {
                                  		tmp = (1.0 - a) * x;
                                  	} else {
                                  		tmp = x / a;
                                  	}
                                  	return tmp;
                                  }
                                  
                                  def code(x, y, z, t, a, b):
                                  	tmp = 0
                                  	if a <= -1.0:
                                  		tmp = x / a
                                  	elif a <= 0.76:
                                  		tmp = (1.0 - a) * x
                                  	else:
                                  		tmp = x / a
                                  	return tmp
                                  
                                  function code(x, y, z, t, a, b)
                                  	tmp = 0.0
                                  	if (a <= -1.0)
                                  		tmp = Float64(x / a);
                                  	elseif (a <= 0.76)
                                  		tmp = Float64(Float64(1.0 - a) * x);
                                  	else
                                  		tmp = Float64(x / a);
                                  	end
                                  	return tmp
                                  end
                                  
                                  function tmp_2 = code(x, y, z, t, a, b)
                                  	tmp = 0.0;
                                  	if (a <= -1.0)
                                  		tmp = x / a;
                                  	elseif (a <= 0.76)
                                  		tmp = (1.0 - a) * x;
                                  	else
                                  		tmp = x / a;
                                  	end
                                  	tmp_2 = tmp;
                                  end
                                  
                                  code[x_, y_, z_, t_, a_, b_] := If[LessEqual[a, -1.0], N[(x / a), $MachinePrecision], If[LessEqual[a, 0.76], N[(N[(1.0 - a), $MachinePrecision] * x), $MachinePrecision], N[(x / a), $MachinePrecision]]]
                                  
                                  \begin{array}{l}
                                  
                                  \\
                                  \begin{array}{l}
                                  \mathbf{if}\;a \leq -1:\\
                                  \;\;\;\;\frac{x}{a}\\
                                  
                                  \mathbf{elif}\;a \leq 0.76:\\
                                  \;\;\;\;\left(1 - a\right) \cdot x\\
                                  
                                  \mathbf{else}:\\
                                  \;\;\;\;\frac{x}{a}\\
                                  
                                  
                                  \end{array}
                                  \end{array}
                                  
                                  Derivation
                                  1. Split input into 2 regimes
                                  2. if a < -1 or 0.76000000000000001 < a

                                    1. Initial program 77.1%

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

                                      \[\leadsto \color{blue}{\frac{x + \frac{y \cdot z}{t}}{a}} \]
                                    4. Step-by-step derivation
                                      1. lower-/.f64N/A

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

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

                                        \[\leadsto \frac{\color{blue}{\frac{y}{t} \cdot z} + x}{a} \]
                                      4. lower-fma.f64N/A

                                        \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{y}{t}, z, x\right)}}{a} \]
                                      5. lower-/.f6464.6

                                        \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{y}{t}}, z, x\right)}{a} \]
                                    5. Applied rewrites64.6%

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

                                      \[\leadsto \frac{x}{\color{blue}{a}} \]
                                    7. Step-by-step derivation
                                      1. Applied rewrites47.7%

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

                                      if -1 < a < 0.76000000000000001

                                      1. Initial program 81.9%

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

                                        \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                      4. Step-by-step derivation
                                        1. lower-/.f64N/A

                                          \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                        2. lower-+.f6445.1

                                          \[\leadsto \frac{x}{\color{blue}{1 + a}} \]
                                      5. Applied rewrites45.1%

                                        \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                      6. Taylor expanded in a around 0

                                        \[\leadsto x + \color{blue}{-1 \cdot \left(a \cdot x\right)} \]
                                      7. Step-by-step derivation
                                        1. Applied rewrites45.1%

                                          \[\leadsto \mathsf{fma}\left(-x, \color{blue}{a}, x\right) \]
                                        2. Taylor expanded in a around 0

                                          \[\leadsto x + \color{blue}{-1 \cdot \left(a \cdot x\right)} \]
                                        3. Step-by-step derivation
                                          1. Applied rewrites45.1%

                                            \[\leadsto \left(1 - a\right) \cdot \color{blue}{x} \]
                                        4. Recombined 2 regimes into one program.
                                        5. Add Preprocessing

                                        Alternative 15: 19.0% accurate, 5.9× speedup?

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

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

                                          \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                        4. Step-by-step derivation
                                          1. lower-/.f64N/A

                                            \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                          2. lower-+.f6447.4

                                            \[\leadsto \frac{x}{\color{blue}{1 + a}} \]
                                        5. Applied rewrites47.4%

                                          \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                        6. Taylor expanded in a around 0

                                          \[\leadsto x + \color{blue}{-1 \cdot \left(a \cdot x\right)} \]
                                        7. Step-by-step derivation
                                          1. Applied rewrites22.4%

                                            \[\leadsto \mathsf{fma}\left(-x, \color{blue}{a}, x\right) \]
                                          2. Taylor expanded in a around 0

                                            \[\leadsto x + \color{blue}{-1 \cdot \left(a \cdot x\right)} \]
                                          3. Step-by-step derivation
                                            1. Applied rewrites22.4%

                                              \[\leadsto \left(1 - a\right) \cdot \color{blue}{x} \]
                                            2. Add Preprocessing

                                            Alternative 16: 4.1% accurate, 6.6× speedup?

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

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

                                              \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                            4. Step-by-step derivation
                                              1. lower-/.f64N/A

                                                \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                              2. lower-+.f6447.4

                                                \[\leadsto \frac{x}{\color{blue}{1 + a}} \]
                                            5. Applied rewrites47.4%

                                              \[\leadsto \color{blue}{\frac{x}{1 + a}} \]
                                            6. Taylor expanded in a around 0

                                              \[\leadsto x + \color{blue}{-1 \cdot \left(a \cdot x\right)} \]
                                            7. Step-by-step derivation
                                              1. Applied rewrites22.4%

                                                \[\leadsto \mathsf{fma}\left(-x, \color{blue}{a}, x\right) \]
                                              2. Taylor expanded in a around inf

                                                \[\leadsto -1 \cdot \left(a \cdot \color{blue}{x}\right) \]
                                              3. Step-by-step derivation
                                                1. Applied rewrites4.0%

                                                  \[\leadsto \left(-x\right) \cdot a \]
                                                2. Add Preprocessing

                                                Developer Target 1: 79.3% accurate, 0.7× speedup?

                                                \[\begin{array}{l} \\ \begin{array}{l} t_1 := 1 \cdot \left(\left(x + \frac{y}{t} \cdot z\right) \cdot \frac{1}{\left(a + 1\right) + \frac{y}{t} \cdot b}\right)\\ \mathbf{if}\;t < -1.3659085366310088 \cdot 10^{-271}:\\ \;\;\;\;t\_1\\ \mathbf{elif}\;t < 3.036967103737246 \cdot 10^{-130}:\\ \;\;\;\;\frac{z}{b}\\ \mathbf{else}:\\ \;\;\;\;t\_1\\ \end{array} \end{array} \]
                                                (FPCore (x y z t a b)
                                                 :precision binary64
                                                 (let* ((t_1
                                                         (* 1.0 (* (+ x (* (/ y t) z)) (/ 1.0 (+ (+ a 1.0) (* (/ y t) b)))))))
                                                   (if (< t -1.3659085366310088e-271)
                                                     t_1
                                                     (if (< t 3.036967103737246e-130) (/ z b) t_1))))
                                                double code(double x, double y, double z, double t, double a, double b) {
                                                	double t_1 = 1.0 * ((x + ((y / t) * z)) * (1.0 / ((a + 1.0) + ((y / t) * b))));
                                                	double tmp;
                                                	if (t < -1.3659085366310088e-271) {
                                                		tmp = t_1;
                                                	} else if (t < 3.036967103737246e-130) {
                                                		tmp = z / b;
                                                	} else {
                                                		tmp = t_1;
                                                	}
                                                	return tmp;
                                                }
                                                
                                                real(8) function code(x, y, z, t, a, b)
                                                    real(8), intent (in) :: x
                                                    real(8), intent (in) :: y
                                                    real(8), intent (in) :: z
                                                    real(8), intent (in) :: t
                                                    real(8), intent (in) :: a
                                                    real(8), intent (in) :: b
                                                    real(8) :: t_1
                                                    real(8) :: tmp
                                                    t_1 = 1.0d0 * ((x + ((y / t) * z)) * (1.0d0 / ((a + 1.0d0) + ((y / t) * b))))
                                                    if (t < (-1.3659085366310088d-271)) then
                                                        tmp = t_1
                                                    else if (t < 3.036967103737246d-130) then
                                                        tmp = z / b
                                                    else
                                                        tmp = t_1
                                                    end if
                                                    code = tmp
                                                end function
                                                
                                                public static double code(double x, double y, double z, double t, double a, double b) {
                                                	double t_1 = 1.0 * ((x + ((y / t) * z)) * (1.0 / ((a + 1.0) + ((y / t) * b))));
                                                	double tmp;
                                                	if (t < -1.3659085366310088e-271) {
                                                		tmp = t_1;
                                                	} else if (t < 3.036967103737246e-130) {
                                                		tmp = z / b;
                                                	} else {
                                                		tmp = t_1;
                                                	}
                                                	return tmp;
                                                }
                                                
                                                def code(x, y, z, t, a, b):
                                                	t_1 = 1.0 * ((x + ((y / t) * z)) * (1.0 / ((a + 1.0) + ((y / t) * b))))
                                                	tmp = 0
                                                	if t < -1.3659085366310088e-271:
                                                		tmp = t_1
                                                	elif t < 3.036967103737246e-130:
                                                		tmp = z / b
                                                	else:
                                                		tmp = t_1
                                                	return tmp
                                                
                                                function code(x, y, z, t, a, b)
                                                	t_1 = Float64(1.0 * Float64(Float64(x + Float64(Float64(y / t) * z)) * Float64(1.0 / Float64(Float64(a + 1.0) + Float64(Float64(y / t) * b)))))
                                                	tmp = 0.0
                                                	if (t < -1.3659085366310088e-271)
                                                		tmp = t_1;
                                                	elseif (t < 3.036967103737246e-130)
                                                		tmp = Float64(z / b);
                                                	else
                                                		tmp = t_1;
                                                	end
                                                	return tmp
                                                end
                                                
                                                function tmp_2 = code(x, y, z, t, a, b)
                                                	t_1 = 1.0 * ((x + ((y / t) * z)) * (1.0 / ((a + 1.0) + ((y / t) * b))));
                                                	tmp = 0.0;
                                                	if (t < -1.3659085366310088e-271)
                                                		tmp = t_1;
                                                	elseif (t < 3.036967103737246e-130)
                                                		tmp = z / b;
                                                	else
                                                		tmp = t_1;
                                                	end
                                                	tmp_2 = tmp;
                                                end
                                                
                                                code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(1.0 * N[(N[(x + N[(N[(y / t), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision] * N[(1.0 / N[(N[(a + 1.0), $MachinePrecision] + N[(N[(y / t), $MachinePrecision] * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[Less[t, -1.3659085366310088e-271], t$95$1, If[Less[t, 3.036967103737246e-130], N[(z / b), $MachinePrecision], t$95$1]]]
                                                
                                                \begin{array}{l}
                                                
                                                \\
                                                \begin{array}{l}
                                                t_1 := 1 \cdot \left(\left(x + \frac{y}{t} \cdot z\right) \cdot \frac{1}{\left(a + 1\right) + \frac{y}{t} \cdot b}\right)\\
                                                \mathbf{if}\;t < -1.3659085366310088 \cdot 10^{-271}:\\
                                                \;\;\;\;t\_1\\
                                                
                                                \mathbf{elif}\;t < 3.036967103737246 \cdot 10^{-130}:\\
                                                \;\;\;\;\frac{z}{b}\\
                                                
                                                \mathbf{else}:\\
                                                \;\;\;\;t\_1\\
                                                
                                                
                                                \end{array}
                                                \end{array}
                                                

                                                Reproduce

                                                ?
                                                herbie shell --seed 2024327 
                                                (FPCore (x y z t a b)
                                                  :name "Diagrams.Solve.Tridiagonal:solveCyclicTriDiagonal from diagrams-solve-0.1, B"
                                                  :precision binary64
                                                
                                                  :alt
                                                  (! :herbie-platform default (if (< t -1707385670788761/12500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (* 1 (* (+ x (* (/ y t) z)) (/ 1 (+ (+ a 1) (* (/ y t) b))))) (if (< t 1518483551868623/5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (/ z b) (* 1 (* (+ x (* (/ y t) z)) (/ 1 (+ (+ a 1) (* (/ y t) b))))))))
                                                
                                                  (/ (+ x (/ (* y z) t)) (+ (+ a 1.0) (/ (* y b) t))))