Linear.Quaternion:$csin from linear-1.19.1.3

Percentage Accurate: 100.0% → 100.0%
Time: 11.9s
Alternatives: 19
Speedup: 1.0×

Specification

?
\[\begin{array}{l} \\ \cos x \cdot \frac{\sinh y}{y} \end{array} \]
(FPCore (x y) :precision binary64 (* (cos x) (/ (sinh y) y)))
double code(double x, double y) {
	return cos(x) * (sinh(y) / y);
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = cos(x) * (sinh(y) / y)
end function
public static double code(double x, double y) {
	return Math.cos(x) * (Math.sinh(y) / y);
}
def code(x, y):
	return math.cos(x) * (math.sinh(y) / y)
function code(x, y)
	return Float64(cos(x) * Float64(sinh(y) / y))
end
function tmp = code(x, y)
	tmp = cos(x) * (sinh(y) / y);
end
code[x_, y_] := N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\cos x \cdot \frac{\sinh y}{y}
\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 19 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: 100.0% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \cos x \cdot \frac{\sinh y}{y} \end{array} \]
(FPCore (x y) :precision binary64 (* (cos x) (/ (sinh y) y)))
double code(double x, double y) {
	return cos(x) * (sinh(y) / y);
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = cos(x) * (sinh(y) / y)
end function
public static double code(double x, double y) {
	return Math.cos(x) * (Math.sinh(y) / y);
}
def code(x, y):
	return math.cos(x) * (math.sinh(y) / y)
function code(x, y)
	return Float64(cos(x) * Float64(sinh(y) / y))
end
function tmp = code(x, y)
	tmp = cos(x) * (sinh(y) / y);
end
code[x_, y_] := N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\cos x \cdot \frac{\sinh y}{y}
\end{array}

Alternative 1: 100.0% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \cos x \cdot \frac{\sinh y}{y} \end{array} \]
(FPCore (x y) :precision binary64 (* (cos x) (/ (sinh y) y)))
double code(double x, double y) {
	return cos(x) * (sinh(y) / y);
}
real(8) function code(x, y)
    real(8), intent (in) :: x
    real(8), intent (in) :: y
    code = cos(x) * (sinh(y) / y)
end function
public static double code(double x, double y) {
	return Math.cos(x) * (Math.sinh(y) / y);
}
def code(x, y):
	return math.cos(x) * (math.sinh(y) / y)
function code(x, y)
	return Float64(cos(x) * Float64(sinh(y) / y))
end
function tmp = code(x, y)
	tmp = cos(x) * (sinh(y) / y);
end
code[x_, y_] := N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\cos x \cdot \frac{\sinh y}{y}
\end{array}
Derivation
  1. Initial program 100.0%

    \[\cos x \cdot \frac{\sinh y}{y} \]
  2. Add Preprocessing
  3. Add Preprocessing

Alternative 2: 99.4% accurate, 0.4× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{\sinh y}{y}\\ t_1 := \cos x \cdot t\_0\\ \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;t\_0 \cdot \left(-0.5 \cdot \left(x \cdot x\right)\right)\\ \mathbf{elif}\;t\_1 \leq 0.9994936876364151:\\ \;\;\;\;\cos x\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x y)
 :precision binary64
 (let* ((t_0 (/ (sinh y) y)) (t_1 (* (cos x) t_0)))
   (if (<= t_1 (- INFINITY))
     (* t_0 (* -0.5 (* x x)))
     (if (<= t_1 0.9994936876364151) (cos x) t_0))))
double code(double x, double y) {
	double t_0 = sinh(y) / y;
	double t_1 = cos(x) * t_0;
	double tmp;
	if (t_1 <= -((double) INFINITY)) {
		tmp = t_0 * (-0.5 * (x * x));
	} else if (t_1 <= 0.9994936876364151) {
		tmp = cos(x);
	} else {
		tmp = t_0;
	}
	return tmp;
}
public static double code(double x, double y) {
	double t_0 = Math.sinh(y) / y;
	double t_1 = Math.cos(x) * t_0;
	double tmp;
	if (t_1 <= -Double.POSITIVE_INFINITY) {
		tmp = t_0 * (-0.5 * (x * x));
	} else if (t_1 <= 0.9994936876364151) {
		tmp = Math.cos(x);
	} else {
		tmp = t_0;
	}
	return tmp;
}
def code(x, y):
	t_0 = math.sinh(y) / y
	t_1 = math.cos(x) * t_0
	tmp = 0
	if t_1 <= -math.inf:
		tmp = t_0 * (-0.5 * (x * x))
	elif t_1 <= 0.9994936876364151:
		tmp = math.cos(x)
	else:
		tmp = t_0
	return tmp
function code(x, y)
	t_0 = Float64(sinh(y) / y)
	t_1 = Float64(cos(x) * t_0)
	tmp = 0.0
	if (t_1 <= Float64(-Inf))
		tmp = Float64(t_0 * Float64(-0.5 * Float64(x * x)));
	elseif (t_1 <= 0.9994936876364151)
		tmp = cos(x);
	else
		tmp = t_0;
	end
	return tmp
end
function tmp_2 = code(x, y)
	t_0 = sinh(y) / y;
	t_1 = cos(x) * t_0;
	tmp = 0.0;
	if (t_1 <= -Inf)
		tmp = t_0 * (-0.5 * (x * x));
	elseif (t_1 <= 0.9994936876364151)
		tmp = cos(x);
	else
		tmp = t_0;
	end
	tmp_2 = tmp;
end
code[x_, y_] := Block[{t$95$0 = N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]}, Block[{t$95$1 = N[(N[Cos[x], $MachinePrecision] * t$95$0), $MachinePrecision]}, If[LessEqual[t$95$1, (-Infinity)], N[(t$95$0 * N[(-0.5 * N[(x * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 0.9994936876364151], N[Cos[x], $MachinePrecision], t$95$0]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \frac{\sinh y}{y}\\
t_1 := \cos x \cdot t\_0\\
\mathbf{if}\;t\_1 \leq -\infty:\\
\;\;\;\;t\_0 \cdot \left(-0.5 \cdot \left(x \cdot x\right)\right)\\

\mathbf{elif}\;t\_1 \leq 0.9994936876364151:\\
\;\;\;\;\cos x\\

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


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -inf.0

    1. Initial program 100.0%

      \[\cos x \cdot \frac{\sinh y}{y} \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

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

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

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

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

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

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

        \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
      7. lower-*.f64100.0

        \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
    5. Applied rewrites100.0%

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

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

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

        \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{\sinh y}{y} \]
      3. lower-*.f64100.0

        \[\leadsto \left(-0.5 \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{\sinh y}{y} \]
    8. Applied rewrites100.0%

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

    if -inf.0 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < 0.99949368763641511

    1. Initial program 100.0%

      \[\cos x \cdot \frac{\sinh y}{y} \]
    2. Add Preprocessing
    3. Taylor expanded in y around 0

      \[\leadsto \color{blue}{\cos x} \]
    4. Step-by-step derivation
      1. lower-cos.f64100.0

        \[\leadsto \color{blue}{\cos x} \]
    5. Applied rewrites100.0%

      \[\leadsto \color{blue}{\cos x} \]

    if 0.99949368763641511 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

    1. Initial program 100.0%

      \[\cos x \cdot \frac{\sinh y}{y} \]
    2. Add Preprocessing
    3. Taylor expanded in x around 0

      \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
    4. Step-by-step derivation
      1. Applied rewrites100.0%

        \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
      2. Step-by-step derivation
        1. lift-sinh.f64N/A

          \[\leadsto 1 \cdot \frac{\color{blue}{\sinh y}}{y} \]
        2. lift-/.f64N/A

          \[\leadsto 1 \cdot \color{blue}{\frac{\sinh y}{y}} \]
        3. *-lft-identity100.0

          \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
      3. Applied rewrites100.0%

        \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
    5. Recombined 3 regimes into one program.
    6. Final simplification100.0%

      \[\leadsto \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -\infty:\\ \;\;\;\;\frac{\sinh y}{y} \cdot \left(-0.5 \cdot \left(x \cdot x\right)\right)\\ \mathbf{elif}\;\cos x \cdot \frac{\sinh y}{y} \leq 0.9994936876364151:\\ \;\;\;\;\cos x\\ \mathbf{else}:\\ \;\;\;\;\frac{\sinh y}{y}\\ \end{array} \]
    7. Add Preprocessing

    Alternative 3: 98.9% accurate, 0.4× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_0 := \frac{\sinh y}{y}\\ t_1 := \cos x \cdot t\_0\\ \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\ \mathbf{elif}\;t\_1 \leq 0.9994936876364151:\\ \;\;\;\;\cos x\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
    (FPCore (x y)
     :precision binary64
     (let* ((t_0 (/ (sinh y) y)) (t_1 (* (cos x) t_0)))
       (if (<= t_1 (- INFINITY))
         (*
          (* -0.5 (* x x))
          (fma
           (* y y)
           (fma
            (* y y)
            (fma y (* y 0.0001984126984126984) 0.008333333333333333)
            0.16666666666666666)
           1.0))
         (if (<= t_1 0.9994936876364151) (cos x) t_0))))
    double code(double x, double y) {
    	double t_0 = sinh(y) / y;
    	double t_1 = cos(x) * t_0;
    	double tmp;
    	if (t_1 <= -((double) INFINITY)) {
    		tmp = (-0.5 * (x * x)) * fma((y * y), fma((y * y), fma(y, (y * 0.0001984126984126984), 0.008333333333333333), 0.16666666666666666), 1.0);
    	} else if (t_1 <= 0.9994936876364151) {
    		tmp = cos(x);
    	} else {
    		tmp = t_0;
    	}
    	return tmp;
    }
    
    function code(x, y)
    	t_0 = Float64(sinh(y) / y)
    	t_1 = Float64(cos(x) * t_0)
    	tmp = 0.0
    	if (t_1 <= Float64(-Inf))
    		tmp = Float64(Float64(-0.5 * Float64(x * x)) * fma(Float64(y * y), fma(Float64(y * y), fma(y, Float64(y * 0.0001984126984126984), 0.008333333333333333), 0.16666666666666666), 1.0));
    	elseif (t_1 <= 0.9994936876364151)
    		tmp = cos(x);
    	else
    		tmp = t_0;
    	end
    	return tmp
    end
    
    code[x_, y_] := Block[{t$95$0 = N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]}, Block[{t$95$1 = N[(N[Cos[x], $MachinePrecision] * t$95$0), $MachinePrecision]}, If[LessEqual[t$95$1, (-Infinity)], N[(N[(-0.5 * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(y * N[(y * 0.0001984126984126984), $MachinePrecision] + 0.008333333333333333), $MachinePrecision] + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 0.9994936876364151], N[Cos[x], $MachinePrecision], t$95$0]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_0 := \frac{\sinh y}{y}\\
    t_1 := \cos x \cdot t\_0\\
    \mathbf{if}\;t\_1 \leq -\infty:\\
    \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\
    
    \mathbf{elif}\;t\_1 \leq 0.9994936876364151:\\
    \;\;\;\;\cos x\\
    
    \mathbf{else}:\\
    \;\;\;\;t\_0\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -inf.0

      1. Initial program 100.0%

        \[\cos x \cdot \frac{\sinh y}{y} \]
      2. Add Preprocessing
      3. Taylor expanded in x around 0

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

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

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

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

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

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

          \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
        7. lower-*.f64100.0

          \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
      5. Applied rewrites100.0%

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

        \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{y \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
      7. Step-by-step derivation
        1. +-commutativeN/A

          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{y \cdot \color{blue}{\left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) + 1\right)}}{y} \]
        2. distribute-lft-inN/A

          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right) + y \cdot 1}}{y} \]
        3. associate-*r*N/A

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

          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) \cdot \left(y \cdot {y}^{2}\right)} + y \cdot 1}{y} \]
        5. *-rgt-identityN/A

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

          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right), y \cdot {y}^{2}, y\right)}}{y} \]
      8. Applied rewrites95.5%

        \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \frac{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), y \cdot \left(y \cdot y\right), y\right)}}{y} \]
      9. Taylor expanded in x around inf

        \[\leadsto \color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2} \cdot \left(y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}{y}} \]
      10. Step-by-step derivation
        1. associate-/l*N/A

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

          \[\leadsto \color{blue}{\left(\frac{-1}{2} \cdot {x}^{2}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y}} \]
        3. lower-*.f64N/A

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

          \[\leadsto \color{blue}{\left(\frac{-1}{2} \cdot {x}^{2}\right)} \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
        5. unpow2N/A

          \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
        6. lower-*.f64N/A

          \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
        7. *-rgt-identityN/A

          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{\color{blue}{y \cdot 1} + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
        8. cube-multN/A

          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \color{blue}{\left(y \cdot \left(y \cdot y\right)\right)} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
        9. unpow2N/A

          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \left(y \cdot \color{blue}{{y}^{2}}\right) \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
        10. associate-*r*N/A

          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
        11. distribute-lft-inN/A

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

          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \color{blue}{\left(\frac{y}{y} \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)\right)} \]
      11. Applied rewrites95.5%

        \[\leadsto \color{blue}{\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)} \]

      if -inf.0 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < 0.99949368763641511

      1. Initial program 100.0%

        \[\cos x \cdot \frac{\sinh y}{y} \]
      2. Add Preprocessing
      3. Taylor expanded in y around 0

        \[\leadsto \color{blue}{\cos x} \]
      4. Step-by-step derivation
        1. lower-cos.f64100.0

          \[\leadsto \color{blue}{\cos x} \]
      5. Applied rewrites100.0%

        \[\leadsto \color{blue}{\cos x} \]

      if 0.99949368763641511 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

      1. Initial program 100.0%

        \[\cos x \cdot \frac{\sinh y}{y} \]
      2. Add Preprocessing
      3. Taylor expanded in x around 0

        \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
      4. Step-by-step derivation
        1. Applied rewrites100.0%

          \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
        2. Step-by-step derivation
          1. lift-sinh.f64N/A

            \[\leadsto 1 \cdot \frac{\color{blue}{\sinh y}}{y} \]
          2. lift-/.f64N/A

            \[\leadsto 1 \cdot \color{blue}{\frac{\sinh y}{y}} \]
          3. *-lft-identity100.0

            \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
        3. Applied rewrites100.0%

          \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
      5. Recombined 3 regimes into one program.
      6. Add Preprocessing

      Alternative 4: 93.8% accurate, 0.4× speedup?

      \[\begin{array}{l} \\ \begin{array}{l} t_0 := \cos x \cdot \frac{\sinh y}{y}\\ \mathbf{if}\;t\_0 \leq -\infty:\\ \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\ \mathbf{elif}\;t\_0 \leq 0.9994936876364151:\\ \;\;\;\;\cos x\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(0.0001984126984126984, y \cdot y, 0.008333333333333333\right), 0.16666666666666666\right)\right), y, y\right)}{y}\\ \end{array} \end{array} \]
      (FPCore (x y)
       :precision binary64
       (let* ((t_0 (* (cos x) (/ (sinh y) y))))
         (if (<= t_0 (- INFINITY))
           (*
            (* -0.5 (* x x))
            (fma
             (* y y)
             (fma
              (* y y)
              (fma y (* y 0.0001984126984126984) 0.008333333333333333)
              0.16666666666666666)
             1.0))
           (if (<= t_0 0.9994936876364151)
             (cos x)
             (/
              (fma
               (*
                y
                (*
                 y
                 (fma
                  y
                  (* y (fma 0.0001984126984126984 (* y y) 0.008333333333333333))
                  0.16666666666666666)))
               y
               y)
              y)))))
      double code(double x, double y) {
      	double t_0 = cos(x) * (sinh(y) / y);
      	double tmp;
      	if (t_0 <= -((double) INFINITY)) {
      		tmp = (-0.5 * (x * x)) * fma((y * y), fma((y * y), fma(y, (y * 0.0001984126984126984), 0.008333333333333333), 0.16666666666666666), 1.0);
      	} else if (t_0 <= 0.9994936876364151) {
      		tmp = cos(x);
      	} else {
      		tmp = fma((y * (y * fma(y, (y * fma(0.0001984126984126984, (y * y), 0.008333333333333333)), 0.16666666666666666))), y, y) / y;
      	}
      	return tmp;
      }
      
      function code(x, y)
      	t_0 = Float64(cos(x) * Float64(sinh(y) / y))
      	tmp = 0.0
      	if (t_0 <= Float64(-Inf))
      		tmp = Float64(Float64(-0.5 * Float64(x * x)) * fma(Float64(y * y), fma(Float64(y * y), fma(y, Float64(y * 0.0001984126984126984), 0.008333333333333333), 0.16666666666666666), 1.0));
      	elseif (t_0 <= 0.9994936876364151)
      		tmp = cos(x);
      	else
      		tmp = Float64(fma(Float64(y * Float64(y * fma(y, Float64(y * fma(0.0001984126984126984, Float64(y * y), 0.008333333333333333)), 0.16666666666666666))), y, y) / y);
      	end
      	return tmp
      end
      
      code[x_, y_] := Block[{t$95$0 = N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, (-Infinity)], N[(N[(-0.5 * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(y * N[(y * 0.0001984126984126984), $MachinePrecision] + 0.008333333333333333), $MachinePrecision] + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 0.9994936876364151], N[Cos[x], $MachinePrecision], N[(N[(N[(y * N[(y * N[(y * N[(y * N[(0.0001984126984126984 * N[(y * y), $MachinePrecision] + 0.008333333333333333), $MachinePrecision]), $MachinePrecision] + 0.16666666666666666), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * y + y), $MachinePrecision] / y), $MachinePrecision]]]]
      
      \begin{array}{l}
      
      \\
      \begin{array}{l}
      t_0 := \cos x \cdot \frac{\sinh y}{y}\\
      \mathbf{if}\;t\_0 \leq -\infty:\\
      \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\
      
      \mathbf{elif}\;t\_0 \leq 0.9994936876364151:\\
      \;\;\;\;\cos x\\
      
      \mathbf{else}:\\
      \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(0.0001984126984126984, y \cdot y, 0.008333333333333333\right), 0.16666666666666666\right)\right), y, y\right)}{y}\\
      
      
      \end{array}
      \end{array}
      
      Derivation
      1. Split input into 3 regimes
      2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -inf.0

        1. Initial program 100.0%

          \[\cos x \cdot \frac{\sinh y}{y} \]
        2. Add Preprocessing
        3. Taylor expanded in x around 0

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

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

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

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

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

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

            \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
          7. lower-*.f64100.0

            \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
        5. Applied rewrites100.0%

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

          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{y \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
        7. Step-by-step derivation
          1. +-commutativeN/A

            \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{y \cdot \color{blue}{\left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) + 1\right)}}{y} \]
          2. distribute-lft-inN/A

            \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right) + y \cdot 1}}{y} \]
          3. associate-*r*N/A

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

            \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) \cdot \left(y \cdot {y}^{2}\right)} + y \cdot 1}{y} \]
          5. *-rgt-identityN/A

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

            \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right), y \cdot {y}^{2}, y\right)}}{y} \]
        8. Applied rewrites95.5%

          \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \frac{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), y \cdot \left(y \cdot y\right), y\right)}}{y} \]
        9. Taylor expanded in x around inf

          \[\leadsto \color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2} \cdot \left(y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}{y}} \]
        10. Step-by-step derivation
          1. associate-/l*N/A

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

            \[\leadsto \color{blue}{\left(\frac{-1}{2} \cdot {x}^{2}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y}} \]
          3. lower-*.f64N/A

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

            \[\leadsto \color{blue}{\left(\frac{-1}{2} \cdot {x}^{2}\right)} \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
          5. unpow2N/A

            \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
          6. lower-*.f64N/A

            \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
          7. *-rgt-identityN/A

            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{\color{blue}{y \cdot 1} + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
          8. cube-multN/A

            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \color{blue}{\left(y \cdot \left(y \cdot y\right)\right)} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
          9. unpow2N/A

            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \left(y \cdot \color{blue}{{y}^{2}}\right) \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
          10. associate-*r*N/A

            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
          11. distribute-lft-inN/A

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

            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \color{blue}{\left(\frac{y}{y} \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)\right)} \]
        11. Applied rewrites95.5%

          \[\leadsto \color{blue}{\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)} \]

        if -inf.0 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < 0.99949368763641511

        1. Initial program 100.0%

          \[\cos x \cdot \frac{\sinh y}{y} \]
        2. Add Preprocessing
        3. Taylor expanded in y around 0

          \[\leadsto \color{blue}{\cos x} \]
        4. Step-by-step derivation
          1. lower-cos.f64100.0

            \[\leadsto \color{blue}{\cos x} \]
        5. Applied rewrites100.0%

          \[\leadsto \color{blue}{\cos x} \]

        if 0.99949368763641511 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

        1. Initial program 100.0%

          \[\cos x \cdot \frac{\sinh y}{y} \]
        2. Add Preprocessing
        3. Taylor expanded in x around 0

          \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
        4. Step-by-step derivation
          1. Applied rewrites100.0%

            \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
          2. Step-by-step derivation
            1. lift-sinh.f64N/A

              \[\leadsto 1 \cdot \frac{\color{blue}{\sinh y}}{y} \]
            2. lift-/.f64N/A

              \[\leadsto 1 \cdot \color{blue}{\frac{\sinh y}{y}} \]
            3. *-lft-identity100.0

              \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
          3. Applied rewrites100.0%

            \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
          4. Taylor expanded in y around 0

            \[\leadsto \frac{\color{blue}{y \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
          5. Step-by-step derivation
            1. *-commutativeN/A

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

              \[\leadsto \frac{\color{blue}{\left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) + 1\right)} \cdot y}{y} \]
            3. distribute-lft1-inN/A

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

              \[\leadsto \frac{\color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)} + y}{y} \]
            5. associate-*r*N/A

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

              \[\leadsto \frac{\color{blue}{\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) \cdot \left(y \cdot {y}^{2}\right)} + y}{y} \]
            7. lower-fma.f64N/A

              \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right), y \cdot {y}^{2}, y\right)}}{y} \]
          6. Applied rewrites91.4%

            \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), y \cdot \left(y \cdot y\right), y\right)}}{y} \]
          7. Step-by-step derivation
            1. lift-*.f64N/A

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

              \[\leadsto \frac{\left(y \cdot \left(y \cdot \color{blue}{\mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right)}\right) + \frac{1}{6}\right) \cdot \left(y \cdot \left(y \cdot y\right)\right) + y}{y} \]
            3. lift-*.f64N/A

              \[\leadsto \frac{\left(y \cdot \color{blue}{\left(y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right)\right)} + \frac{1}{6}\right) \cdot \left(y \cdot \left(y \cdot y\right)\right) + y}{y} \]
            4. lift-fma.f64N/A

              \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right)} \cdot \left(y \cdot \left(y \cdot y\right)\right) + y}{y} \]
            5. lift-*.f64N/A

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

              \[\leadsto \frac{\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot \color{blue}{\left(y \cdot \left(y \cdot y\right)\right)} + y}{y} \]
            7. lift-*.f64N/A

              \[\leadsto \frac{\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot \color{blue}{\left(y \cdot \left(y \cdot y\right)\right)} + y}{y} \]
            8. associate-*r*N/A

              \[\leadsto \frac{\color{blue}{\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot y\right) \cdot \left(y \cdot y\right)} + y}{y} \]
            9. lift-*.f64N/A

              \[\leadsto \frac{\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot y\right) \cdot \color{blue}{\left(y \cdot y\right)} + y}{y} \]
            10. associate-*r*N/A

              \[\leadsto \frac{\color{blue}{\left(\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot y\right) \cdot y\right) \cdot y} + y}{y} \]
            11. lower-fma.f64N/A

              \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot y\right) \cdot y, y, y\right)}}{y} \]
          8. Applied rewrites91.4%

            \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(y \cdot \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(0.0001984126984126984, y \cdot y, 0.008333333333333333\right), 0.16666666666666666\right)\right) \cdot y, y, y\right)}}{y} \]
        5. Recombined 3 regimes into one program.
        6. Final simplification94.1%

          \[\leadsto \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -\infty:\\ \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\ \mathbf{elif}\;\cos x \cdot \frac{\sinh y}{y} \leq 0.9994936876364151:\\ \;\;\;\;\cos x\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(0.0001984126984126984, y \cdot y, 0.008333333333333333\right), 0.16666666666666666\right)\right), y, y\right)}{y}\\ \end{array} \]
        7. Add Preprocessing

        Alternative 5: 62.6% accurate, 0.5× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} t_0 := \cos x \cdot \frac{\sinh y}{y}\\ \mathbf{if}\;t\_0 \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(y \cdot \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right)\right)\\ \end{array} \end{array} \]
        (FPCore (x y)
         :precision binary64
         (let* ((t_0 (* (cos x) (/ (sinh y) y))))
           (if (<= t_0 -0.04)
             (fma -0.5 (* x x) 1.0)
             (if (<= t_0 2.0)
               (fma 0.16666666666666666 (* y y) 1.0)
               (* y (* y (fma (* y y) 0.008333333333333333 0.16666666666666666)))))))
        double code(double x, double y) {
        	double t_0 = cos(x) * (sinh(y) / y);
        	double tmp;
        	if (t_0 <= -0.04) {
        		tmp = fma(-0.5, (x * x), 1.0);
        	} else if (t_0 <= 2.0) {
        		tmp = fma(0.16666666666666666, (y * y), 1.0);
        	} else {
        		tmp = y * (y * fma((y * y), 0.008333333333333333, 0.16666666666666666));
        	}
        	return tmp;
        }
        
        function code(x, y)
        	t_0 = Float64(cos(x) * Float64(sinh(y) / y))
        	tmp = 0.0
        	if (t_0 <= -0.04)
        		tmp = fma(-0.5, Float64(x * x), 1.0);
        	elseif (t_0 <= 2.0)
        		tmp = fma(0.16666666666666666, Float64(y * y), 1.0);
        	else
        		tmp = Float64(y * Float64(y * fma(Float64(y * y), 0.008333333333333333, 0.16666666666666666)));
        	end
        	return tmp
        end
        
        code[x_, y_] := Block[{t$95$0 = N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -0.04], N[(-0.5 * N[(x * x), $MachinePrecision] + 1.0), $MachinePrecision], If[LessEqual[t$95$0, 2.0], N[(0.16666666666666666 * N[(y * y), $MachinePrecision] + 1.0), $MachinePrecision], N[(y * N[(y * N[(N[(y * y), $MachinePrecision] * 0.008333333333333333 + 0.16666666666666666), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        t_0 := \cos x \cdot \frac{\sinh y}{y}\\
        \mathbf{if}\;t\_0 \leq -0.04:\\
        \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\
        
        \mathbf{elif}\;t\_0 \leq 2:\\
        \;\;\;\;\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\
        
        \mathbf{else}:\\
        \;\;\;\;y \cdot \left(y \cdot \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right)\right)\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

          1. Initial program 100.0%

            \[\cos x \cdot \frac{\sinh y}{y} \]
          2. Add Preprocessing
          3. Taylor expanded in y around 0

            \[\leadsto \color{blue}{\cos x} \]
          4. Step-by-step derivation
            1. lower-cos.f6467.7

              \[\leadsto \color{blue}{\cos x} \]
          5. Applied rewrites67.7%

            \[\leadsto \color{blue}{\cos x} \]
          6. Taylor expanded in x around 0

            \[\leadsto \color{blue}{1 + \frac{-1}{2} \cdot {x}^{2}} \]
          7. Step-by-step derivation
            1. +-commutativeN/A

              \[\leadsto \color{blue}{\frac{-1}{2} \cdot {x}^{2} + 1} \]
            2. lower-fma.f64N/A

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

              \[\leadsto \mathsf{fma}\left(\frac{-1}{2}, \color{blue}{x \cdot x}, 1\right) \]
            4. lower-*.f6419.6

              \[\leadsto \mathsf{fma}\left(-0.5, \color{blue}{x \cdot x}, 1\right) \]
          8. Applied rewrites19.6%

            \[\leadsto \color{blue}{\mathsf{fma}\left(-0.5, x \cdot x, 1\right)} \]

          if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < 2

          1. Initial program 100.0%

            \[\cos x \cdot \frac{\sinh y}{y} \]
          2. Add Preprocessing
          3. Taylor expanded in x around 0

            \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
          4. Step-by-step derivation
            1. Applied rewrites75.1%

              \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
            2. Taylor expanded in y around 0

              \[\leadsto \color{blue}{1 + \frac{1}{6} \cdot {y}^{2}} \]
            3. Step-by-step derivation
              1. +-commutativeN/A

                \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2} + 1} \]
              2. lower-fma.f64N/A

                \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{6}, {y}^{2}, 1\right)} \]
              3. unpow2N/A

                \[\leadsto \mathsf{fma}\left(\frac{1}{6}, \color{blue}{y \cdot y}, 1\right) \]
              4. lower-*.f6473.8

                \[\leadsto \mathsf{fma}\left(0.16666666666666666, \color{blue}{y \cdot y}, 1\right) \]
            4. Applied rewrites73.8%

              \[\leadsto \color{blue}{\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)} \]

            if 2 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

            1. Initial program 100.0%

              \[\cos x \cdot \frac{\sinh y}{y} \]
            2. Add Preprocessing
            3. Taylor expanded in x around 0

              \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
            4. Step-by-step derivation
              1. Applied rewrites100.0%

                \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
              2. Taylor expanded in y around 0

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

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

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

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

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

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

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

                  \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\mathsf{fma}\left({y}^{2}, \frac{1}{120}, \frac{1}{6}\right)}, 1\right) \]
                8. unpow2N/A

                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, \frac{1}{120}, \frac{1}{6}\right), 1\right) \]
                9. lower-*.f6472.9

                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, 0.008333333333333333, 0.16666666666666666\right), 1\right) \]
              4. Applied rewrites72.9%

                \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)} \]
              5. Taylor expanded in y around inf

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

                  \[\leadsto {y}^{4} \cdot \color{blue}{\left(\frac{1}{6} \cdot \frac{1}{{y}^{2}} + \frac{1}{120}\right)} \]
                2. distribute-rgt-inN/A

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

                  \[\leadsto \color{blue}{\frac{\frac{1}{6} \cdot 1}{{y}^{2}}} \cdot {y}^{4} + \frac{1}{120} \cdot {y}^{4} \]
                4. metadata-evalN/A

                  \[\leadsto \frac{\color{blue}{\frac{1}{6}}}{{y}^{2}} \cdot {y}^{4} + \frac{1}{120} \cdot {y}^{4} \]
                5. associate-*l/N/A

                  \[\leadsto \color{blue}{\frac{\frac{1}{6} \cdot {y}^{4}}{{y}^{2}}} + \frac{1}{120} \cdot {y}^{4} \]
                6. associate-/l*N/A

                  \[\leadsto \color{blue}{\frac{1}{6} \cdot \frac{{y}^{4}}{{y}^{2}}} + \frac{1}{120} \cdot {y}^{4} \]
                7. metadata-evalN/A

                  \[\leadsto \frac{1}{6} \cdot \frac{{y}^{\color{blue}{\left(2 \cdot 2\right)}}}{{y}^{2}} + \frac{1}{120} \cdot {y}^{4} \]
                8. pow-sqrN/A

                  \[\leadsto \frac{1}{6} \cdot \frac{\color{blue}{{y}^{2} \cdot {y}^{2}}}{{y}^{2}} + \frac{1}{120} \cdot {y}^{4} \]
                9. associate-/l*N/A

                  \[\leadsto \frac{1}{6} \cdot \color{blue}{\left({y}^{2} \cdot \frac{{y}^{2}}{{y}^{2}}\right)} + \frac{1}{120} \cdot {y}^{4} \]
                10. *-rgt-identityN/A

                  \[\leadsto \frac{1}{6} \cdot \left({y}^{2} \cdot \frac{\color{blue}{{y}^{2} \cdot 1}}{{y}^{2}}\right) + \frac{1}{120} \cdot {y}^{4} \]
                11. associate-*r/N/A

                  \[\leadsto \frac{1}{6} \cdot \left({y}^{2} \cdot \color{blue}{\left({y}^{2} \cdot \frac{1}{{y}^{2}}\right)}\right) + \frac{1}{120} \cdot {y}^{4} \]
                12. rgt-mult-inverseN/A

                  \[\leadsto \frac{1}{6} \cdot \left({y}^{2} \cdot \color{blue}{1}\right) + \frac{1}{120} \cdot {y}^{4} \]
                13. *-rgt-identityN/A

                  \[\leadsto \frac{1}{6} \cdot \color{blue}{{y}^{2}} + \frac{1}{120} \cdot {y}^{4} \]
                14. metadata-evalN/A

                  \[\leadsto \frac{1}{6} \cdot {y}^{2} + \frac{1}{120} \cdot {y}^{\color{blue}{\left(2 \cdot 2\right)}} \]
                15. pow-sqrN/A

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

                  \[\leadsto \frac{1}{6} \cdot {y}^{2} + \color{blue}{\left(\frac{1}{120} \cdot {y}^{2}\right) \cdot {y}^{2}} \]
                17. distribute-rgt-inN/A

                  \[\leadsto \color{blue}{{y}^{2} \cdot \left(\frac{1}{6} + \frac{1}{120} \cdot {y}^{2}\right)} \]
                18. unpow2N/A

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

                  \[\leadsto \color{blue}{y \cdot \left(y \cdot \left(\frac{1}{6} + \frac{1}{120} \cdot {y}^{2}\right)\right)} \]
              7. Applied rewrites72.9%

                \[\leadsto \color{blue}{y \cdot \left(y \cdot \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right)\right)} \]
            5. Recombined 3 regimes into one program.
            6. Add Preprocessing

            Alternative 6: 62.6% accurate, 0.5× speedup?

            \[\begin{array}{l} \\ \begin{array}{l} t_0 := \cos x \cdot \frac{\sinh y}{y}\\ \mathbf{if}\;t\_0 \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(0.008333333333333333 \cdot \left(y \cdot \left(y \cdot y\right)\right)\right)\\ \end{array} \end{array} \]
            (FPCore (x y)
             :precision binary64
             (let* ((t_0 (* (cos x) (/ (sinh y) y))))
               (if (<= t_0 -0.04)
                 (fma -0.5 (* x x) 1.0)
                 (if (<= t_0 2.0)
                   (fma 0.16666666666666666 (* y y) 1.0)
                   (* y (* 0.008333333333333333 (* y (* y y))))))))
            double code(double x, double y) {
            	double t_0 = cos(x) * (sinh(y) / y);
            	double tmp;
            	if (t_0 <= -0.04) {
            		tmp = fma(-0.5, (x * x), 1.0);
            	} else if (t_0 <= 2.0) {
            		tmp = fma(0.16666666666666666, (y * y), 1.0);
            	} else {
            		tmp = y * (0.008333333333333333 * (y * (y * y)));
            	}
            	return tmp;
            }
            
            function code(x, y)
            	t_0 = Float64(cos(x) * Float64(sinh(y) / y))
            	tmp = 0.0
            	if (t_0 <= -0.04)
            		tmp = fma(-0.5, Float64(x * x), 1.0);
            	elseif (t_0 <= 2.0)
            		tmp = fma(0.16666666666666666, Float64(y * y), 1.0);
            	else
            		tmp = Float64(y * Float64(0.008333333333333333 * Float64(y * Float64(y * y))));
            	end
            	return tmp
            end
            
            code[x_, y_] := Block[{t$95$0 = N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -0.04], N[(-0.5 * N[(x * x), $MachinePrecision] + 1.0), $MachinePrecision], If[LessEqual[t$95$0, 2.0], N[(0.16666666666666666 * N[(y * y), $MachinePrecision] + 1.0), $MachinePrecision], N[(y * N[(0.008333333333333333 * N[(y * N[(y * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
            
            \begin{array}{l}
            
            \\
            \begin{array}{l}
            t_0 := \cos x \cdot \frac{\sinh y}{y}\\
            \mathbf{if}\;t\_0 \leq -0.04:\\
            \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\
            
            \mathbf{elif}\;t\_0 \leq 2:\\
            \;\;\;\;\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\
            
            \mathbf{else}:\\
            \;\;\;\;y \cdot \left(0.008333333333333333 \cdot \left(y \cdot \left(y \cdot y\right)\right)\right)\\
            
            
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

              1. Initial program 100.0%

                \[\cos x \cdot \frac{\sinh y}{y} \]
              2. Add Preprocessing
              3. Taylor expanded in y around 0

                \[\leadsto \color{blue}{\cos x} \]
              4. Step-by-step derivation
                1. lower-cos.f6467.7

                  \[\leadsto \color{blue}{\cos x} \]
              5. Applied rewrites67.7%

                \[\leadsto \color{blue}{\cos x} \]
              6. Taylor expanded in x around 0

                \[\leadsto \color{blue}{1 + \frac{-1}{2} \cdot {x}^{2}} \]
              7. Step-by-step derivation
                1. +-commutativeN/A

                  \[\leadsto \color{blue}{\frac{-1}{2} \cdot {x}^{2} + 1} \]
                2. lower-fma.f64N/A

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

                  \[\leadsto \mathsf{fma}\left(\frac{-1}{2}, \color{blue}{x \cdot x}, 1\right) \]
                4. lower-*.f6419.6

                  \[\leadsto \mathsf{fma}\left(-0.5, \color{blue}{x \cdot x}, 1\right) \]
              8. Applied rewrites19.6%

                \[\leadsto \color{blue}{\mathsf{fma}\left(-0.5, x \cdot x, 1\right)} \]

              if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < 2

              1. Initial program 100.0%

                \[\cos x \cdot \frac{\sinh y}{y} \]
              2. Add Preprocessing
              3. Taylor expanded in x around 0

                \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
              4. Step-by-step derivation
                1. Applied rewrites75.1%

                  \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                2. Taylor expanded in y around 0

                  \[\leadsto \color{blue}{1 + \frac{1}{6} \cdot {y}^{2}} \]
                3. Step-by-step derivation
                  1. +-commutativeN/A

                    \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2} + 1} \]
                  2. lower-fma.f64N/A

                    \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{6}, {y}^{2}, 1\right)} \]
                  3. unpow2N/A

                    \[\leadsto \mathsf{fma}\left(\frac{1}{6}, \color{blue}{y \cdot y}, 1\right) \]
                  4. lower-*.f6473.8

                    \[\leadsto \mathsf{fma}\left(0.16666666666666666, \color{blue}{y \cdot y}, 1\right) \]
                4. Applied rewrites73.8%

                  \[\leadsto \color{blue}{\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)} \]

                if 2 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                1. Initial program 100.0%

                  \[\cos x \cdot \frac{\sinh y}{y} \]
                2. Add Preprocessing
                3. Taylor expanded in x around 0

                  \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                4. Step-by-step derivation
                  1. Applied rewrites100.0%

                    \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                  2. Taylor expanded in y around 0

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

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

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

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

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

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

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

                      \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\mathsf{fma}\left({y}^{2}, \frac{1}{120}, \frac{1}{6}\right)}, 1\right) \]
                    8. unpow2N/A

                      \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, \frac{1}{120}, \frac{1}{6}\right), 1\right) \]
                    9. lower-*.f6472.9

                      \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, 0.008333333333333333, 0.16666666666666666\right), 1\right) \]
                  4. Applied rewrites72.9%

                    \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)} \]
                  5. Taylor expanded in y around inf

                    \[\leadsto \color{blue}{\frac{1}{120} \cdot {y}^{4}} \]
                  6. Step-by-step derivation
                    1. metadata-evalN/A

                      \[\leadsto \frac{1}{120} \cdot {y}^{\color{blue}{\left(2 \cdot 2\right)}} \]
                    2. pow-sqrN/A

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

                      \[\leadsto \color{blue}{\left(\frac{1}{120} \cdot {y}^{2}\right) \cdot {y}^{2}} \]
                    4. unpow2N/A

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

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

                      \[\leadsto \color{blue}{y \cdot \left(\left(\frac{1}{120} \cdot {y}^{2}\right) \cdot y\right)} \]
                    7. lower-*.f64N/A

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

                      \[\leadsto y \cdot \color{blue}{\left(\left(\left(\frac{1}{120} \cdot {y}^{2}\right) \cdot y\right) \cdot 1\right)} \]
                    9. *-inversesN/A

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

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

                      \[\leadsto y \cdot \frac{\color{blue}{\left(\frac{1}{120} \cdot {y}^{2}\right) \cdot \left(y \cdot y\right)}}{y} \]
                    12. unpow2N/A

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

                      \[\leadsto y \cdot \frac{\color{blue}{\frac{1}{120} \cdot \left({y}^{2} \cdot {y}^{2}\right)}}{y} \]
                    14. pow-sqrN/A

                      \[\leadsto y \cdot \frac{\frac{1}{120} \cdot \color{blue}{{y}^{\left(2 \cdot 2\right)}}}{y} \]
                    15. metadata-evalN/A

                      \[\leadsto y \cdot \frac{\frac{1}{120} \cdot {y}^{\color{blue}{4}}}{y} \]
                    16. associate-/l*N/A

                      \[\leadsto y \cdot \color{blue}{\left(\frac{1}{120} \cdot \frac{{y}^{4}}{y}\right)} \]
                    17. metadata-evalN/A

                      \[\leadsto y \cdot \left(\frac{1}{120} \cdot \frac{{y}^{\color{blue}{\left(2 \cdot 2\right)}}}{y}\right) \]
                    18. pow-sqrN/A

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

                      \[\leadsto y \cdot \left(\frac{1}{120} \cdot \color{blue}{\left({y}^{2} \cdot \frac{{y}^{2}}{y}\right)}\right) \]
                    20. unpow2N/A

                      \[\leadsto y \cdot \left(\frac{1}{120} \cdot \left(\color{blue}{\left(y \cdot y\right)} \cdot \frac{{y}^{2}}{y}\right)\right) \]
                    21. *-rgt-identityN/A

                      \[\leadsto y \cdot \left(\frac{1}{120} \cdot \left(\left(y \cdot y\right) \cdot \frac{\color{blue}{{y}^{2} \cdot 1}}{y}\right)\right) \]
                    22. *-inversesN/A

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

                      \[\leadsto y \cdot \left(\frac{1}{120} \cdot \left(\left(y \cdot y\right) \cdot \frac{\color{blue}{\frac{{y}^{2} \cdot y}{y}}}{y}\right)\right) \]
                    24. unpow2N/A

                      \[\leadsto y \cdot \left(\frac{1}{120} \cdot \left(\left(y \cdot y\right) \cdot \frac{\frac{\color{blue}{\left(y \cdot y\right)} \cdot y}{y}}{y}\right)\right) \]
                    25. unpow3N/A

                      \[\leadsto y \cdot \left(\frac{1}{120} \cdot \left(\left(y \cdot y\right) \cdot \frac{\frac{\color{blue}{{y}^{3}}}{y}}{y}\right)\right) \]
                  7. Applied rewrites72.9%

                    \[\leadsto \color{blue}{y \cdot \left(0.008333333333333333 \cdot \left(y \cdot \left(y \cdot y\right)\right)\right)} \]
                5. Recombined 3 regimes into one program.
                6. Add Preprocessing

                Alternative 7: 53.5% accurate, 0.5× speedup?

                \[\begin{array}{l} \\ \begin{array}{l} t_0 := \cos x \cdot \frac{\sinh y}{y}\\ \mathbf{if}\;t\_0 \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\ \mathbf{elif}\;t\_0 \leq 2:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot y\right) \cdot 0.16666666666666666\\ \end{array} \end{array} \]
                (FPCore (x y)
                 :precision binary64
                 (let* ((t_0 (* (cos x) (/ (sinh y) y))))
                   (if (<= t_0 -0.04)
                     (fma -0.5 (* x x) 1.0)
                     (if (<= t_0 2.0) 1.0 (* (* y y) 0.16666666666666666)))))
                double code(double x, double y) {
                	double t_0 = cos(x) * (sinh(y) / y);
                	double tmp;
                	if (t_0 <= -0.04) {
                		tmp = fma(-0.5, (x * x), 1.0);
                	} else if (t_0 <= 2.0) {
                		tmp = 1.0;
                	} else {
                		tmp = (y * y) * 0.16666666666666666;
                	}
                	return tmp;
                }
                
                function code(x, y)
                	t_0 = Float64(cos(x) * Float64(sinh(y) / y))
                	tmp = 0.0
                	if (t_0 <= -0.04)
                		tmp = fma(-0.5, Float64(x * x), 1.0);
                	elseif (t_0 <= 2.0)
                		tmp = 1.0;
                	else
                		tmp = Float64(Float64(y * y) * 0.16666666666666666);
                	end
                	return tmp
                end
                
                code[x_, y_] := Block[{t$95$0 = N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -0.04], N[(-0.5 * N[(x * x), $MachinePrecision] + 1.0), $MachinePrecision], If[LessEqual[t$95$0, 2.0], 1.0, N[(N[(y * y), $MachinePrecision] * 0.16666666666666666), $MachinePrecision]]]]
                
                \begin{array}{l}
                
                \\
                \begin{array}{l}
                t_0 := \cos x \cdot \frac{\sinh y}{y}\\
                \mathbf{if}\;t\_0 \leq -0.04:\\
                \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\
                
                \mathbf{elif}\;t\_0 \leq 2:\\
                \;\;\;\;1\\
                
                \mathbf{else}:\\
                \;\;\;\;\left(y \cdot y\right) \cdot 0.16666666666666666\\
                
                
                \end{array}
                \end{array}
                
                Derivation
                1. Split input into 3 regimes
                2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

                  1. Initial program 100.0%

                    \[\cos x \cdot \frac{\sinh y}{y} \]
                  2. Add Preprocessing
                  3. Taylor expanded in y around 0

                    \[\leadsto \color{blue}{\cos x} \]
                  4. Step-by-step derivation
                    1. lower-cos.f6467.7

                      \[\leadsto \color{blue}{\cos x} \]
                  5. Applied rewrites67.7%

                    \[\leadsto \color{blue}{\cos x} \]
                  6. Taylor expanded in x around 0

                    \[\leadsto \color{blue}{1 + \frac{-1}{2} \cdot {x}^{2}} \]
                  7. Step-by-step derivation
                    1. +-commutativeN/A

                      \[\leadsto \color{blue}{\frac{-1}{2} \cdot {x}^{2} + 1} \]
                    2. lower-fma.f64N/A

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

                      \[\leadsto \mathsf{fma}\left(\frac{-1}{2}, \color{blue}{x \cdot x}, 1\right) \]
                    4. lower-*.f6419.6

                      \[\leadsto \mathsf{fma}\left(-0.5, \color{blue}{x \cdot x}, 1\right) \]
                  8. Applied rewrites19.6%

                    \[\leadsto \color{blue}{\mathsf{fma}\left(-0.5, x \cdot x, 1\right)} \]

                  if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < 2

                  1. Initial program 100.0%

                    \[\cos x \cdot \frac{\sinh y}{y} \]
                  2. Add Preprocessing
                  3. Taylor expanded in y around 0

                    \[\leadsto \color{blue}{\cos x} \]
                  4. Step-by-step derivation
                    1. lower-cos.f6498.2

                      \[\leadsto \color{blue}{\cos x} \]
                  5. Applied rewrites98.2%

                    \[\leadsto \color{blue}{\cos x} \]
                  6. Taylor expanded in x around 0

                    \[\leadsto \color{blue}{1} \]
                  7. Step-by-step derivation
                    1. Applied rewrites73.3%

                      \[\leadsto \color{blue}{1} \]

                    if 2 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                    1. Initial program 100.0%

                      \[\cos x \cdot \frac{\sinh y}{y} \]
                    2. Add Preprocessing
                    3. Taylor expanded in x around 0

                      \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                    4. Step-by-step derivation
                      1. Applied rewrites100.0%

                        \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                      2. Taylor expanded in y around 0

                        \[\leadsto \color{blue}{1 + \frac{1}{6} \cdot {y}^{2}} \]
                      3. Step-by-step derivation
                        1. +-commutativeN/A

                          \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2} + 1} \]
                        2. lower-fma.f64N/A

                          \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{6}, {y}^{2}, 1\right)} \]
                        3. unpow2N/A

                          \[\leadsto \mathsf{fma}\left(\frac{1}{6}, \color{blue}{y \cdot y}, 1\right) \]
                        4. lower-*.f6450.3

                          \[\leadsto \mathsf{fma}\left(0.16666666666666666, \color{blue}{y \cdot y}, 1\right) \]
                      4. Applied rewrites50.3%

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

                        \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2}} \]
                      6. Step-by-step derivation
                        1. lower-*.f64N/A

                          \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2}} \]
                        2. unpow2N/A

                          \[\leadsto \frac{1}{6} \cdot \color{blue}{\left(y \cdot y\right)} \]
                        3. lower-*.f6450.3

                          \[\leadsto 0.16666666666666666 \cdot \color{blue}{\left(y \cdot y\right)} \]
                      7. Applied rewrites50.3%

                        \[\leadsto \color{blue}{0.16666666666666666 \cdot \left(y \cdot y\right)} \]
                    5. Recombined 3 regimes into one program.
                    6. Final simplification51.0%

                      \[\leadsto \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\ \mathbf{elif}\;\cos x \cdot \frac{\sinh y}{y} \leq 2:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot y\right) \cdot 0.16666666666666666\\ \end{array} \]
                    7. Add Preprocessing

                    Alternative 8: 72.1% accurate, 0.8× speedup?

                    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(0.0001984126984126984, y \cdot y, 0.008333333333333333\right), 0.16666666666666666\right)\right), y, y\right)}{y}\\ \end{array} \end{array} \]
                    (FPCore (x y)
                     :precision binary64
                     (if (<= (* (cos x) (/ (sinh y) y)) -0.04)
                       (*
                        (* -0.5 (* x x))
                        (fma
                         (* y y)
                         (fma
                          (* y y)
                          (fma y (* y 0.0001984126984126984) 0.008333333333333333)
                          0.16666666666666666)
                         1.0))
                       (/
                        (fma
                         (*
                          y
                          (*
                           y
                           (fma
                            y
                            (* y (fma 0.0001984126984126984 (* y y) 0.008333333333333333))
                            0.16666666666666666)))
                         y
                         y)
                        y)))
                    double code(double x, double y) {
                    	double tmp;
                    	if ((cos(x) * (sinh(y) / y)) <= -0.04) {
                    		tmp = (-0.5 * (x * x)) * fma((y * y), fma((y * y), fma(y, (y * 0.0001984126984126984), 0.008333333333333333), 0.16666666666666666), 1.0);
                    	} else {
                    		tmp = fma((y * (y * fma(y, (y * fma(0.0001984126984126984, (y * y), 0.008333333333333333)), 0.16666666666666666))), y, y) / y;
                    	}
                    	return tmp;
                    }
                    
                    function code(x, y)
                    	tmp = 0.0
                    	if (Float64(cos(x) * Float64(sinh(y) / y)) <= -0.04)
                    		tmp = Float64(Float64(-0.5 * Float64(x * x)) * fma(Float64(y * y), fma(Float64(y * y), fma(y, Float64(y * 0.0001984126984126984), 0.008333333333333333), 0.16666666666666666), 1.0));
                    	else
                    		tmp = Float64(fma(Float64(y * Float64(y * fma(y, Float64(y * fma(0.0001984126984126984, Float64(y * y), 0.008333333333333333)), 0.16666666666666666))), y, y) / y);
                    	end
                    	return tmp
                    end
                    
                    code[x_, y_] := If[LessEqual[N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], -0.04], N[(N[(-0.5 * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(y * N[(y * 0.0001984126984126984), $MachinePrecision] + 0.008333333333333333), $MachinePrecision] + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], N[(N[(N[(y * N[(y * N[(y * N[(y * N[(0.0001984126984126984 * N[(y * y), $MachinePrecision] + 0.008333333333333333), $MachinePrecision]), $MachinePrecision] + 0.16666666666666666), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * y + y), $MachinePrecision] / y), $MachinePrecision]]
                    
                    \begin{array}{l}
                    
                    \\
                    \begin{array}{l}
                    \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\
                    \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(0.0001984126984126984, y \cdot y, 0.008333333333333333\right), 0.16666666666666666\right)\right), y, y\right)}{y}\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 2 regimes
                    2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

                      1. Initial program 100.0%

                        \[\cos x \cdot \frac{\sinh y}{y} \]
                      2. Add Preprocessing
                      3. Taylor expanded in x around 0

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

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

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

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

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

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

                          \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
                        7. lower-*.f6436.0

                          \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
                      5. Applied rewrites36.0%

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

                        \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{y \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
                      7. Step-by-step derivation
                        1. +-commutativeN/A

                          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{y \cdot \color{blue}{\left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) + 1\right)}}{y} \]
                        2. distribute-lft-inN/A

                          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right) + y \cdot 1}}{y} \]
                        3. associate-*r*N/A

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

                          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) \cdot \left(y \cdot {y}^{2}\right)} + y \cdot 1}{y} \]
                        5. *-rgt-identityN/A

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

                          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right), y \cdot {y}^{2}, y\right)}}{y} \]
                      8. Applied rewrites34.5%

                        \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \frac{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), y \cdot \left(y \cdot y\right), y\right)}}{y} \]
                      9. Taylor expanded in x around inf

                        \[\leadsto \color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2} \cdot \left(y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}{y}} \]
                      10. Step-by-step derivation
                        1. associate-/l*N/A

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

                          \[\leadsto \color{blue}{\left(\frac{-1}{2} \cdot {x}^{2}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y}} \]
                        3. lower-*.f64N/A

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

                          \[\leadsto \color{blue}{\left(\frac{-1}{2} \cdot {x}^{2}\right)} \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                        5. unpow2N/A

                          \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                        6. lower-*.f64N/A

                          \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                        7. *-rgt-identityN/A

                          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{\color{blue}{y \cdot 1} + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                        8. cube-multN/A

                          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \color{blue}{\left(y \cdot \left(y \cdot y\right)\right)} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                        9. unpow2N/A

                          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \left(y \cdot \color{blue}{{y}^{2}}\right) \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                        10. associate-*r*N/A

                          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
                        11. distribute-lft-inN/A

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

                          \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \color{blue}{\left(\frac{y}{y} \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)\right)} \]
                      11. Applied rewrites34.5%

                        \[\leadsto \color{blue}{\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)} \]

                      if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                      1. Initial program 100.0%

                        \[\cos x \cdot \frac{\sinh y}{y} \]
                      2. Add Preprocessing
                      3. Taylor expanded in x around 0

                        \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                      4. Step-by-step derivation
                        1. Applied rewrites88.1%

                          \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                        2. Step-by-step derivation
                          1. lift-sinh.f64N/A

                            \[\leadsto 1 \cdot \frac{\color{blue}{\sinh y}}{y} \]
                          2. lift-/.f64N/A

                            \[\leadsto 1 \cdot \color{blue}{\frac{\sinh y}{y}} \]
                          3. *-lft-identity88.1

                            \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
                        3. Applied rewrites88.1%

                          \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
                        4. Taylor expanded in y around 0

                          \[\leadsto \frac{\color{blue}{y \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
                        5. Step-by-step derivation
                          1. *-commutativeN/A

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

                            \[\leadsto \frac{\color{blue}{\left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) + 1\right)} \cdot y}{y} \]
                          3. distribute-lft1-inN/A

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

                            \[\leadsto \frac{\color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)} + y}{y} \]
                          5. associate-*r*N/A

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

                            \[\leadsto \frac{\color{blue}{\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) \cdot \left(y \cdot {y}^{2}\right)} + y}{y} \]
                          7. lower-fma.f64N/A

                            \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right), y \cdot {y}^{2}, y\right)}}{y} \]
                        6. Applied rewrites80.9%

                          \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), y \cdot \left(y \cdot y\right), y\right)}}{y} \]
                        7. Step-by-step derivation
                          1. lift-*.f64N/A

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

                            \[\leadsto \frac{\left(y \cdot \left(y \cdot \color{blue}{\mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right)}\right) + \frac{1}{6}\right) \cdot \left(y \cdot \left(y \cdot y\right)\right) + y}{y} \]
                          3. lift-*.f64N/A

                            \[\leadsto \frac{\left(y \cdot \color{blue}{\left(y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right)\right)} + \frac{1}{6}\right) \cdot \left(y \cdot \left(y \cdot y\right)\right) + y}{y} \]
                          4. lift-fma.f64N/A

                            \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right)} \cdot \left(y \cdot \left(y \cdot y\right)\right) + y}{y} \]
                          5. lift-*.f64N/A

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

                            \[\leadsto \frac{\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot \color{blue}{\left(y \cdot \left(y \cdot y\right)\right)} + y}{y} \]
                          7. lift-*.f64N/A

                            \[\leadsto \frac{\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot \color{blue}{\left(y \cdot \left(y \cdot y\right)\right)} + y}{y} \]
                          8. associate-*r*N/A

                            \[\leadsto \frac{\color{blue}{\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot y\right) \cdot \left(y \cdot y\right)} + y}{y} \]
                          9. lift-*.f64N/A

                            \[\leadsto \frac{\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot y\right) \cdot \color{blue}{\left(y \cdot y\right)} + y}{y} \]
                          10. associate-*r*N/A

                            \[\leadsto \frac{\color{blue}{\left(\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot y\right) \cdot y\right) \cdot y} + y}{y} \]
                          11. lower-fma.f64N/A

                            \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot \frac{1}{5040}, \frac{1}{120}\right), \frac{1}{6}\right) \cdot y\right) \cdot y, y, y\right)}}{y} \]
                        8. Applied rewrites80.9%

                          \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\left(y \cdot \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(0.0001984126984126984, y \cdot y, 0.008333333333333333\right), 0.16666666666666666\right)\right) \cdot y, y, y\right)}}{y} \]
                      5. Recombined 2 regimes into one program.
                      6. Final simplification69.4%

                        \[\leadsto \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(0.0001984126984126984, y \cdot y, 0.008333333333333333\right), 0.16666666666666666\right)\right), y, y\right)}{y}\\ \end{array} \]
                      7. Add Preprocessing

                      Alternative 9: 72.0% accurate, 0.8× speedup?

                      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \left(\left(y \cdot y\right) \cdot 0.0001984126984126984\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y}\\ \end{array} \end{array} \]
                      (FPCore (x y)
                       :precision binary64
                       (if (<= (* (cos x) (/ (sinh y) y)) -0.04)
                         (*
                          (* -0.5 (* x x))
                          (fma
                           (* y y)
                           (fma
                            (* y y)
                            (fma y (* y 0.0001984126984126984) 0.008333333333333333)
                            0.16666666666666666)
                           1.0))
                         (/ (fma (* y (* y (* (* y y) 0.0001984126984126984))) (* y (* y y)) y) y)))
                      double code(double x, double y) {
                      	double tmp;
                      	if ((cos(x) * (sinh(y) / y)) <= -0.04) {
                      		tmp = (-0.5 * (x * x)) * fma((y * y), fma((y * y), fma(y, (y * 0.0001984126984126984), 0.008333333333333333), 0.16666666666666666), 1.0);
                      	} else {
                      		tmp = fma((y * (y * ((y * y) * 0.0001984126984126984))), (y * (y * y)), y) / y;
                      	}
                      	return tmp;
                      }
                      
                      function code(x, y)
                      	tmp = 0.0
                      	if (Float64(cos(x) * Float64(sinh(y) / y)) <= -0.04)
                      		tmp = Float64(Float64(-0.5 * Float64(x * x)) * fma(Float64(y * y), fma(Float64(y * y), fma(y, Float64(y * 0.0001984126984126984), 0.008333333333333333), 0.16666666666666666), 1.0));
                      	else
                      		tmp = Float64(fma(Float64(y * Float64(y * Float64(Float64(y * y) * 0.0001984126984126984))), Float64(y * Float64(y * y)), y) / y);
                      	end
                      	return tmp
                      end
                      
                      code[x_, y_] := If[LessEqual[N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], -0.04], N[(N[(-0.5 * N[(x * x), $MachinePrecision]), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(y * N[(y * 0.0001984126984126984), $MachinePrecision] + 0.008333333333333333), $MachinePrecision] + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], N[(N[(N[(y * N[(y * N[(N[(y * y), $MachinePrecision] * 0.0001984126984126984), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(y * N[(y * y), $MachinePrecision]), $MachinePrecision] + y), $MachinePrecision] / y), $MachinePrecision]]
                      
                      \begin{array}{l}
                      
                      \\
                      \begin{array}{l}
                      \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\
                      \;\;\;\;\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \left(\left(y \cdot y\right) \cdot 0.0001984126984126984\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y}\\
                      
                      
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 2 regimes
                      2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

                        1. Initial program 100.0%

                          \[\cos x \cdot \frac{\sinh y}{y} \]
                        2. Add Preprocessing
                        3. Taylor expanded in x around 0

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

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

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

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

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

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

                            \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
                          7. lower-*.f6436.0

                            \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
                        5. Applied rewrites36.0%

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

                          \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{y \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
                        7. Step-by-step derivation
                          1. +-commutativeN/A

                            \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{y \cdot \color{blue}{\left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) + 1\right)}}{y} \]
                          2. distribute-lft-inN/A

                            \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right) + y \cdot 1}}{y} \]
                          3. associate-*r*N/A

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

                            \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) \cdot \left(y \cdot {y}^{2}\right)} + y \cdot 1}{y} \]
                          5. *-rgt-identityN/A

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

                            \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right), y \cdot {y}^{2}, y\right)}}{y} \]
                        8. Applied rewrites34.5%

                          \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \frac{\color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), y \cdot \left(y \cdot y\right), y\right)}}{y} \]
                        9. Taylor expanded in x around inf

                          \[\leadsto \color{blue}{\frac{-1}{2} \cdot \frac{{x}^{2} \cdot \left(y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}{y}} \]
                        10. Step-by-step derivation
                          1. associate-/l*N/A

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

                            \[\leadsto \color{blue}{\left(\frac{-1}{2} \cdot {x}^{2}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y}} \]
                          3. lower-*.f64N/A

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

                            \[\leadsto \color{blue}{\left(\frac{-1}{2} \cdot {x}^{2}\right)} \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                          5. unpow2N/A

                            \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                          6. lower-*.f64N/A

                            \[\leadsto \left(\frac{-1}{2} \cdot \color{blue}{\left(x \cdot x\right)}\right) \cdot \frac{y + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                          7. *-rgt-identityN/A

                            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{\color{blue}{y \cdot 1} + {y}^{3} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                          8. cube-multN/A

                            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \color{blue}{\left(y \cdot \left(y \cdot y\right)\right)} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                          9. unpow2N/A

                            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \left(y \cdot \color{blue}{{y}^{2}}\right) \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)}{y} \]
                          10. associate-*r*N/A

                            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \frac{y \cdot 1 + \color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
                          11. distribute-lft-inN/A

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

                            \[\leadsto \left(\frac{-1}{2} \cdot \left(x \cdot x\right)\right) \cdot \color{blue}{\left(\frac{y}{y} \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)\right)} \]
                        11. Applied rewrites34.5%

                          \[\leadsto \color{blue}{\left(-0.5 \cdot \left(x \cdot x\right)\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)} \]

                        if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                        1. Initial program 100.0%

                          \[\cos x \cdot \frac{\sinh y}{y} \]
                        2. Add Preprocessing
                        3. Taylor expanded in x around 0

                          \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                        4. Step-by-step derivation
                          1. Applied rewrites88.1%

                            \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                          2. Step-by-step derivation
                            1. lift-sinh.f64N/A

                              \[\leadsto 1 \cdot \frac{\color{blue}{\sinh y}}{y} \]
                            2. lift-/.f64N/A

                              \[\leadsto 1 \cdot \color{blue}{\frac{\sinh y}{y}} \]
                            3. *-lft-identity88.1

                              \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
                          3. Applied rewrites88.1%

                            \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
                          4. Taylor expanded in y around 0

                            \[\leadsto \frac{\color{blue}{y \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
                          5. Step-by-step derivation
                            1. *-commutativeN/A

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

                              \[\leadsto \frac{\color{blue}{\left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) + 1\right)} \cdot y}{y} \]
                            3. distribute-lft1-inN/A

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

                              \[\leadsto \frac{\color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)} + y}{y} \]
                            5. associate-*r*N/A

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

                              \[\leadsto \frac{\color{blue}{\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) \cdot \left(y \cdot {y}^{2}\right)} + y}{y} \]
                            7. lower-fma.f64N/A

                              \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right), y \cdot {y}^{2}, y\right)}}{y} \]
                          6. Applied rewrites80.9%

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

                            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{1}{5040} \cdot {y}^{4}}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                          8. Step-by-step derivation
                            1. metadata-evalN/A

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

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

                              \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{1}{5040} \cdot {y}^{2}\right) \cdot {y}^{2}}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            4. unpow2N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{1}{5040} \cdot {y}^{2}\right) \cdot \color{blue}{\left(y \cdot y\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            5. associate-*r*N/A

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

                              \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{1}{5040} \cdot \left({y}^{2} \cdot y\right)\right)} \cdot y, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            7. unpow2N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{1}{5040} \cdot \left(\color{blue}{\left(y \cdot y\right)} \cdot y\right)\right) \cdot y, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            8. unpow3N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{1}{5040} \cdot \color{blue}{{y}^{3}}\right) \cdot y, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            9. *-commutativeN/A

                              \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{y \cdot \left(\frac{1}{5040} \cdot {y}^{3}\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            10. lower-*.f64N/A

                              \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{y \cdot \left(\frac{1}{5040} \cdot {y}^{3}\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            11. unpow3N/A

                              \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(\frac{1}{5040} \cdot \color{blue}{\left(\left(y \cdot y\right) \cdot y\right)}\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            12. unpow2N/A

                              \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(\frac{1}{5040} \cdot \left(\color{blue}{{y}^{2}} \cdot y\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            13. associate-*r*N/A

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

                              \[\leadsto \frac{\mathsf{fma}\left(y \cdot \color{blue}{\left(y \cdot \left(\frac{1}{5040} \cdot {y}^{2}\right)\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            15. lower-*.f64N/A

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

                              \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(y \cdot \color{blue}{\left({y}^{2} \cdot \frac{1}{5040}\right)}\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            17. lower-*.f64N/A

                              \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(y \cdot \color{blue}{\left({y}^{2} \cdot \frac{1}{5040}\right)}\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            18. unpow2N/A

                              \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(y \cdot \left(\color{blue}{\left(y \cdot y\right)} \cdot \frac{1}{5040}\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            19. lower-*.f6480.3

                              \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(y \cdot \left(\color{blue}{\left(y \cdot y\right)} \cdot 0.0001984126984126984\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                          9. Applied rewrites80.3%

                            \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{y \cdot \left(y \cdot \left(\left(y \cdot y\right) \cdot 0.0001984126984126984\right)\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                        5. Recombined 2 regimes into one program.
                        6. Add Preprocessing

                        Alternative 10: 71.6% accurate, 0.8× speedup?

                        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \left(\left(y \cdot y\right) \cdot 0.0001984126984126984\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y}\\ \end{array} \end{array} \]
                        (FPCore (x y)
                         :precision binary64
                         (if (<= (* (cos x) (/ (sinh y) y)) -0.04)
                           (*
                            (fma x (* x -0.5) 1.0)
                            (fma (* y y) (fma (* y y) 0.008333333333333333 0.16666666666666666) 1.0))
                           (/ (fma (* y (* y (* (* y y) 0.0001984126984126984))) (* y (* y y)) y) y)))
                        double code(double x, double y) {
                        	double tmp;
                        	if ((cos(x) * (sinh(y) / y)) <= -0.04) {
                        		tmp = fma(x, (x * -0.5), 1.0) * fma((y * y), fma((y * y), 0.008333333333333333, 0.16666666666666666), 1.0);
                        	} else {
                        		tmp = fma((y * (y * ((y * y) * 0.0001984126984126984))), (y * (y * y)), y) / y;
                        	}
                        	return tmp;
                        }
                        
                        function code(x, y)
                        	tmp = 0.0
                        	if (Float64(cos(x) * Float64(sinh(y) / y)) <= -0.04)
                        		tmp = Float64(fma(x, Float64(x * -0.5), 1.0) * fma(Float64(y * y), fma(Float64(y * y), 0.008333333333333333, 0.16666666666666666), 1.0));
                        	else
                        		tmp = Float64(fma(Float64(y * Float64(y * Float64(Float64(y * y) * 0.0001984126984126984))), Float64(y * Float64(y * y)), y) / y);
                        	end
                        	return tmp
                        end
                        
                        code[x_, y_] := If[LessEqual[N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], -0.04], N[(N[(x * N[(x * -0.5), $MachinePrecision] + 1.0), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * 0.008333333333333333 + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], N[(N[(N[(y * N[(y * N[(N[(y * y), $MachinePrecision] * 0.0001984126984126984), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(y * N[(y * y), $MachinePrecision]), $MachinePrecision] + y), $MachinePrecision] / y), $MachinePrecision]]
                        
                        \begin{array}{l}
                        
                        \\
                        \begin{array}{l}
                        \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\
                        \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)\\
                        
                        \mathbf{else}:\\
                        \;\;\;\;\frac{\mathsf{fma}\left(y \cdot \left(y \cdot \left(\left(y \cdot y\right) \cdot 0.0001984126984126984\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y}\\
                        
                        
                        \end{array}
                        \end{array}
                        
                        Derivation
                        1. Split input into 2 regimes
                        2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

                          1. Initial program 100.0%

                            \[\cos x \cdot \frac{\sinh y}{y} \]
                          2. Add Preprocessing
                          3. Taylor expanded in x around 0

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

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

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

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

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

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

                              \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
                            7. lower-*.f6436.0

                              \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
                          5. Applied rewrites36.0%

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

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

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

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

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

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

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

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

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

                              \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, \frac{1}{120}, \frac{1}{6}\right), 1\right) \]
                            9. lower-*.f6434.5

                              \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, 0.008333333333333333, 0.16666666666666666\right), 1\right) \]
                          8. Applied rewrites34.5%

                            \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \color{blue}{\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)} \]

                          if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                          1. Initial program 100.0%

                            \[\cos x \cdot \frac{\sinh y}{y} \]
                          2. Add Preprocessing
                          3. Taylor expanded in x around 0

                            \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                          4. Step-by-step derivation
                            1. Applied rewrites88.1%

                              \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                            2. Step-by-step derivation
                              1. lift-sinh.f64N/A

                                \[\leadsto 1 \cdot \frac{\color{blue}{\sinh y}}{y} \]
                              2. lift-/.f64N/A

                                \[\leadsto 1 \cdot \color{blue}{\frac{\sinh y}{y}} \]
                              3. *-lft-identity88.1

                                \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
                            3. Applied rewrites88.1%

                              \[\leadsto \color{blue}{\frac{\sinh y}{y}} \]
                            4. Taylor expanded in y around 0

                              \[\leadsto \frac{\color{blue}{y \cdot \left(1 + {y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)}}{y} \]
                            5. Step-by-step derivation
                              1. *-commutativeN/A

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

                                \[\leadsto \frac{\color{blue}{\left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) + 1\right)} \cdot y}{y} \]
                              3. distribute-lft1-inN/A

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

                                \[\leadsto \frac{\color{blue}{y \cdot \left({y}^{2} \cdot \left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right)\right)} + y}{y} \]
                              5. associate-*r*N/A

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

                                \[\leadsto \frac{\color{blue}{\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right)\right) \cdot \left(y \cdot {y}^{2}\right)} + y}{y} \]
                              7. lower-fma.f64N/A

                                \[\leadsto \frac{\color{blue}{\mathsf{fma}\left(\frac{1}{6} + {y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right), y \cdot {y}^{2}, y\right)}}{y} \]
                            6. Applied rewrites80.9%

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

                              \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\frac{1}{5040} \cdot {y}^{4}}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            8. Step-by-step derivation
                              1. metadata-evalN/A

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

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

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{1}{5040} \cdot {y}^{2}\right) \cdot {y}^{2}}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              4. unpow2N/A

                                \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{1}{5040} \cdot {y}^{2}\right) \cdot \color{blue}{\left(y \cdot y\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              5. associate-*r*N/A

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

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{\left(\frac{1}{5040} \cdot \left({y}^{2} \cdot y\right)\right)} \cdot y, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              7. unpow2N/A

                                \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{1}{5040} \cdot \left(\color{blue}{\left(y \cdot y\right)} \cdot y\right)\right) \cdot y, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              8. unpow3N/A

                                \[\leadsto \frac{\mathsf{fma}\left(\left(\frac{1}{5040} \cdot \color{blue}{{y}^{3}}\right) \cdot y, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              9. *-commutativeN/A

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{y \cdot \left(\frac{1}{5040} \cdot {y}^{3}\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              10. lower-*.f64N/A

                                \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{y \cdot \left(\frac{1}{5040} \cdot {y}^{3}\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              11. unpow3N/A

                                \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(\frac{1}{5040} \cdot \color{blue}{\left(\left(y \cdot y\right) \cdot y\right)}\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              12. unpow2N/A

                                \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(\frac{1}{5040} \cdot \left(\color{blue}{{y}^{2}} \cdot y\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              13. associate-*r*N/A

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

                                \[\leadsto \frac{\mathsf{fma}\left(y \cdot \color{blue}{\left(y \cdot \left(\frac{1}{5040} \cdot {y}^{2}\right)\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              15. lower-*.f64N/A

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

                                \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(y \cdot \color{blue}{\left({y}^{2} \cdot \frac{1}{5040}\right)}\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              17. lower-*.f64N/A

                                \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(y \cdot \color{blue}{\left({y}^{2} \cdot \frac{1}{5040}\right)}\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              18. unpow2N/A

                                \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(y \cdot \left(\color{blue}{\left(y \cdot y\right)} \cdot \frac{1}{5040}\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                              19. lower-*.f6480.3

                                \[\leadsto \frac{\mathsf{fma}\left(y \cdot \left(y \cdot \left(\color{blue}{\left(y \cdot y\right)} \cdot 0.0001984126984126984\right)\right), y \cdot \left(y \cdot y\right), y\right)}{y} \]
                            9. Applied rewrites80.3%

                              \[\leadsto \frac{\mathsf{fma}\left(\color{blue}{y \cdot \left(y \cdot \left(\left(y \cdot y\right) \cdot 0.0001984126984126984\right)\right)}, y \cdot \left(y \cdot y\right), y\right)}{y} \]
                          5. Recombined 2 regimes into one program.
                          6. Add Preprocessing

                          Alternative 11: 70.9% accurate, 0.8× speedup?

                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\ \end{array} \end{array} \]
                          (FPCore (x y)
                           :precision binary64
                           (if (<= (* (cos x) (/ (sinh y) y)) -0.04)
                             (*
                              (fma x (* x -0.5) 1.0)
                              (fma (* y y) (fma (* y y) 0.008333333333333333 0.16666666666666666) 1.0))
                             (fma
                              (* y y)
                              (fma
                               y
                               (* y (fma y (* y 0.0001984126984126984) 0.008333333333333333))
                               0.16666666666666666)
                              1.0)))
                          double code(double x, double y) {
                          	double tmp;
                          	if ((cos(x) * (sinh(y) / y)) <= -0.04) {
                          		tmp = fma(x, (x * -0.5), 1.0) * fma((y * y), fma((y * y), 0.008333333333333333, 0.16666666666666666), 1.0);
                          	} else {
                          		tmp = fma((y * y), fma(y, (y * fma(y, (y * 0.0001984126984126984), 0.008333333333333333)), 0.16666666666666666), 1.0);
                          	}
                          	return tmp;
                          }
                          
                          function code(x, y)
                          	tmp = 0.0
                          	if (Float64(cos(x) * Float64(sinh(y) / y)) <= -0.04)
                          		tmp = Float64(fma(x, Float64(x * -0.5), 1.0) * fma(Float64(y * y), fma(Float64(y * y), 0.008333333333333333, 0.16666666666666666), 1.0));
                          	else
                          		tmp = fma(Float64(y * y), fma(y, Float64(y * fma(y, Float64(y * 0.0001984126984126984), 0.008333333333333333)), 0.16666666666666666), 1.0);
                          	end
                          	return tmp
                          end
                          
                          code[x_, y_] := If[LessEqual[N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], -0.04], N[(N[(x * N[(x * -0.5), $MachinePrecision] + 1.0), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * 0.008333333333333333 + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], N[(N[(y * y), $MachinePrecision] * N[(y * N[(y * N[(y * N[(y * 0.0001984126984126984), $MachinePrecision] + 0.008333333333333333), $MachinePrecision]), $MachinePrecision] + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]]
                          
                          \begin{array}{l}
                          
                          \\
                          \begin{array}{l}
                          \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\
                          \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\
                          
                          
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 2 regimes
                          2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

                            1. Initial program 100.0%

                              \[\cos x \cdot \frac{\sinh y}{y} \]
                            2. Add Preprocessing
                            3. Taylor expanded in x around 0

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

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

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

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

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

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

                                \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
                              7. lower-*.f6436.0

                                \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
                            5. Applied rewrites36.0%

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

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

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

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

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

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

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

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

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

                                \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, \frac{1}{120}, \frac{1}{6}\right), 1\right) \]
                              9. lower-*.f6434.5

                                \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, 0.008333333333333333, 0.16666666666666666\right), 1\right) \]
                            8. Applied rewrites34.5%

                              \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \color{blue}{\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)} \]

                            if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                            1. Initial program 100.0%

                              \[\cos x \cdot \frac{\sinh y}{y} \]
                            2. Add Preprocessing
                            3. Taylor expanded in x around 0

                              \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                            4. Step-by-step derivation
                              1. Applied rewrites88.1%

                                \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                              2. Taylor expanded in y around 0

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

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

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

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

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

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{{y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right) + \frac{1}{6}}, 1\right) \]
                                6. unpow2N/A

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\left(y \cdot y\right)} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right) + \frac{1}{6}, 1\right) \]
                                7. associate-*l*N/A

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

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

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

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \color{blue}{\left(\frac{1}{5040} \cdot {y}^{2} + \frac{1}{120}\right)}, \frac{1}{6}\right), 1\right) \]
                                11. unpow2N/A

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \left(\frac{1}{5040} \cdot \color{blue}{\left(y \cdot y\right)} + \frac{1}{120}\right), \frac{1}{6}\right), 1\right) \]
                                12. associate-*r*N/A

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \left(\color{blue}{\left(\frac{1}{5040} \cdot y\right) \cdot y} + \frac{1}{120}\right), \frac{1}{6}\right), 1\right) \]
                                13. *-commutativeN/A

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \left(\color{blue}{y \cdot \left(\frac{1}{5040} \cdot y\right)} + \frac{1}{120}\right), \frac{1}{6}\right), 1\right) \]
                                14. lower-fma.f64N/A

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \color{blue}{\mathsf{fma}\left(y, \frac{1}{5040} \cdot y, \frac{1}{120}\right)}, \frac{1}{6}\right), 1\right) \]
                                15. *-commutativeN/A

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, \color{blue}{y \cdot \frac{1}{5040}}, \frac{1}{120}\right), \frac{1}{6}\right), 1\right) \]
                                16. lower-*.f6479.9

                                  \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, \color{blue}{y \cdot 0.0001984126984126984}, 0.008333333333333333\right), 0.16666666666666666\right), 1\right) \]
                              4. Applied rewrites79.9%

                                \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)} \]
                            5. Recombined 2 regimes into one program.
                            6. Add Preprocessing

                            Alternative 12: 70.1% accurate, 0.8× speedup?

                            \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\ \end{array} \end{array} \]
                            (FPCore (x y)
                             :precision binary64
                             (if (<= (* (cos x) (/ (sinh y) y)) -0.04)
                               (* (fma x (* x -0.5) 1.0) (fma 0.16666666666666666 (* y y) 1.0))
                               (fma
                                (* y y)
                                (fma
                                 y
                                 (* y (fma y (* y 0.0001984126984126984) 0.008333333333333333))
                                 0.16666666666666666)
                                1.0)))
                            double code(double x, double y) {
                            	double tmp;
                            	if ((cos(x) * (sinh(y) / y)) <= -0.04) {
                            		tmp = fma(x, (x * -0.5), 1.0) * fma(0.16666666666666666, (y * y), 1.0);
                            	} else {
                            		tmp = fma((y * y), fma(y, (y * fma(y, (y * 0.0001984126984126984), 0.008333333333333333)), 0.16666666666666666), 1.0);
                            	}
                            	return tmp;
                            }
                            
                            function code(x, y)
                            	tmp = 0.0
                            	if (Float64(cos(x) * Float64(sinh(y) / y)) <= -0.04)
                            		tmp = Float64(fma(x, Float64(x * -0.5), 1.0) * fma(0.16666666666666666, Float64(y * y), 1.0));
                            	else
                            		tmp = fma(Float64(y * y), fma(y, Float64(y * fma(y, Float64(y * 0.0001984126984126984), 0.008333333333333333)), 0.16666666666666666), 1.0);
                            	end
                            	return tmp
                            end
                            
                            code[x_, y_] := If[LessEqual[N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], -0.04], N[(N[(x * N[(x * -0.5), $MachinePrecision] + 1.0), $MachinePrecision] * N[(0.16666666666666666 * N[(y * y), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], N[(N[(y * y), $MachinePrecision] * N[(y * N[(y * N[(y * N[(y * 0.0001984126984126984), $MachinePrecision] + 0.008333333333333333), $MachinePrecision]), $MachinePrecision] + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]]
                            
                            \begin{array}{l}
                            
                            \\
                            \begin{array}{l}
                            \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\
                            \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\
                            
                            \mathbf{else}:\\
                            \;\;\;\;\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)\\
                            
                            
                            \end{array}
                            \end{array}
                            
                            Derivation
                            1. Split input into 2 regimes
                            2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

                              1. Initial program 100.0%

                                \[\cos x \cdot \frac{\sinh y}{y} \]
                              2. Add Preprocessing
                              3. Taylor expanded in x around 0

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

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

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

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

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

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

                                  \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
                                7. lower-*.f6436.0

                                  \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
                              5. Applied rewrites36.0%

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

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

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

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

                                  \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \mathsf{fma}\left(\frac{1}{6}, \color{blue}{y \cdot y}, 1\right) \]
                                4. lower-*.f6434.5

                                  \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(0.16666666666666666, \color{blue}{y \cdot y}, 1\right) \]
                              8. Applied rewrites34.5%

                                \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \color{blue}{\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)} \]

                              if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                              1. Initial program 100.0%

                                \[\cos x \cdot \frac{\sinh y}{y} \]
                              2. Add Preprocessing
                              3. Taylor expanded in x around 0

                                \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                              4. Step-by-step derivation
                                1. Applied rewrites88.1%

                                  \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                2. Taylor expanded in y around 0

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

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

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

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

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

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{{y}^{2} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right) + \frac{1}{6}}, 1\right) \]
                                  6. unpow2N/A

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\left(y \cdot y\right)} \cdot \left(\frac{1}{120} + \frac{1}{5040} \cdot {y}^{2}\right) + \frac{1}{6}, 1\right) \]
                                  7. associate-*l*N/A

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

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

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

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \color{blue}{\left(\frac{1}{5040} \cdot {y}^{2} + \frac{1}{120}\right)}, \frac{1}{6}\right), 1\right) \]
                                  11. unpow2N/A

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \left(\frac{1}{5040} \cdot \color{blue}{\left(y \cdot y\right)} + \frac{1}{120}\right), \frac{1}{6}\right), 1\right) \]
                                  12. associate-*r*N/A

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \left(\color{blue}{\left(\frac{1}{5040} \cdot y\right) \cdot y} + \frac{1}{120}\right), \frac{1}{6}\right), 1\right) \]
                                  13. *-commutativeN/A

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \left(\color{blue}{y \cdot \left(\frac{1}{5040} \cdot y\right)} + \frac{1}{120}\right), \frac{1}{6}\right), 1\right) \]
                                  14. lower-fma.f64N/A

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \color{blue}{\mathsf{fma}\left(y, \frac{1}{5040} \cdot y, \frac{1}{120}\right)}, \frac{1}{6}\right), 1\right) \]
                                  15. *-commutativeN/A

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, \color{blue}{y \cdot \frac{1}{5040}}, \frac{1}{120}\right), \frac{1}{6}\right), 1\right) \]
                                  16. lower-*.f6479.9

                                    \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, \color{blue}{y \cdot 0.0001984126984126984}, 0.008333333333333333\right), 0.16666666666666666\right), 1\right) \]
                                4. Applied rewrites79.9%

                                  \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y, y \cdot \mathsf{fma}\left(y, y \cdot 0.0001984126984126984, 0.008333333333333333\right), 0.16666666666666666\right), 1\right)} \]
                              5. Recombined 2 regimes into one program.
                              6. Add Preprocessing

                              Alternative 13: 67.1% accurate, 0.9× speedup?

                              \[\begin{array}{l} \\ \begin{array}{l} t_0 := \mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\ \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot t\_0\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(y \cdot \left(y \cdot y\right), y \cdot 0.008333333333333333, t\_0\right)\\ \end{array} \end{array} \]
                              (FPCore (x y)
                               :precision binary64
                               (let* ((t_0 (fma 0.16666666666666666 (* y y) 1.0)))
                                 (if (<= (* (cos x) (/ (sinh y) y)) -0.04)
                                   (* (fma x (* x -0.5) 1.0) t_0)
                                   (fma (* y (* y y)) (* y 0.008333333333333333) t_0))))
                              double code(double x, double y) {
                              	double t_0 = fma(0.16666666666666666, (y * y), 1.0);
                              	double tmp;
                              	if ((cos(x) * (sinh(y) / y)) <= -0.04) {
                              		tmp = fma(x, (x * -0.5), 1.0) * t_0;
                              	} else {
                              		tmp = fma((y * (y * y)), (y * 0.008333333333333333), t_0);
                              	}
                              	return tmp;
                              }
                              
                              function code(x, y)
                              	t_0 = fma(0.16666666666666666, Float64(y * y), 1.0)
                              	tmp = 0.0
                              	if (Float64(cos(x) * Float64(sinh(y) / y)) <= -0.04)
                              		tmp = Float64(fma(x, Float64(x * -0.5), 1.0) * t_0);
                              	else
                              		tmp = fma(Float64(y * Float64(y * y)), Float64(y * 0.008333333333333333), t_0);
                              	end
                              	return tmp
                              end
                              
                              code[x_, y_] := Block[{t$95$0 = N[(0.16666666666666666 * N[(y * y), $MachinePrecision] + 1.0), $MachinePrecision]}, If[LessEqual[N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], -0.04], N[(N[(x * N[(x * -0.5), $MachinePrecision] + 1.0), $MachinePrecision] * t$95$0), $MachinePrecision], N[(N[(y * N[(y * y), $MachinePrecision]), $MachinePrecision] * N[(y * 0.008333333333333333), $MachinePrecision] + t$95$0), $MachinePrecision]]]
                              
                              \begin{array}{l}
                              
                              \\
                              \begin{array}{l}
                              t_0 := \mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\
                              \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\
                              \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot t\_0\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;\mathsf{fma}\left(y \cdot \left(y \cdot y\right), y \cdot 0.008333333333333333, t\_0\right)\\
                              
                              
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 2 regimes
                              2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

                                1. Initial program 100.0%

                                  \[\cos x \cdot \frac{\sinh y}{y} \]
                                2. Add Preprocessing
                                3. Taylor expanded in x around 0

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

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

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

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

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

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

                                    \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
                                  7. lower-*.f6436.0

                                    \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
                                5. Applied rewrites36.0%

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

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

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

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

                                    \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \mathsf{fma}\left(\frac{1}{6}, \color{blue}{y \cdot y}, 1\right) \]
                                  4. lower-*.f6434.5

                                    \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(0.16666666666666666, \color{blue}{y \cdot y}, 1\right) \]
                                8. Applied rewrites34.5%

                                  \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \color{blue}{\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)} \]

                                if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                                1. Initial program 100.0%

                                  \[\cos x \cdot \frac{\sinh y}{y} \]
                                2. Add Preprocessing
                                3. Taylor expanded in x around 0

                                  \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                4. Step-by-step derivation
                                  1. Applied rewrites88.1%

                                    \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                  2. Taylor expanded in y around 0

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

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

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

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

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

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

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

                                      \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\mathsf{fma}\left({y}^{2}, \frac{1}{120}, \frac{1}{6}\right)}, 1\right) \]
                                    8. unpow2N/A

                                      \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, \frac{1}{120}, \frac{1}{6}\right), 1\right) \]
                                    9. lower-*.f6473.5

                                      \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, 0.008333333333333333, 0.16666666666666666\right), 1\right) \]
                                  4. Applied rewrites73.5%

                                    \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)} \]
                                  5. Step-by-step derivation
                                    1. lift-*.f64N/A

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

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

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

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

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

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

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

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

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

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

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

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

                                      \[\leadsto \left(y \cdot \left(y \cdot y\right)\right) \cdot \left(y \cdot \frac{1}{120}\right) + \color{blue}{\mathsf{fma}\left(\frac{1}{6}, y \cdot y, 1\right)} \]
                                    14. lower-fma.f64N/A

                                      \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot \left(y \cdot y\right), y \cdot \frac{1}{120}, \mathsf{fma}\left(\frac{1}{6}, y \cdot y, 1\right)\right)} \]
                                    15. lower-*.f6473.5

                                      \[\leadsto \mathsf{fma}\left(y \cdot \left(y \cdot y\right), \color{blue}{y \cdot 0.008333333333333333}, \mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\right) \]
                                  6. Applied rewrites73.5%

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

                                Alternative 14: 67.1% accurate, 0.9× speedup?

                                \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)\\ \end{array} \end{array} \]
                                (FPCore (x y)
                                 :precision binary64
                                 (if (<= (* (cos x) (/ (sinh y) y)) -0.04)
                                   (* (fma x (* x -0.5) 1.0) (fma 0.16666666666666666 (* y y) 1.0))
                                   (fma (* y y) (fma (* y y) 0.008333333333333333 0.16666666666666666) 1.0)))
                                double code(double x, double y) {
                                	double tmp;
                                	if ((cos(x) * (sinh(y) / y)) <= -0.04) {
                                		tmp = fma(x, (x * -0.5), 1.0) * fma(0.16666666666666666, (y * y), 1.0);
                                	} else {
                                		tmp = fma((y * y), fma((y * y), 0.008333333333333333, 0.16666666666666666), 1.0);
                                	}
                                	return tmp;
                                }
                                
                                function code(x, y)
                                	tmp = 0.0
                                	if (Float64(cos(x) * Float64(sinh(y) / y)) <= -0.04)
                                		tmp = Float64(fma(x, Float64(x * -0.5), 1.0) * fma(0.16666666666666666, Float64(y * y), 1.0));
                                	else
                                		tmp = fma(Float64(y * y), fma(Float64(y * y), 0.008333333333333333, 0.16666666666666666), 1.0);
                                	end
                                	return tmp
                                end
                                
                                code[x_, y_] := If[LessEqual[N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], -0.04], N[(N[(x * N[(x * -0.5), $MachinePrecision] + 1.0), $MachinePrecision] * N[(0.16666666666666666 * N[(y * y), $MachinePrecision] + 1.0), $MachinePrecision]), $MachinePrecision], N[(N[(y * y), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * 0.008333333333333333 + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]]
                                
                                \begin{array}{l}
                                
                                \\
                                \begin{array}{l}
                                \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq -0.04:\\
                                \;\;\;\;\mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\
                                
                                \mathbf{else}:\\
                                \;\;\;\;\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)\\
                                
                                
                                \end{array}
                                \end{array}
                                
                                Derivation
                                1. Split input into 2 regimes
                                2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < -0.0400000000000000008

                                  1. Initial program 100.0%

                                    \[\cos x \cdot \frac{\sinh y}{y} \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in x around 0

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

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

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

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

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

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

                                      \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot \frac{-1}{2}}, 1\right) \cdot \frac{\sinh y}{y} \]
                                    7. lower-*.f6436.0

                                      \[\leadsto \mathsf{fma}\left(x, \color{blue}{x \cdot -0.5}, 1\right) \cdot \frac{\sinh y}{y} \]
                                  5. Applied rewrites36.0%

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

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

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

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

                                      \[\leadsto \mathsf{fma}\left(x, x \cdot \frac{-1}{2}, 1\right) \cdot \mathsf{fma}\left(\frac{1}{6}, \color{blue}{y \cdot y}, 1\right) \]
                                    4. lower-*.f6434.5

                                      \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \mathsf{fma}\left(0.16666666666666666, \color{blue}{y \cdot y}, 1\right) \]
                                  8. Applied rewrites34.5%

                                    \[\leadsto \mathsf{fma}\left(x, x \cdot -0.5, 1\right) \cdot \color{blue}{\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)} \]

                                  if -0.0400000000000000008 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                                  1. Initial program 100.0%

                                    \[\cos x \cdot \frac{\sinh y}{y} \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in x around 0

                                    \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                  4. Step-by-step derivation
                                    1. Applied rewrites88.1%

                                      \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                    2. Taylor expanded in y around 0

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

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

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

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

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

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

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

                                        \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\mathsf{fma}\left({y}^{2}, \frac{1}{120}, \frac{1}{6}\right)}, 1\right) \]
                                      8. unpow2N/A

                                        \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, \frac{1}{120}, \frac{1}{6}\right), 1\right) \]
                                      9. lower-*.f6473.5

                                        \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, 0.008333333333333333, 0.16666666666666666\right), 1\right) \]
                                    4. Applied rewrites73.5%

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

                                  Alternative 15: 46.3% accurate, 0.9× speedup?

                                  \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq 2:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot y\right) \cdot 0.16666666666666666\\ \end{array} \end{array} \]
                                  (FPCore (x y)
                                   :precision binary64
                                   (if (<= (* (cos x) (/ (sinh y) y)) 2.0) 1.0 (* (* y y) 0.16666666666666666)))
                                  double code(double x, double y) {
                                  	double tmp;
                                  	if ((cos(x) * (sinh(y) / y)) <= 2.0) {
                                  		tmp = 1.0;
                                  	} else {
                                  		tmp = (y * y) * 0.16666666666666666;
                                  	}
                                  	return tmp;
                                  }
                                  
                                  real(8) function code(x, y)
                                      real(8), intent (in) :: x
                                      real(8), intent (in) :: y
                                      real(8) :: tmp
                                      if ((cos(x) * (sinh(y) / y)) <= 2.0d0) then
                                          tmp = 1.0d0
                                      else
                                          tmp = (y * y) * 0.16666666666666666d0
                                      end if
                                      code = tmp
                                  end function
                                  
                                  public static double code(double x, double y) {
                                  	double tmp;
                                  	if ((Math.cos(x) * (Math.sinh(y) / y)) <= 2.0) {
                                  		tmp = 1.0;
                                  	} else {
                                  		tmp = (y * y) * 0.16666666666666666;
                                  	}
                                  	return tmp;
                                  }
                                  
                                  def code(x, y):
                                  	tmp = 0
                                  	if (math.cos(x) * (math.sinh(y) / y)) <= 2.0:
                                  		tmp = 1.0
                                  	else:
                                  		tmp = (y * y) * 0.16666666666666666
                                  	return tmp
                                  
                                  function code(x, y)
                                  	tmp = 0.0
                                  	if (Float64(cos(x) * Float64(sinh(y) / y)) <= 2.0)
                                  		tmp = 1.0;
                                  	else
                                  		tmp = Float64(Float64(y * y) * 0.16666666666666666);
                                  	end
                                  	return tmp
                                  end
                                  
                                  function tmp_2 = code(x, y)
                                  	tmp = 0.0;
                                  	if ((cos(x) * (sinh(y) / y)) <= 2.0)
                                  		tmp = 1.0;
                                  	else
                                  		tmp = (y * y) * 0.16666666666666666;
                                  	end
                                  	tmp_2 = tmp;
                                  end
                                  
                                  code[x_, y_] := If[LessEqual[N[(N[Cos[x], $MachinePrecision] * N[(N[Sinh[y], $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision], 2.0], 1.0, N[(N[(y * y), $MachinePrecision] * 0.16666666666666666), $MachinePrecision]]
                                  
                                  \begin{array}{l}
                                  
                                  \\
                                  \begin{array}{l}
                                  \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq 2:\\
                                  \;\;\;\;1\\
                                  
                                  \mathbf{else}:\\
                                  \;\;\;\;\left(y \cdot y\right) \cdot 0.16666666666666666\\
                                  
                                  
                                  \end{array}
                                  \end{array}
                                  
                                  Derivation
                                  1. Split input into 2 regimes
                                  2. if (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y)) < 2

                                    1. Initial program 100.0%

                                      \[\cos x \cdot \frac{\sinh y}{y} \]
                                    2. Add Preprocessing
                                    3. Taylor expanded in y around 0

                                      \[\leadsto \color{blue}{\cos x} \]
                                    4. Step-by-step derivation
                                      1. lower-cos.f6485.8

                                        \[\leadsto \color{blue}{\cos x} \]
                                    5. Applied rewrites85.8%

                                      \[\leadsto \color{blue}{\cos x} \]
                                    6. Taylor expanded in x around 0

                                      \[\leadsto \color{blue}{1} \]
                                    7. Step-by-step derivation
                                      1. Applied rewrites44.0%

                                        \[\leadsto \color{blue}{1} \]

                                      if 2 < (*.f64 (cos.f64 x) (/.f64 (sinh.f64 y) y))

                                      1. Initial program 100.0%

                                        \[\cos x \cdot \frac{\sinh y}{y} \]
                                      2. Add Preprocessing
                                      3. Taylor expanded in x around 0

                                        \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                      4. Step-by-step derivation
                                        1. Applied rewrites100.0%

                                          \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                        2. Taylor expanded in y around 0

                                          \[\leadsto \color{blue}{1 + \frac{1}{6} \cdot {y}^{2}} \]
                                        3. Step-by-step derivation
                                          1. +-commutativeN/A

                                            \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2} + 1} \]
                                          2. lower-fma.f64N/A

                                            \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{6}, {y}^{2}, 1\right)} \]
                                          3. unpow2N/A

                                            \[\leadsto \mathsf{fma}\left(\frac{1}{6}, \color{blue}{y \cdot y}, 1\right) \]
                                          4. lower-*.f6450.3

                                            \[\leadsto \mathsf{fma}\left(0.16666666666666666, \color{blue}{y \cdot y}, 1\right) \]
                                        4. Applied rewrites50.3%

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

                                          \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2}} \]
                                        6. Step-by-step derivation
                                          1. lower-*.f64N/A

                                            \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2}} \]
                                          2. unpow2N/A

                                            \[\leadsto \frac{1}{6} \cdot \color{blue}{\left(y \cdot y\right)} \]
                                          3. lower-*.f6450.3

                                            \[\leadsto 0.16666666666666666 \cdot \color{blue}{\left(y \cdot y\right)} \]
                                        7. Applied rewrites50.3%

                                          \[\leadsto \color{blue}{0.16666666666666666 \cdot \left(y \cdot y\right)} \]
                                      5. Recombined 2 regimes into one program.
                                      6. Final simplification46.5%

                                        \[\leadsto \begin{array}{l} \mathbf{if}\;\cos x \cdot \frac{\sinh y}{y} \leq 2:\\ \;\;\;\;1\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot y\right) \cdot 0.16666666666666666\\ \end{array} \]
                                      7. Add Preprocessing

                                      Alternative 16: 62.4% accurate, 1.7× speedup?

                                      \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)\\ \end{array} \end{array} \]
                                      (FPCore (x y)
                                       :precision binary64
                                       (if (<= (cos x) -0.04)
                                         (fma -0.5 (* x x) 1.0)
                                         (fma (* y y) (fma (* y y) 0.008333333333333333 0.16666666666666666) 1.0)))
                                      double code(double x, double y) {
                                      	double tmp;
                                      	if (cos(x) <= -0.04) {
                                      		tmp = fma(-0.5, (x * x), 1.0);
                                      	} else {
                                      		tmp = fma((y * y), fma((y * y), 0.008333333333333333, 0.16666666666666666), 1.0);
                                      	}
                                      	return tmp;
                                      }
                                      
                                      function code(x, y)
                                      	tmp = 0.0
                                      	if (cos(x) <= -0.04)
                                      		tmp = fma(-0.5, Float64(x * x), 1.0);
                                      	else
                                      		tmp = fma(Float64(y * y), fma(Float64(y * y), 0.008333333333333333, 0.16666666666666666), 1.0);
                                      	end
                                      	return tmp
                                      end
                                      
                                      code[x_, y_] := If[LessEqual[N[Cos[x], $MachinePrecision], -0.04], N[(-0.5 * N[(x * x), $MachinePrecision] + 1.0), $MachinePrecision], N[(N[(y * y), $MachinePrecision] * N[(N[(y * y), $MachinePrecision] * 0.008333333333333333 + 0.16666666666666666), $MachinePrecision] + 1.0), $MachinePrecision]]
                                      
                                      \begin{array}{l}
                                      
                                      \\
                                      \begin{array}{l}
                                      \mathbf{if}\;\cos x \leq -0.04:\\
                                      \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\
                                      
                                      \mathbf{else}:\\
                                      \;\;\;\;\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)\\
                                      
                                      
                                      \end{array}
                                      \end{array}
                                      
                                      Derivation
                                      1. Split input into 2 regimes
                                      2. if (cos.f64 x) < -0.0400000000000000008

                                        1. Initial program 100.0%

                                          \[\cos x \cdot \frac{\sinh y}{y} \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in y around 0

                                          \[\leadsto \color{blue}{\cos x} \]
                                        4. Step-by-step derivation
                                          1. lower-cos.f6467.7

                                            \[\leadsto \color{blue}{\cos x} \]
                                        5. Applied rewrites67.7%

                                          \[\leadsto \color{blue}{\cos x} \]
                                        6. Taylor expanded in x around 0

                                          \[\leadsto \color{blue}{1 + \frac{-1}{2} \cdot {x}^{2}} \]
                                        7. Step-by-step derivation
                                          1. +-commutativeN/A

                                            \[\leadsto \color{blue}{\frac{-1}{2} \cdot {x}^{2} + 1} \]
                                          2. lower-fma.f64N/A

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

                                            \[\leadsto \mathsf{fma}\left(\frac{-1}{2}, \color{blue}{x \cdot x}, 1\right) \]
                                          4. lower-*.f6419.6

                                            \[\leadsto \mathsf{fma}\left(-0.5, \color{blue}{x \cdot x}, 1\right) \]
                                        8. Applied rewrites19.6%

                                          \[\leadsto \color{blue}{\mathsf{fma}\left(-0.5, x \cdot x, 1\right)} \]

                                        if -0.0400000000000000008 < (cos.f64 x)

                                        1. Initial program 100.0%

                                          \[\cos x \cdot \frac{\sinh y}{y} \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in x around 0

                                          \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                        4. Step-by-step derivation
                                          1. Applied rewrites88.1%

                                            \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                          2. Taylor expanded in y around 0

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

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

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

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

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

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

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

                                              \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\mathsf{fma}\left({y}^{2}, \frac{1}{120}, \frac{1}{6}\right)}, 1\right) \]
                                            8. unpow2N/A

                                              \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, \frac{1}{120}, \frac{1}{6}\right), 1\right) \]
                                            9. lower-*.f6473.5

                                              \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, 0.008333333333333333, 0.16666666666666666\right), 1\right) \]
                                          4. Applied rewrites73.5%

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

                                        Alternative 17: 62.3% accurate, 1.7× speedup?

                                        \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(y \cdot y, y \cdot \left(y \cdot 0.008333333333333333\right), 1\right)\\ \end{array} \end{array} \]
                                        (FPCore (x y)
                                         :precision binary64
                                         (if (<= (cos x) -0.04)
                                           (fma -0.5 (* x x) 1.0)
                                           (fma (* y y) (* y (* y 0.008333333333333333)) 1.0)))
                                        double code(double x, double y) {
                                        	double tmp;
                                        	if (cos(x) <= -0.04) {
                                        		tmp = fma(-0.5, (x * x), 1.0);
                                        	} else {
                                        		tmp = fma((y * y), (y * (y * 0.008333333333333333)), 1.0);
                                        	}
                                        	return tmp;
                                        }
                                        
                                        function code(x, y)
                                        	tmp = 0.0
                                        	if (cos(x) <= -0.04)
                                        		tmp = fma(-0.5, Float64(x * x), 1.0);
                                        	else
                                        		tmp = fma(Float64(y * y), Float64(y * Float64(y * 0.008333333333333333)), 1.0);
                                        	end
                                        	return tmp
                                        end
                                        
                                        code[x_, y_] := If[LessEqual[N[Cos[x], $MachinePrecision], -0.04], N[(-0.5 * N[(x * x), $MachinePrecision] + 1.0), $MachinePrecision], N[(N[(y * y), $MachinePrecision] * N[(y * N[(y * 0.008333333333333333), $MachinePrecision]), $MachinePrecision] + 1.0), $MachinePrecision]]
                                        
                                        \begin{array}{l}
                                        
                                        \\
                                        \begin{array}{l}
                                        \mathbf{if}\;\cos x \leq -0.04:\\
                                        \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\
                                        
                                        \mathbf{else}:\\
                                        \;\;\;\;\mathsf{fma}\left(y \cdot y, y \cdot \left(y \cdot 0.008333333333333333\right), 1\right)\\
                                        
                                        
                                        \end{array}
                                        \end{array}
                                        
                                        Derivation
                                        1. Split input into 2 regimes
                                        2. if (cos.f64 x) < -0.0400000000000000008

                                          1. Initial program 100.0%

                                            \[\cos x \cdot \frac{\sinh y}{y} \]
                                          2. Add Preprocessing
                                          3. Taylor expanded in y around 0

                                            \[\leadsto \color{blue}{\cos x} \]
                                          4. Step-by-step derivation
                                            1. lower-cos.f6467.7

                                              \[\leadsto \color{blue}{\cos x} \]
                                          5. Applied rewrites67.7%

                                            \[\leadsto \color{blue}{\cos x} \]
                                          6. Taylor expanded in x around 0

                                            \[\leadsto \color{blue}{1 + \frac{-1}{2} \cdot {x}^{2}} \]
                                          7. Step-by-step derivation
                                            1. +-commutativeN/A

                                              \[\leadsto \color{blue}{\frac{-1}{2} \cdot {x}^{2} + 1} \]
                                            2. lower-fma.f64N/A

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

                                              \[\leadsto \mathsf{fma}\left(\frac{-1}{2}, \color{blue}{x \cdot x}, 1\right) \]
                                            4. lower-*.f6419.6

                                              \[\leadsto \mathsf{fma}\left(-0.5, \color{blue}{x \cdot x}, 1\right) \]
                                          8. Applied rewrites19.6%

                                            \[\leadsto \color{blue}{\mathsf{fma}\left(-0.5, x \cdot x, 1\right)} \]

                                          if -0.0400000000000000008 < (cos.f64 x)

                                          1. Initial program 100.0%

                                            \[\cos x \cdot \frac{\sinh y}{y} \]
                                          2. Add Preprocessing
                                          3. Taylor expanded in x around 0

                                            \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                          4. Step-by-step derivation
                                            1. Applied rewrites88.1%

                                              \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                            2. Taylor expanded in y around 0

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

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

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

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

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

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

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

                                                \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\mathsf{fma}\left({y}^{2}, \frac{1}{120}, \frac{1}{6}\right)}, 1\right) \]
                                              8. unpow2N/A

                                                \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, \frac{1}{120}, \frac{1}{6}\right), 1\right) \]
                                              9. lower-*.f6473.5

                                                \[\leadsto \mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(\color{blue}{y \cdot y}, 0.008333333333333333, 0.16666666666666666\right), 1\right) \]
                                            4. Applied rewrites73.5%

                                              \[\leadsto \color{blue}{\mathsf{fma}\left(y \cdot y, \mathsf{fma}\left(y \cdot y, 0.008333333333333333, 0.16666666666666666\right), 1\right)} \]
                                            5. Taylor expanded in y around inf

                                              \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\frac{1}{120} \cdot {y}^{2}}, 1\right) \]
                                            6. Step-by-step derivation
                                              1. unpow2N/A

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

                                                \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{\left(\frac{1}{120} \cdot y\right) \cdot y}, 1\right) \]
                                              3. *-commutativeN/A

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

                                                \[\leadsto \mathsf{fma}\left(y \cdot y, \color{blue}{y \cdot \left(\frac{1}{120} \cdot y\right)}, 1\right) \]
                                              5. *-commutativeN/A

                                                \[\leadsto \mathsf{fma}\left(y \cdot y, y \cdot \color{blue}{\left(y \cdot \frac{1}{120}\right)}, 1\right) \]
                                              6. lower-*.f6473.1

                                                \[\leadsto \mathsf{fma}\left(y \cdot y, y \cdot \color{blue}{\left(y \cdot 0.008333333333333333\right)}, 1\right) \]
                                            7. Applied rewrites73.1%

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

                                          Alternative 18: 53.5% accurate, 1.8× speedup?

                                          \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\cos x \leq -0.04:\\ \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\ \end{array} \end{array} \]
                                          (FPCore (x y)
                                           :precision binary64
                                           (if (<= (cos x) -0.04)
                                             (fma -0.5 (* x x) 1.0)
                                             (fma 0.16666666666666666 (* y y) 1.0)))
                                          double code(double x, double y) {
                                          	double tmp;
                                          	if (cos(x) <= -0.04) {
                                          		tmp = fma(-0.5, (x * x), 1.0);
                                          	} else {
                                          		tmp = fma(0.16666666666666666, (y * y), 1.0);
                                          	}
                                          	return tmp;
                                          }
                                          
                                          function code(x, y)
                                          	tmp = 0.0
                                          	if (cos(x) <= -0.04)
                                          		tmp = fma(-0.5, Float64(x * x), 1.0);
                                          	else
                                          		tmp = fma(0.16666666666666666, Float64(y * y), 1.0);
                                          	end
                                          	return tmp
                                          end
                                          
                                          code[x_, y_] := If[LessEqual[N[Cos[x], $MachinePrecision], -0.04], N[(-0.5 * N[(x * x), $MachinePrecision] + 1.0), $MachinePrecision], N[(0.16666666666666666 * N[(y * y), $MachinePrecision] + 1.0), $MachinePrecision]]
                                          
                                          \begin{array}{l}
                                          
                                          \\
                                          \begin{array}{l}
                                          \mathbf{if}\;\cos x \leq -0.04:\\
                                          \;\;\;\;\mathsf{fma}\left(-0.5, x \cdot x, 1\right)\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\mathsf{fma}\left(0.16666666666666666, y \cdot y, 1\right)\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if (cos.f64 x) < -0.0400000000000000008

                                            1. Initial program 100.0%

                                              \[\cos x \cdot \frac{\sinh y}{y} \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in y around 0

                                              \[\leadsto \color{blue}{\cos x} \]
                                            4. Step-by-step derivation
                                              1. lower-cos.f6467.7

                                                \[\leadsto \color{blue}{\cos x} \]
                                            5. Applied rewrites67.7%

                                              \[\leadsto \color{blue}{\cos x} \]
                                            6. Taylor expanded in x around 0

                                              \[\leadsto \color{blue}{1 + \frac{-1}{2} \cdot {x}^{2}} \]
                                            7. Step-by-step derivation
                                              1. +-commutativeN/A

                                                \[\leadsto \color{blue}{\frac{-1}{2} \cdot {x}^{2} + 1} \]
                                              2. lower-fma.f64N/A

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

                                                \[\leadsto \mathsf{fma}\left(\frac{-1}{2}, \color{blue}{x \cdot x}, 1\right) \]
                                              4. lower-*.f6419.6

                                                \[\leadsto \mathsf{fma}\left(-0.5, \color{blue}{x \cdot x}, 1\right) \]
                                            8. Applied rewrites19.6%

                                              \[\leadsto \color{blue}{\mathsf{fma}\left(-0.5, x \cdot x, 1\right)} \]

                                            if -0.0400000000000000008 < (cos.f64 x)

                                            1. Initial program 100.0%

                                              \[\cos x \cdot \frac{\sinh y}{y} \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in x around 0

                                              \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                            4. Step-by-step derivation
                                              1. Applied rewrites88.1%

                                                \[\leadsto \color{blue}{1} \cdot \frac{\sinh y}{y} \]
                                              2. Taylor expanded in y around 0

                                                \[\leadsto \color{blue}{1 + \frac{1}{6} \cdot {y}^{2}} \]
                                              3. Step-by-step derivation
                                                1. +-commutativeN/A

                                                  \[\leadsto \color{blue}{\frac{1}{6} \cdot {y}^{2} + 1} \]
                                                2. lower-fma.f64N/A

                                                  \[\leadsto \color{blue}{\mathsf{fma}\left(\frac{1}{6}, {y}^{2}, 1\right)} \]
                                                3. unpow2N/A

                                                  \[\leadsto \mathsf{fma}\left(\frac{1}{6}, \color{blue}{y \cdot y}, 1\right) \]
                                                4. lower-*.f6461.5

                                                  \[\leadsto \mathsf{fma}\left(0.16666666666666666, \color{blue}{y \cdot y}, 1\right) \]
                                              4. Applied rewrites61.5%

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

                                            Alternative 19: 28.5% accurate, 217.0× speedup?

                                            \[\begin{array}{l} \\ 1 \end{array} \]
                                            (FPCore (x y) :precision binary64 1.0)
                                            double code(double x, double y) {
                                            	return 1.0;
                                            }
                                            
                                            real(8) function code(x, y)
                                                real(8), intent (in) :: x
                                                real(8), intent (in) :: y
                                                code = 1.0d0
                                            end function
                                            
                                            public static double code(double x, double y) {
                                            	return 1.0;
                                            }
                                            
                                            def code(x, y):
                                            	return 1.0
                                            
                                            function code(x, y)
                                            	return 1.0
                                            end
                                            
                                            function tmp = code(x, y)
                                            	tmp = 1.0;
                                            end
                                            
                                            code[x_, y_] := 1.0
                                            
                                            \begin{array}{l}
                                            
                                            \\
                                            1
                                            \end{array}
                                            
                                            Derivation
                                            1. Initial program 100.0%

                                              \[\cos x \cdot \frac{\sinh y}{y} \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in y around 0

                                              \[\leadsto \color{blue}{\cos x} \]
                                            4. Step-by-step derivation
                                              1. lower-cos.f6453.2

                                                \[\leadsto \color{blue}{\cos x} \]
                                            5. Applied rewrites53.2%

                                              \[\leadsto \color{blue}{\cos x} \]
                                            6. Taylor expanded in x around 0

                                              \[\leadsto \color{blue}{1} \]
                                            7. Step-by-step derivation
                                              1. Applied rewrites27.9%

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

                                              Reproduce

                                              ?
                                              herbie shell --seed 2024216 
                                              (FPCore (x y)
                                                :name "Linear.Quaternion:$csin from linear-1.19.1.3"
                                                :precision binary64
                                                (* (cos x) (/ (sinh y) y)))