math.cos on complex, imaginary part

Percentage Accurate: 66.4% → 99.7%
Time: 12.0s
Alternatives: 23
Speedup: 0.7×

Specification

?
\[\begin{array}{l} \\ \left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \end{array} \]
(FPCore (re im)
 :precision binary64
 (* (* 0.5 (sin re)) (- (exp (- im)) (exp im))))
double code(double re, double im) {
	return (0.5 * sin(re)) * (exp(-im) - exp(im));
}
real(8) function code(re, im)
    real(8), intent (in) :: re
    real(8), intent (in) :: im
    code = (0.5d0 * sin(re)) * (exp(-im) - exp(im))
end function
public static double code(double re, double im) {
	return (0.5 * Math.sin(re)) * (Math.exp(-im) - Math.exp(im));
}
def code(re, im):
	return (0.5 * math.sin(re)) * (math.exp(-im) - math.exp(im))
function code(re, im)
	return Float64(Float64(0.5 * sin(re)) * Float64(exp(Float64(-im)) - exp(im)))
end
function tmp = code(re, im)
	tmp = (0.5 * sin(re)) * (exp(-im) - exp(im));
end
code[re_, im_] := N[(N[(0.5 * N[Sin[re], $MachinePrecision]), $MachinePrecision] * N[(N[Exp[(-im)], $MachinePrecision] - N[Exp[im], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right)
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

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

\[\begin{array}{l} \\ \left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \end{array} \]
(FPCore (re im)
 :precision binary64
 (* (* 0.5 (sin re)) (- (exp (- im)) (exp im))))
double code(double re, double im) {
	return (0.5 * sin(re)) * (exp(-im) - exp(im));
}
real(8) function code(re, im)
    real(8), intent (in) :: re
    real(8), intent (in) :: im
    code = (0.5d0 * sin(re)) * (exp(-im) - exp(im))
end function
public static double code(double re, double im) {
	return (0.5 * Math.sin(re)) * (Math.exp(-im) - Math.exp(im));
}
def code(re, im):
	return (0.5 * math.sin(re)) * (math.exp(-im) - math.exp(im))
function code(re, im)
	return Float64(Float64(0.5 * sin(re)) * Float64(exp(Float64(-im)) - exp(im)))
end
function tmp = code(re, im)
	tmp = (0.5 * sin(re)) * (exp(-im) - exp(im));
end
code[re_, im_] := N[(N[(0.5 * N[Sin[re], $MachinePrecision]), $MachinePrecision] * N[(N[Exp[(-im)], $MachinePrecision] - N[Exp[im], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right)
\end{array}

Alternative 1: 99.7% accurate, 0.6× speedup?

\[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \sin re \cdot 0.5\\ t_1 := e^{-im\_m}\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 - e^{im\_m} \leq -1:\\ \;\;\;\;\left(t\_1 - \frac{1}{t\_1}\right) \cdot t\_0\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\left(im\_m \cdot im\_m\right) \cdot -0.3333333333333333, im\_m, -2 \cdot im\_m\right) \cdot t\_0\\ \end{array} \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 #s(literal 1 binary64) im)
(FPCore (im_s re im_m)
 :precision binary64
 (let* ((t_0 (* (sin re) 0.5)) (t_1 (exp (- im_m))))
   (*
    im_s
    (if (<= (- t_1 (exp im_m)) -1.0)
      (* (- t_1 (/ 1.0 t_1)) t_0)
      (*
       (fma (* (* im_m im_m) -0.3333333333333333) im_m (* -2.0 im_m))
       t_0)))))
im\_m = fabs(im);
im\_s = copysign(1.0, im);
double code(double im_s, double re, double im_m) {
	double t_0 = sin(re) * 0.5;
	double t_1 = exp(-im_m);
	double tmp;
	if ((t_1 - exp(im_m)) <= -1.0) {
		tmp = (t_1 - (1.0 / t_1)) * t_0;
	} else {
		tmp = fma(((im_m * im_m) * -0.3333333333333333), im_m, (-2.0 * im_m)) * t_0;
	}
	return im_s * tmp;
}
im\_m = abs(im)
im\_s = copysign(1.0, im)
function code(im_s, re, im_m)
	t_0 = Float64(sin(re) * 0.5)
	t_1 = exp(Float64(-im_m))
	tmp = 0.0
	if (Float64(t_1 - exp(im_m)) <= -1.0)
		tmp = Float64(Float64(t_1 - Float64(1.0 / t_1)) * t_0);
	else
		tmp = Float64(fma(Float64(Float64(im_m * im_m) * -0.3333333333333333), im_m, Float64(-2.0 * im_m)) * t_0);
	end
	return Float64(im_s * tmp)
end
im\_m = N[Abs[im], $MachinePrecision]
im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision]}, Block[{t$95$1 = N[Exp[(-im$95$m)], $MachinePrecision]}, N[(im$95$s * If[LessEqual[N[(t$95$1 - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision], -1.0], N[(N[(t$95$1 - N[(1.0 / t$95$1), $MachinePrecision]), $MachinePrecision] * t$95$0), $MachinePrecision], N[(N[(N[(N[(im$95$m * im$95$m), $MachinePrecision] * -0.3333333333333333), $MachinePrecision] * im$95$m + N[(-2.0 * im$95$m), $MachinePrecision]), $MachinePrecision] * t$95$0), $MachinePrecision]]), $MachinePrecision]]]
\begin{array}{l}
im\_m = \left|im\right|
\\
im\_s = \mathsf{copysign}\left(1, im\right)

\\
\begin{array}{l}
t_0 := \sin re \cdot 0.5\\
t_1 := e^{-im\_m}\\
im\_s \cdot \begin{array}{l}
\mathbf{if}\;t\_1 - e^{im\_m} \leq -1:\\
\;\;\;\;\left(t\_1 - \frac{1}{t\_1}\right) \cdot t\_0\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(\left(im\_m \cdot im\_m\right) \cdot -0.3333333333333333, im\_m, -2 \cdot im\_m\right) \cdot t\_0\\


\end{array}
\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)) < -1

    1. Initial program 100.0%

      \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. /-rgt-identityN/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(e^{\mathsf{neg}\left(im\right)} - \color{blue}{\frac{e^{im}}{1}}\right) \]
      2. clear-numN/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(e^{\mathsf{neg}\left(im\right)} - \color{blue}{\frac{1}{\frac{1}{e^{im}}}}\right) \]
      3. lift-exp.f64N/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(e^{\mathsf{neg}\left(im\right)} - \frac{1}{\frac{1}{\color{blue}{e^{im}}}}\right) \]
      4. exp-negN/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(e^{\mathsf{neg}\left(im\right)} - \frac{1}{\color{blue}{e^{\mathsf{neg}\left(im\right)}}}\right) \]
      5. lift-neg.f64N/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(e^{\mathsf{neg}\left(im\right)} - \frac{1}{e^{\color{blue}{\mathsf{neg}\left(im\right)}}}\right) \]
      6. lift-exp.f64N/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(e^{\mathsf{neg}\left(im\right)} - \frac{1}{\color{blue}{e^{\mathsf{neg}\left(im\right)}}}\right) \]
      7. lower-/.f64100.0

        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - \color{blue}{\frac{1}{e^{-im}}}\right) \]
    4. Applied rewrites100.0%

      \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - \color{blue}{\frac{1}{e^{-im}}}\right) \]

    if -1 < (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))

    1. Initial program 51.3%

      \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
    2. Add Preprocessing
    3. Taylor expanded in im around 0

      \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left(\frac{-1}{3} \cdot {im}^{2} - 2\right)\right)} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
      2. lower-*.f64N/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
      3. sub-negN/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{\left(\frac{-1}{3} \cdot {im}^{2} + \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot im\right) \]
      4. metadata-evalN/A

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\left(\frac{-1}{3} \cdot {im}^{2} + \color{blue}{-2}\right) \cdot im\right) \]
      5. lower-fma.f64N/A

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

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
      7. lower-*.f6486.3

        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(-0.3333333333333333, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
    5. Applied rewrites86.3%

      \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right)} \]
    6. Step-by-step derivation
      1. Applied rewrites86.3%

        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \mathsf{fma}\left(-0.3333333333333333 \cdot \left(im \cdot im\right), \color{blue}{im}, -2 \cdot im\right) \]
    7. Recombined 2 regimes into one program.
    8. Final simplification90.2%

      \[\leadsto \begin{array}{l} \mathbf{if}\;e^{-im} - e^{im} \leq -1:\\ \;\;\;\;\left(e^{-im} - \frac{1}{e^{-im}}\right) \cdot \left(\sin re \cdot 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\left(im \cdot im\right) \cdot -0.3333333333333333, im, -2 \cdot im\right) \cdot \left(\sin re \cdot 0.5\right)\\ \end{array} \]
    9. Add Preprocessing

    Alternative 2: 84.6% accurate, 0.4× speedup?

    \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \sin re \cdot 0.5\\ t_1 := t\_0 \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\ \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im\_m \cdot im\_m, -0.016666666666666666\right), im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot t\_0\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \end{array} \end{array} \]
    im\_m = (fabs.f64 im)
    im\_s = (copysign.f64 #s(literal 1 binary64) im)
    (FPCore (im_s re im_m)
     :precision binary64
     (let* ((t_0 (* (sin re) 0.5)) (t_1 (* t_0 (- (exp (- im_m)) (exp im_m)))))
       (*
        im_s
        (if (<= t_1 (- INFINITY))
          (* (* re 0.5) (- 1.0 (exp im_m)))
          (if (<= t_1 5e-5)
            (*
             (*
              (fma
               (fma
                (fma -0.0003968253968253968 (* im_m im_m) -0.016666666666666666)
                (* im_m im_m)
                -0.3333333333333333)
               (* im_m im_m)
               -2.0)
              im_m)
             t_0)
            (*
             (*
              (fma
               (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
               (* im_m im_m)
               -2.0)
              im_m)
             (* (fma (* re re) -0.08333333333333333 0.5) re)))))))
    im\_m = fabs(im);
    im\_s = copysign(1.0, im);
    double code(double im_s, double re, double im_m) {
    	double t_0 = sin(re) * 0.5;
    	double t_1 = t_0 * (exp(-im_m) - exp(im_m));
    	double tmp;
    	if (t_1 <= -((double) INFINITY)) {
    		tmp = (re * 0.5) * (1.0 - exp(im_m));
    	} else if (t_1 <= 5e-5) {
    		tmp = (fma(fma(fma(-0.0003968253968253968, (im_m * im_m), -0.016666666666666666), (im_m * im_m), -0.3333333333333333), (im_m * im_m), -2.0) * im_m) * t_0;
    	} else {
    		tmp = (fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m) * (fma((re * re), -0.08333333333333333, 0.5) * re);
    	}
    	return im_s * tmp;
    }
    
    im\_m = abs(im)
    im\_s = copysign(1.0, im)
    function code(im_s, re, im_m)
    	t_0 = Float64(sin(re) * 0.5)
    	t_1 = Float64(t_0 * Float64(exp(Float64(-im_m)) - exp(im_m)))
    	tmp = 0.0
    	if (t_1 <= Float64(-Inf))
    		tmp = Float64(Float64(re * 0.5) * Float64(1.0 - exp(im_m)));
    	elseif (t_1 <= 5e-5)
    		tmp = Float64(Float64(fma(fma(fma(-0.0003968253968253968, Float64(im_m * im_m), -0.016666666666666666), Float64(im_m * im_m), -0.3333333333333333), Float64(im_m * im_m), -2.0) * im_m) * t_0);
    	else
    		tmp = Float64(Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m) * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
    	end
    	return Float64(im_s * tmp)
    end
    
    im\_m = N[Abs[im], $MachinePrecision]
    im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
    code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision]}, Block[{t$95$1 = N[(t$95$0 * N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, N[(im$95$s * If[LessEqual[t$95$1, (-Infinity)], N[(N[(re * 0.5), $MachinePrecision] * N[(1.0 - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 5e-5], N[(N[(N[(N[(N[(-0.0003968253968253968 * N[(im$95$m * im$95$m), $MachinePrecision] + -0.016666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -0.3333333333333333), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * t$95$0), $MachinePrecision], N[(N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]]]
    
    \begin{array}{l}
    im\_m = \left|im\right|
    \\
    im\_s = \mathsf{copysign}\left(1, im\right)
    
    \\
    \begin{array}{l}
    t_0 := \sin re \cdot 0.5\\
    t_1 := t\_0 \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\
    im\_s \cdot \begin{array}{l}
    \mathbf{if}\;t\_1 \leq -\infty:\\
    \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\
    
    \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-5}:\\
    \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im\_m \cdot im\_m, -0.016666666666666666\right), im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot t\_0\\
    
    \mathbf{else}:\\
    \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
    
    
    \end{array}
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < -inf.0

      1. Initial program 100.0%

        \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
      2. Add Preprocessing
      3. Taylor expanded in im around 0

        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
      4. Step-by-step derivation
        1. Applied rewrites57.5%

          \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
        2. Taylor expanded in re around 0

          \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(1 - e^{im}\right) \]
        3. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(1 - e^{im}\right) \]
          2. lower-*.f6448.0

            \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]
        4. Applied rewrites48.0%

          \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]

        if -inf.0 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < 5.00000000000000024e-5

        1. Initial program 28.8%

          \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
        2. Add Preprocessing
        3. Taylor expanded in im around 0

          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
        4. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
          2. lower-*.f64N/A

            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
        5. Applied rewrites98.7%

          \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]

        if 5.00000000000000024e-5 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)))

        1. Initial program 100.0%

          \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
        2. Add Preprocessing
        3. Taylor expanded in im around 0

          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
        4. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
          2. lower-*.f64N/A

            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
        5. Applied rewrites84.2%

          \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
        6. Taylor expanded in im around inf

          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
        7. Step-by-step derivation
          1. Applied rewrites84.2%

            \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
          2. Taylor expanded in re around 0

            \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
          3. Step-by-step derivation
            1. *-commutativeN/A

              \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
            2. lower-*.f64N/A

              \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
            3. +-commutativeN/A

              \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
            4. *-commutativeN/A

              \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
            5. lower-fma.f64N/A

              \[\leadsto \left(\color{blue}{\mathsf{fma}\left({re}^{2}, \frac{-1}{12}, \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
            6. unpow2N/A

              \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
            7. lower-*.f6471.5

              \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
          4. Applied rewrites71.5%

            \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
        8. Recombined 3 regimes into one program.
        9. Final simplification79.0%

          \[\leadsto \begin{array}{l} \mathbf{if}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im}\right)\\ \mathbf{elif}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\sin re \cdot 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \]
        10. Add Preprocessing

        Alternative 3: 84.6% accurate, 0.4× speedup?

        \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \left(\sin re \cdot 0.5\right) \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_0 \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\ \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im\_m \cdot im\_m, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right) \cdot \sin re\right) \cdot im\_m\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \end{array} \end{array} \]
        im\_m = (fabs.f64 im)
        im\_s = (copysign.f64 #s(literal 1 binary64) im)
        (FPCore (im_s re im_m)
         :precision binary64
         (let* ((t_0 (* (* (sin re) 0.5) (- (exp (- im_m)) (exp im_m)))))
           (*
            im_s
            (if (<= t_0 (- INFINITY))
              (* (* re 0.5) (- 1.0 (exp im_m)))
              (if (<= t_0 5e-5)
                (*
                 (*
                  (fma
                   (fma -0.008333333333333333 (* im_m im_m) -0.16666666666666666)
                   (* im_m im_m)
                   -1.0)
                  (sin re))
                 im_m)
                (*
                 (*
                  (fma
                   (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                   (* im_m im_m)
                   -2.0)
                  im_m)
                 (* (fma (* re re) -0.08333333333333333 0.5) re)))))))
        im\_m = fabs(im);
        im\_s = copysign(1.0, im);
        double code(double im_s, double re, double im_m) {
        	double t_0 = (sin(re) * 0.5) * (exp(-im_m) - exp(im_m));
        	double tmp;
        	if (t_0 <= -((double) INFINITY)) {
        		tmp = (re * 0.5) * (1.0 - exp(im_m));
        	} else if (t_0 <= 5e-5) {
        		tmp = (fma(fma(-0.008333333333333333, (im_m * im_m), -0.16666666666666666), (im_m * im_m), -1.0) * sin(re)) * im_m;
        	} else {
        		tmp = (fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m) * (fma((re * re), -0.08333333333333333, 0.5) * re);
        	}
        	return im_s * tmp;
        }
        
        im\_m = abs(im)
        im\_s = copysign(1.0, im)
        function code(im_s, re, im_m)
        	t_0 = Float64(Float64(sin(re) * 0.5) * Float64(exp(Float64(-im_m)) - exp(im_m)))
        	tmp = 0.0
        	if (t_0 <= Float64(-Inf))
        		tmp = Float64(Float64(re * 0.5) * Float64(1.0 - exp(im_m)));
        	elseif (t_0 <= 5e-5)
        		tmp = Float64(Float64(fma(fma(-0.008333333333333333, Float64(im_m * im_m), -0.16666666666666666), Float64(im_m * im_m), -1.0) * sin(re)) * im_m);
        	else
        		tmp = Float64(Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m) * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
        	end
        	return Float64(im_s * tmp)
        end
        
        im\_m = N[Abs[im], $MachinePrecision]
        im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
        code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision] * N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, N[(im$95$s * If[LessEqual[t$95$0, (-Infinity)], N[(N[(re * 0.5), $MachinePrecision] * N[(1.0 - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 5e-5], N[(N[(N[(N[(-0.008333333333333333 * N[(im$95$m * im$95$m), $MachinePrecision] + -0.16666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -1.0), $MachinePrecision] * N[Sin[re], $MachinePrecision]), $MachinePrecision] * im$95$m), $MachinePrecision], N[(N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]]
        
        \begin{array}{l}
        im\_m = \left|im\right|
        \\
        im\_s = \mathsf{copysign}\left(1, im\right)
        
        \\
        \begin{array}{l}
        t_0 := \left(\sin re \cdot 0.5\right) \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\
        im\_s \cdot \begin{array}{l}
        \mathbf{if}\;t\_0 \leq -\infty:\\
        \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\
        
        \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-5}:\\
        \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im\_m \cdot im\_m, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right) \cdot \sin re\right) \cdot im\_m\\
        
        \mathbf{else}:\\
        \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
        
        
        \end{array}
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < -inf.0

          1. Initial program 100.0%

            \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
          2. Add Preprocessing
          3. Taylor expanded in im around 0

            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
          4. Step-by-step derivation
            1. Applied rewrites57.5%

              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
            2. Taylor expanded in re around 0

              \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(1 - e^{im}\right) \]
            3. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(1 - e^{im}\right) \]
              2. lower-*.f6448.0

                \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]
            4. Applied rewrites48.0%

              \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]

            if -inf.0 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < 5.00000000000000024e-5

            1. Initial program 28.8%

              \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
            2. Add Preprocessing
            3. Taylor expanded in im around 0

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

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

                \[\leadsto \color{blue}{\left(-1 \cdot \sin re + {im}^{2} \cdot \left(\frac{-1}{6} \cdot \sin re + \frac{-1}{120} \cdot \left({im}^{2} \cdot \sin re\right)\right)\right) \cdot im} \]
            5. Applied rewrites98.6%

              \[\leadsto \color{blue}{\left(\sin re \cdot \mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im \cdot im, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot im} \]

            if 5.00000000000000024e-5 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)))

            1. Initial program 100.0%

              \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
            2. Add Preprocessing
            3. Taylor expanded in im around 0

              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
            4. Step-by-step derivation
              1. *-commutativeN/A

                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
              2. lower-*.f64N/A

                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
            5. Applied rewrites84.2%

              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
            6. Taylor expanded in im around inf

              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
            7. Step-by-step derivation
              1. Applied rewrites84.2%

                \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
              2. Taylor expanded in re around 0

                \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
              3. Step-by-step derivation
                1. *-commutativeN/A

                  \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                2. lower-*.f64N/A

                  \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                3. +-commutativeN/A

                  \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                4. *-commutativeN/A

                  \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                5. lower-fma.f64N/A

                  \[\leadsto \left(\color{blue}{\mathsf{fma}\left({re}^{2}, \frac{-1}{12}, \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                6. unpow2N/A

                  \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                7. lower-*.f6471.5

                  \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
              4. Applied rewrites71.5%

                \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
            8. Recombined 3 regimes into one program.
            9. Final simplification79.0%

              \[\leadsto \begin{array}{l} \mathbf{if}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im}\right)\\ \mathbf{elif}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im \cdot im, -0.16666666666666666\right), im \cdot im, -1\right) \cdot \sin re\right) \cdot im\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \]
            10. Add Preprocessing

            Alternative 4: 84.5% accurate, 0.4× speedup?

            \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \sin re \cdot 0.5\\ t_1 := t\_0 \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\ \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\mathsf{fma}\left(\left(im\_m \cdot im\_m\right) \cdot -0.3333333333333333, im\_m, -2 \cdot im\_m\right) \cdot t\_0\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \end{array} \end{array} \]
            im\_m = (fabs.f64 im)
            im\_s = (copysign.f64 #s(literal 1 binary64) im)
            (FPCore (im_s re im_m)
             :precision binary64
             (let* ((t_0 (* (sin re) 0.5)) (t_1 (* t_0 (- (exp (- im_m)) (exp im_m)))))
               (*
                im_s
                (if (<= t_1 (- INFINITY))
                  (* (* re 0.5) (- 1.0 (exp im_m)))
                  (if (<= t_1 5e-5)
                    (* (fma (* (* im_m im_m) -0.3333333333333333) im_m (* -2.0 im_m)) t_0)
                    (*
                     (*
                      (fma
                       (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                       (* im_m im_m)
                       -2.0)
                      im_m)
                     (* (fma (* re re) -0.08333333333333333 0.5) re)))))))
            im\_m = fabs(im);
            im\_s = copysign(1.0, im);
            double code(double im_s, double re, double im_m) {
            	double t_0 = sin(re) * 0.5;
            	double t_1 = t_0 * (exp(-im_m) - exp(im_m));
            	double tmp;
            	if (t_1 <= -((double) INFINITY)) {
            		tmp = (re * 0.5) * (1.0 - exp(im_m));
            	} else if (t_1 <= 5e-5) {
            		tmp = fma(((im_m * im_m) * -0.3333333333333333), im_m, (-2.0 * im_m)) * t_0;
            	} else {
            		tmp = (fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m) * (fma((re * re), -0.08333333333333333, 0.5) * re);
            	}
            	return im_s * tmp;
            }
            
            im\_m = abs(im)
            im\_s = copysign(1.0, im)
            function code(im_s, re, im_m)
            	t_0 = Float64(sin(re) * 0.5)
            	t_1 = Float64(t_0 * Float64(exp(Float64(-im_m)) - exp(im_m)))
            	tmp = 0.0
            	if (t_1 <= Float64(-Inf))
            		tmp = Float64(Float64(re * 0.5) * Float64(1.0 - exp(im_m)));
            	elseif (t_1 <= 5e-5)
            		tmp = Float64(fma(Float64(Float64(im_m * im_m) * -0.3333333333333333), im_m, Float64(-2.0 * im_m)) * t_0);
            	else
            		tmp = Float64(Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m) * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
            	end
            	return Float64(im_s * tmp)
            end
            
            im\_m = N[Abs[im], $MachinePrecision]
            im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
            code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision]}, Block[{t$95$1 = N[(t$95$0 * N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, N[(im$95$s * If[LessEqual[t$95$1, (-Infinity)], N[(N[(re * 0.5), $MachinePrecision] * N[(1.0 - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 5e-5], N[(N[(N[(N[(im$95$m * im$95$m), $MachinePrecision] * -0.3333333333333333), $MachinePrecision] * im$95$m + N[(-2.0 * im$95$m), $MachinePrecision]), $MachinePrecision] * t$95$0), $MachinePrecision], N[(N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]]]
            
            \begin{array}{l}
            im\_m = \left|im\right|
            \\
            im\_s = \mathsf{copysign}\left(1, im\right)
            
            \\
            \begin{array}{l}
            t_0 := \sin re \cdot 0.5\\
            t_1 := t\_0 \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\
            im\_s \cdot \begin{array}{l}
            \mathbf{if}\;t\_1 \leq -\infty:\\
            \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\
            
            \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-5}:\\
            \;\;\;\;\mathsf{fma}\left(\left(im\_m \cdot im\_m\right) \cdot -0.3333333333333333, im\_m, -2 \cdot im\_m\right) \cdot t\_0\\
            
            \mathbf{else}:\\
            \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
            
            
            \end{array}
            \end{array}
            \end{array}
            
            Derivation
            1. Split input into 3 regimes
            2. if (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < -inf.0

              1. Initial program 100.0%

                \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
              2. Add Preprocessing
              3. Taylor expanded in im around 0

                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
              4. Step-by-step derivation
                1. Applied rewrites57.5%

                  \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
                2. Taylor expanded in re around 0

                  \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(1 - e^{im}\right) \]
                3. Step-by-step derivation
                  1. *-commutativeN/A

                    \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(1 - e^{im}\right) \]
                  2. lower-*.f6448.0

                    \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]
                4. Applied rewrites48.0%

                  \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]

                if -inf.0 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < 5.00000000000000024e-5

                1. Initial program 28.8%

                  \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                2. Add Preprocessing
                3. Taylor expanded in im around 0

                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left(\frac{-1}{3} \cdot {im}^{2} - 2\right)\right)} \]
                4. Step-by-step derivation
                  1. *-commutativeN/A

                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                  2. lower-*.f64N/A

                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                  3. sub-negN/A

                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{\left(\frac{-1}{3} \cdot {im}^{2} + \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot im\right) \]
                  4. metadata-evalN/A

                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\left(\frac{-1}{3} \cdot {im}^{2} + \color{blue}{-2}\right) \cdot im\right) \]
                  5. lower-fma.f64N/A

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

                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                  7. lower-*.f6498.5

                    \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(-0.3333333333333333, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                5. Applied rewrites98.5%

                  \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right)} \]
                6. Step-by-step derivation
                  1. Applied rewrites98.5%

                    \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \mathsf{fma}\left(-0.3333333333333333 \cdot \left(im \cdot im\right), \color{blue}{im}, -2 \cdot im\right) \]

                  if 5.00000000000000024e-5 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)))

                  1. Initial program 100.0%

                    \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                  2. Add Preprocessing
                  3. Taylor expanded in im around 0

                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                  4. Step-by-step derivation
                    1. *-commutativeN/A

                      \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                    2. lower-*.f64N/A

                      \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                  5. Applied rewrites84.2%

                    \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                  6. Taylor expanded in im around inf

                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                  7. Step-by-step derivation
                    1. Applied rewrites84.2%

                      \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                    2. Taylor expanded in re around 0

                      \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                    3. Step-by-step derivation
                      1. *-commutativeN/A

                        \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                      2. lower-*.f64N/A

                        \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                      3. +-commutativeN/A

                        \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                      4. *-commutativeN/A

                        \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                      5. lower-fma.f64N/A

                        \[\leadsto \left(\color{blue}{\mathsf{fma}\left({re}^{2}, \frac{-1}{12}, \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                      6. unpow2N/A

                        \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                      7. lower-*.f6471.5

                        \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                    4. Applied rewrites71.5%

                      \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                  8. Recombined 3 regimes into one program.
                  9. Final simplification78.9%

                    \[\leadsto \begin{array}{l} \mathbf{if}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im}\right)\\ \mathbf{elif}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\mathsf{fma}\left(\left(im \cdot im\right) \cdot -0.3333333333333333, im, -2 \cdot im\right) \cdot \left(\sin re \cdot 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \]
                  10. Add Preprocessing

                  Alternative 5: 84.5% accurate, 0.4× speedup?

                  \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \left(\sin re \cdot 0.5\right) \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_0 \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\ \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\mathsf{fma}\left(-0.16666666666666666 \cdot im\_m, im\_m, -1\right) \cdot \left(\sin re \cdot im\_m\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \end{array} \end{array} \]
                  im\_m = (fabs.f64 im)
                  im\_s = (copysign.f64 #s(literal 1 binary64) im)
                  (FPCore (im_s re im_m)
                   :precision binary64
                   (let* ((t_0 (* (* (sin re) 0.5) (- (exp (- im_m)) (exp im_m)))))
                     (*
                      im_s
                      (if (<= t_0 (- INFINITY))
                        (* (* re 0.5) (- 1.0 (exp im_m)))
                        (if (<= t_0 5e-5)
                          (* (fma (* -0.16666666666666666 im_m) im_m -1.0) (* (sin re) im_m))
                          (*
                           (*
                            (fma
                             (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                             (* im_m im_m)
                             -2.0)
                            im_m)
                           (* (fma (* re re) -0.08333333333333333 0.5) re)))))))
                  im\_m = fabs(im);
                  im\_s = copysign(1.0, im);
                  double code(double im_s, double re, double im_m) {
                  	double t_0 = (sin(re) * 0.5) * (exp(-im_m) - exp(im_m));
                  	double tmp;
                  	if (t_0 <= -((double) INFINITY)) {
                  		tmp = (re * 0.5) * (1.0 - exp(im_m));
                  	} else if (t_0 <= 5e-5) {
                  		tmp = fma((-0.16666666666666666 * im_m), im_m, -1.0) * (sin(re) * im_m);
                  	} else {
                  		tmp = (fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m) * (fma((re * re), -0.08333333333333333, 0.5) * re);
                  	}
                  	return im_s * tmp;
                  }
                  
                  im\_m = abs(im)
                  im\_s = copysign(1.0, im)
                  function code(im_s, re, im_m)
                  	t_0 = Float64(Float64(sin(re) * 0.5) * Float64(exp(Float64(-im_m)) - exp(im_m)))
                  	tmp = 0.0
                  	if (t_0 <= Float64(-Inf))
                  		tmp = Float64(Float64(re * 0.5) * Float64(1.0 - exp(im_m)));
                  	elseif (t_0 <= 5e-5)
                  		tmp = Float64(fma(Float64(-0.16666666666666666 * im_m), im_m, -1.0) * Float64(sin(re) * im_m));
                  	else
                  		tmp = Float64(Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m) * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
                  	end
                  	return Float64(im_s * tmp)
                  end
                  
                  im\_m = N[Abs[im], $MachinePrecision]
                  im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                  code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision] * N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, N[(im$95$s * If[LessEqual[t$95$0, (-Infinity)], N[(N[(re * 0.5), $MachinePrecision] * N[(1.0 - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 5e-5], N[(N[(N[(-0.16666666666666666 * im$95$m), $MachinePrecision] * im$95$m + -1.0), $MachinePrecision] * N[(N[Sin[re], $MachinePrecision] * im$95$m), $MachinePrecision]), $MachinePrecision], N[(N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]]
                  
                  \begin{array}{l}
                  im\_m = \left|im\right|
                  \\
                  im\_s = \mathsf{copysign}\left(1, im\right)
                  
                  \\
                  \begin{array}{l}
                  t_0 := \left(\sin re \cdot 0.5\right) \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\
                  im\_s \cdot \begin{array}{l}
                  \mathbf{if}\;t\_0 \leq -\infty:\\
                  \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\
                  
                  \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-5}:\\
                  \;\;\;\;\mathsf{fma}\left(-0.16666666666666666 \cdot im\_m, im\_m, -1\right) \cdot \left(\sin re \cdot im\_m\right)\\
                  
                  \mathbf{else}:\\
                  \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
                  
                  
                  \end{array}
                  \end{array}
                  \end{array}
                  
                  Derivation
                  1. Split input into 3 regimes
                  2. if (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < -inf.0

                    1. Initial program 100.0%

                      \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                    2. Add Preprocessing
                    3. Taylor expanded in im around 0

                      \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
                    4. Step-by-step derivation
                      1. Applied rewrites57.5%

                        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
                      2. Taylor expanded in re around 0

                        \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(1 - e^{im}\right) \]
                      3. Step-by-step derivation
                        1. *-commutativeN/A

                          \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(1 - e^{im}\right) \]
                        2. lower-*.f6448.0

                          \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]
                      4. Applied rewrites48.0%

                        \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]

                      if -inf.0 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < 5.00000000000000024e-5

                      1. Initial program 28.8%

                        \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                      2. Add Preprocessing
                      3. Taylor expanded in im around 0

                        \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + \frac{-1}{6} \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
                      4. Step-by-step derivation
                        1. associate-*r*N/A

                          \[\leadsto im \cdot \left(-1 \cdot \sin re + \color{blue}{\left(\frac{-1}{6} \cdot {im}^{2}\right) \cdot \sin re}\right) \]
                        2. distribute-rgt-outN/A

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

                          \[\leadsto \color{blue}{\left(im \cdot \sin re\right) \cdot \left(-1 + \frac{-1}{6} \cdot {im}^{2}\right)} \]
                        4. unpow2N/A

                          \[\leadsto \left(im \cdot \sin re\right) \cdot \left(-1 + \frac{-1}{6} \cdot \color{blue}{\left(im \cdot im\right)}\right) \]
                        5. associate-*r*N/A

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

                          \[\leadsto \left(im \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{6} \cdot im\right) \cdot im + -1\right)} \]
                        7. lower-*.f64N/A

                          \[\leadsto \color{blue}{\left(im \cdot \sin re\right) \cdot \left(\left(\frac{-1}{6} \cdot im\right) \cdot im + -1\right)} \]
                        8. *-commutativeN/A

                          \[\leadsto \color{blue}{\left(\sin re \cdot im\right)} \cdot \left(\left(\frac{-1}{6} \cdot im\right) \cdot im + -1\right) \]
                        9. lower-*.f64N/A

                          \[\leadsto \color{blue}{\left(\sin re \cdot im\right)} \cdot \left(\left(\frac{-1}{6} \cdot im\right) \cdot im + -1\right) \]
                        10. lower-sin.f64N/A

                          \[\leadsto \left(\color{blue}{\sin re} \cdot im\right) \cdot \left(\left(\frac{-1}{6} \cdot im\right) \cdot im + -1\right) \]
                        11. lower-fma.f64N/A

                          \[\leadsto \left(\sin re \cdot im\right) \cdot \color{blue}{\mathsf{fma}\left(\frac{-1}{6} \cdot im, im, -1\right)} \]
                        12. lower-*.f6498.5

                          \[\leadsto \left(\sin re \cdot im\right) \cdot \mathsf{fma}\left(\color{blue}{-0.16666666666666666 \cdot im}, im, -1\right) \]
                      5. Applied rewrites98.5%

                        \[\leadsto \color{blue}{\left(\sin re \cdot im\right) \cdot \mathsf{fma}\left(-0.16666666666666666 \cdot im, im, -1\right)} \]

                      if 5.00000000000000024e-5 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)))

                      1. Initial program 100.0%

                        \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                      2. Add Preprocessing
                      3. Taylor expanded in im around 0

                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                      4. Step-by-step derivation
                        1. *-commutativeN/A

                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                        2. lower-*.f64N/A

                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                      5. Applied rewrites84.2%

                        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                      6. Taylor expanded in im around inf

                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                      7. Step-by-step derivation
                        1. Applied rewrites84.2%

                          \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                        2. Taylor expanded in re around 0

                          \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                        3. Step-by-step derivation
                          1. *-commutativeN/A

                            \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                          2. lower-*.f64N/A

                            \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                          3. +-commutativeN/A

                            \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                          4. *-commutativeN/A

                            \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                          5. lower-fma.f64N/A

                            \[\leadsto \left(\color{blue}{\mathsf{fma}\left({re}^{2}, \frac{-1}{12}, \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                          6. unpow2N/A

                            \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                          7. lower-*.f6471.5

                            \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                        4. Applied rewrites71.5%

                          \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                      8. Recombined 3 regimes into one program.
                      9. Final simplification78.9%

                        \[\leadsto \begin{array}{l} \mathbf{if}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im}\right)\\ \mathbf{elif}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\mathsf{fma}\left(-0.16666666666666666 \cdot im, im, -1\right) \cdot \left(\sin re \cdot im\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \]
                      10. Add Preprocessing

                      Alternative 6: 84.2% accurate, 0.4× speedup?

                      \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \left(\sin re \cdot 0.5\right) \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_0 \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\ \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\sin re \cdot \left(-im\_m\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \end{array} \end{array} \]
                      im\_m = (fabs.f64 im)
                      im\_s = (copysign.f64 #s(literal 1 binary64) im)
                      (FPCore (im_s re im_m)
                       :precision binary64
                       (let* ((t_0 (* (* (sin re) 0.5) (- (exp (- im_m)) (exp im_m)))))
                         (*
                          im_s
                          (if (<= t_0 (- INFINITY))
                            (* (* re 0.5) (- 1.0 (exp im_m)))
                            (if (<= t_0 5e-5)
                              (* (sin re) (- im_m))
                              (*
                               (*
                                (fma
                                 (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                                 (* im_m im_m)
                                 -2.0)
                                im_m)
                               (* (fma (* re re) -0.08333333333333333 0.5) re)))))))
                      im\_m = fabs(im);
                      im\_s = copysign(1.0, im);
                      double code(double im_s, double re, double im_m) {
                      	double t_0 = (sin(re) * 0.5) * (exp(-im_m) - exp(im_m));
                      	double tmp;
                      	if (t_0 <= -((double) INFINITY)) {
                      		tmp = (re * 0.5) * (1.0 - exp(im_m));
                      	} else if (t_0 <= 5e-5) {
                      		tmp = sin(re) * -im_m;
                      	} else {
                      		tmp = (fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m) * (fma((re * re), -0.08333333333333333, 0.5) * re);
                      	}
                      	return im_s * tmp;
                      }
                      
                      im\_m = abs(im)
                      im\_s = copysign(1.0, im)
                      function code(im_s, re, im_m)
                      	t_0 = Float64(Float64(sin(re) * 0.5) * Float64(exp(Float64(-im_m)) - exp(im_m)))
                      	tmp = 0.0
                      	if (t_0 <= Float64(-Inf))
                      		tmp = Float64(Float64(re * 0.5) * Float64(1.0 - exp(im_m)));
                      	elseif (t_0 <= 5e-5)
                      		tmp = Float64(sin(re) * Float64(-im_m));
                      	else
                      		tmp = Float64(Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m) * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
                      	end
                      	return Float64(im_s * tmp)
                      end
                      
                      im\_m = N[Abs[im], $MachinePrecision]
                      im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                      code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision] * N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, N[(im$95$s * If[LessEqual[t$95$0, (-Infinity)], N[(N[(re * 0.5), $MachinePrecision] * N[(1.0 - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 5e-5], N[(N[Sin[re], $MachinePrecision] * (-im$95$m)), $MachinePrecision], N[(N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]]
                      
                      \begin{array}{l}
                      im\_m = \left|im\right|
                      \\
                      im\_s = \mathsf{copysign}\left(1, im\right)
                      
                      \\
                      \begin{array}{l}
                      t_0 := \left(\sin re \cdot 0.5\right) \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\
                      im\_s \cdot \begin{array}{l}
                      \mathbf{if}\;t\_0 \leq -\infty:\\
                      \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im\_m}\right)\\
                      
                      \mathbf{elif}\;t\_0 \leq 5 \cdot 10^{-5}:\\
                      \;\;\;\;\sin re \cdot \left(-im\_m\right)\\
                      
                      \mathbf{else}:\\
                      \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
                      
                      
                      \end{array}
                      \end{array}
                      \end{array}
                      
                      Derivation
                      1. Split input into 3 regimes
                      2. if (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < -inf.0

                        1. Initial program 100.0%

                          \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                        2. Add Preprocessing
                        3. Taylor expanded in im around 0

                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
                        4. Step-by-step derivation
                          1. Applied rewrites57.5%

                            \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
                          2. Taylor expanded in re around 0

                            \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(1 - e^{im}\right) \]
                          3. Step-by-step derivation
                            1. *-commutativeN/A

                              \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(1 - e^{im}\right) \]
                            2. lower-*.f6448.0

                              \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]
                          4. Applied rewrites48.0%

                            \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(1 - e^{im}\right) \]

                          if -inf.0 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < 5.00000000000000024e-5

                          1. Initial program 28.8%

                            \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                          2. Add Preprocessing
                          3. Taylor expanded in im around 0

                            \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                          4. Step-by-step derivation
                            1. associate-*r*N/A

                              \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                            2. lower-*.f64N/A

                              \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                            3. neg-mul-1N/A

                              \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                            4. lower-neg.f64N/A

                              \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                            5. lower-sin.f6498.0

                              \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                          5. Applied rewrites98.0%

                            \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]

                          if 5.00000000000000024e-5 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)))

                          1. Initial program 100.0%

                            \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                          2. Add Preprocessing
                          3. Taylor expanded in im around 0

                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                          4. Step-by-step derivation
                            1. *-commutativeN/A

                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                            2. lower-*.f64N/A

                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                          5. Applied rewrites84.2%

                            \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                          6. Taylor expanded in im around inf

                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                          7. Step-by-step derivation
                            1. Applied rewrites84.2%

                              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                            2. Taylor expanded in re around 0

                              \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                            3. Step-by-step derivation
                              1. *-commutativeN/A

                                \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                              2. lower-*.f64N/A

                                \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                              3. +-commutativeN/A

                                \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                              4. *-commutativeN/A

                                \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                              5. lower-fma.f64N/A

                                \[\leadsto \left(\color{blue}{\mathsf{fma}\left({re}^{2}, \frac{-1}{12}, \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                              6. unpow2N/A

                                \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                              7. lower-*.f6471.5

                                \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                            4. Applied rewrites71.5%

                              \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                          8. Recombined 3 regimes into one program.
                          9. Final simplification78.7%

                            \[\leadsto \begin{array}{l} \mathbf{if}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq -\infty:\\ \;\;\;\;\left(re \cdot 0.5\right) \cdot \left(1 - e^{im}\right)\\ \mathbf{elif}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\sin re \cdot \left(-im\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \]
                          10. Add Preprocessing

                          Alternative 7: 82.2% accurate, 0.4× speedup?

                          \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\\ t_1 := \left(\sin re \cdot 0.5\right) \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_1 \leq -\infty:\\ \;\;\;\;t\_0 \cdot \left(re \cdot 0.5\right)\\ \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\sin re \cdot \left(-im\_m\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0 \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \end{array} \end{array} \]
                          im\_m = (fabs.f64 im)
                          im\_s = (copysign.f64 #s(literal 1 binary64) im)
                          (FPCore (im_s re im_m)
                           :precision binary64
                           (let* ((t_0
                                   (*
                                    (fma
                                     (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                                     (* im_m im_m)
                                     -2.0)
                                    im_m))
                                  (t_1 (* (* (sin re) 0.5) (- (exp (- im_m)) (exp im_m)))))
                             (*
                              im_s
                              (if (<= t_1 (- INFINITY))
                                (* t_0 (* re 0.5))
                                (if (<= t_1 5e-5)
                                  (* (sin re) (- im_m))
                                  (* t_0 (* (fma (* re re) -0.08333333333333333 0.5) re)))))))
                          im\_m = fabs(im);
                          im\_s = copysign(1.0, im);
                          double code(double im_s, double re, double im_m) {
                          	double t_0 = fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m;
                          	double t_1 = (sin(re) * 0.5) * (exp(-im_m) - exp(im_m));
                          	double tmp;
                          	if (t_1 <= -((double) INFINITY)) {
                          		tmp = t_0 * (re * 0.5);
                          	} else if (t_1 <= 5e-5) {
                          		tmp = sin(re) * -im_m;
                          	} else {
                          		tmp = t_0 * (fma((re * re), -0.08333333333333333, 0.5) * re);
                          	}
                          	return im_s * tmp;
                          }
                          
                          im\_m = abs(im)
                          im\_s = copysign(1.0, im)
                          function code(im_s, re, im_m)
                          	t_0 = Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m)
                          	t_1 = Float64(Float64(sin(re) * 0.5) * Float64(exp(Float64(-im_m)) - exp(im_m)))
                          	tmp = 0.0
                          	if (t_1 <= Float64(-Inf))
                          		tmp = Float64(t_0 * Float64(re * 0.5));
                          	elseif (t_1 <= 5e-5)
                          		tmp = Float64(sin(re) * Float64(-im_m));
                          	else
                          		tmp = Float64(t_0 * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
                          	end
                          	return Float64(im_s * tmp)
                          end
                          
                          im\_m = N[Abs[im], $MachinePrecision]
                          im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                          code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision]}, Block[{t$95$1 = N[(N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision] * N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, N[(im$95$s * If[LessEqual[t$95$1, (-Infinity)], N[(t$95$0 * N[(re * 0.5), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 5e-5], N[(N[Sin[re], $MachinePrecision] * (-im$95$m)), $MachinePrecision], N[(t$95$0 * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision]]]), $MachinePrecision]]]
                          
                          \begin{array}{l}
                          im\_m = \left|im\right|
                          \\
                          im\_s = \mathsf{copysign}\left(1, im\right)
                          
                          \\
                          \begin{array}{l}
                          t_0 := \mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\\
                          t_1 := \left(\sin re \cdot 0.5\right) \cdot \left(e^{-im\_m} - e^{im\_m}\right)\\
                          im\_s \cdot \begin{array}{l}
                          \mathbf{if}\;t\_1 \leq -\infty:\\
                          \;\;\;\;t\_0 \cdot \left(re \cdot 0.5\right)\\
                          
                          \mathbf{elif}\;t\_1 \leq 5 \cdot 10^{-5}:\\
                          \;\;\;\;\sin re \cdot \left(-im\_m\right)\\
                          
                          \mathbf{else}:\\
                          \;\;\;\;t\_0 \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
                          
                          
                          \end{array}
                          \end{array}
                          \end{array}
                          
                          Derivation
                          1. Split input into 3 regimes
                          2. if (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < -inf.0

                            1. Initial program 100.0%

                              \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                            2. Add Preprocessing
                            3. Taylor expanded in im around 0

                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                            4. Step-by-step derivation
                              1. *-commutativeN/A

                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                              2. lower-*.f64N/A

                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                            5. Applied rewrites94.0%

                              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                            6. Taylor expanded in im around inf

                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                            7. Step-by-step derivation
                              1. Applied rewrites94.0%

                                \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                              2. Taylor expanded in re around 0

                                \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                              3. Step-by-step derivation
                                1. *-commutativeN/A

                                  \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                2. lower-*.f6476.6

                                  \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                              4. Applied rewrites76.6%

                                \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]

                              if -inf.0 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))) < 5.00000000000000024e-5

                              1. Initial program 28.8%

                                \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                              2. Add Preprocessing
                              3. Taylor expanded in im around 0

                                \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                              4. Step-by-step derivation
                                1. associate-*r*N/A

                                  \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                2. lower-*.f64N/A

                                  \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                3. neg-mul-1N/A

                                  \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                4. lower-neg.f64N/A

                                  \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                5. lower-sin.f6498.0

                                  \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                              5. Applied rewrites98.0%

                                \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]

                              if 5.00000000000000024e-5 < (*.f64 (*.f64 #s(literal 1/2 binary64) (sin.f64 re)) (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)))

                              1. Initial program 100.0%

                                \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                              2. Add Preprocessing
                              3. Taylor expanded in im around 0

                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                              4. Step-by-step derivation
                                1. *-commutativeN/A

                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                2. lower-*.f64N/A

                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                              5. Applied rewrites84.2%

                                \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                              6. Taylor expanded in im around inf

                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                              7. Step-by-step derivation
                                1. Applied rewrites84.2%

                                  \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                2. Taylor expanded in re around 0

                                  \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                3. Step-by-step derivation
                                  1. *-commutativeN/A

                                    \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                  2. lower-*.f64N/A

                                    \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                  3. +-commutativeN/A

                                    \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                  4. *-commutativeN/A

                                    \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                  5. lower-fma.f64N/A

                                    \[\leadsto \left(\color{blue}{\mathsf{fma}\left({re}^{2}, \frac{-1}{12}, \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                  6. unpow2N/A

                                    \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                  7. lower-*.f6471.5

                                    \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                4. Applied rewrites71.5%

                                  \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                              8. Recombined 3 regimes into one program.
                              9. Final simplification85.8%

                                \[\leadsto \begin{array}{l} \mathbf{if}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq -\infty:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(re \cdot 0.5\right)\\ \mathbf{elif}\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right) \leq 5 \cdot 10^{-5}:\\ \;\;\;\;\sin re \cdot \left(-im\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \end{array} \]
                              10. Add Preprocessing

                              Alternative 8: 99.7% accurate, 0.6× speedup?

                              \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := e^{-im\_m} - e^{im\_m}\\ t_1 := \sin re \cdot 0.5\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_0 \leq -1:\\ \;\;\;\;t\_1 \cdot t\_0\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\left(im\_m \cdot im\_m\right) \cdot -0.3333333333333333, im\_m, -2 \cdot im\_m\right) \cdot t\_1\\ \end{array} \end{array} \end{array} \]
                              im\_m = (fabs.f64 im)
                              im\_s = (copysign.f64 #s(literal 1 binary64) im)
                              (FPCore (im_s re im_m)
                               :precision binary64
                               (let* ((t_0 (- (exp (- im_m)) (exp im_m))) (t_1 (* (sin re) 0.5)))
                                 (*
                                  im_s
                                  (if (<= t_0 -1.0)
                                    (* t_1 t_0)
                                    (*
                                     (fma (* (* im_m im_m) -0.3333333333333333) im_m (* -2.0 im_m))
                                     t_1)))))
                              im\_m = fabs(im);
                              im\_s = copysign(1.0, im);
                              double code(double im_s, double re, double im_m) {
                              	double t_0 = exp(-im_m) - exp(im_m);
                              	double t_1 = sin(re) * 0.5;
                              	double tmp;
                              	if (t_0 <= -1.0) {
                              		tmp = t_1 * t_0;
                              	} else {
                              		tmp = fma(((im_m * im_m) * -0.3333333333333333), im_m, (-2.0 * im_m)) * t_1;
                              	}
                              	return im_s * tmp;
                              }
                              
                              im\_m = abs(im)
                              im\_s = copysign(1.0, im)
                              function code(im_s, re, im_m)
                              	t_0 = Float64(exp(Float64(-im_m)) - exp(im_m))
                              	t_1 = Float64(sin(re) * 0.5)
                              	tmp = 0.0
                              	if (t_0 <= -1.0)
                              		tmp = Float64(t_1 * t_0);
                              	else
                              		tmp = Float64(fma(Float64(Float64(im_m * im_m) * -0.3333333333333333), im_m, Float64(-2.0 * im_m)) * t_1);
                              	end
                              	return Float64(im_s * tmp)
                              end
                              
                              im\_m = N[Abs[im], $MachinePrecision]
                              im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                              code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision]}, N[(im$95$s * If[LessEqual[t$95$0, -1.0], N[(t$95$1 * t$95$0), $MachinePrecision], N[(N[(N[(N[(im$95$m * im$95$m), $MachinePrecision] * -0.3333333333333333), $MachinePrecision] * im$95$m + N[(-2.0 * im$95$m), $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision]]), $MachinePrecision]]]
                              
                              \begin{array}{l}
                              im\_m = \left|im\right|
                              \\
                              im\_s = \mathsf{copysign}\left(1, im\right)
                              
                              \\
                              \begin{array}{l}
                              t_0 := e^{-im\_m} - e^{im\_m}\\
                              t_1 := \sin re \cdot 0.5\\
                              im\_s \cdot \begin{array}{l}
                              \mathbf{if}\;t\_0 \leq -1:\\
                              \;\;\;\;t\_1 \cdot t\_0\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;\mathsf{fma}\left(\left(im\_m \cdot im\_m\right) \cdot -0.3333333333333333, im\_m, -2 \cdot im\_m\right) \cdot t\_1\\
                              
                              
                              \end{array}
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 2 regimes
                              2. if (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)) < -1

                                1. Initial program 100.0%

                                  \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                2. Add Preprocessing

                                if -1 < (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))

                                1. Initial program 51.3%

                                  \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                2. Add Preprocessing
                                3. Taylor expanded in im around 0

                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left(\frac{-1}{3} \cdot {im}^{2} - 2\right)\right)} \]
                                4. Step-by-step derivation
                                  1. *-commutativeN/A

                                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                                  2. lower-*.f64N/A

                                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                                  3. sub-negN/A

                                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{\left(\frac{-1}{3} \cdot {im}^{2} + \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot im\right) \]
                                  4. metadata-evalN/A

                                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\left(\frac{-1}{3} \cdot {im}^{2} + \color{blue}{-2}\right) \cdot im\right) \]
                                  5. lower-fma.f64N/A

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

                                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                                  7. lower-*.f6486.3

                                    \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(-0.3333333333333333, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                                5. Applied rewrites86.3%

                                  \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right)} \]
                                6. Step-by-step derivation
                                  1. Applied rewrites86.3%

                                    \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \mathsf{fma}\left(-0.3333333333333333 \cdot \left(im \cdot im\right), \color{blue}{im}, -2 \cdot im\right) \]
                                7. Recombined 2 regimes into one program.
                                8. Final simplification90.2%

                                  \[\leadsto \begin{array}{l} \mathbf{if}\;e^{-im} - e^{im} \leq -1:\\ \;\;\;\;\left(\sin re \cdot 0.5\right) \cdot \left(e^{-im} - e^{im}\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\left(im \cdot im\right) \cdot -0.3333333333333333, im, -2 \cdot im\right) \cdot \left(\sin re \cdot 0.5\right)\\ \end{array} \]
                                9. Add Preprocessing

                                Alternative 9: 99.6% accurate, 0.7× speedup?

                                \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \sin re \cdot 0.5\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;e^{-im\_m} - e^{im\_m} \leq -1 \cdot 10^{+37}:\\ \;\;\;\;\left(1 - e^{im\_m}\right) \cdot t\_0\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{0.0002777777777777778 - 1.5747039556563367 \cdot 10^{-7} \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right)}{-0.016666666666666666 - -0.0003968253968253968 \cdot \left(im\_m \cdot im\_m\right)}, im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot t\_0\\ \end{array} \end{array} \end{array} \]
                                im\_m = (fabs.f64 im)
                                im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                (FPCore (im_s re im_m)
                                 :precision binary64
                                 (let* ((t_0 (* (sin re) 0.5)))
                                   (*
                                    im_s
                                    (if (<= (- (exp (- im_m)) (exp im_m)) -1e+37)
                                      (* (- 1.0 (exp im_m)) t_0)
                                      (*
                                       (*
                                        (fma
                                         (fma
                                          (/
                                           (-
                                            0.0002777777777777778
                                            (* 1.5747039556563367e-7 (* (* im_m im_m) (* im_m im_m))))
                                           (- -0.016666666666666666 (* -0.0003968253968253968 (* im_m im_m))))
                                          (* im_m im_m)
                                          -0.3333333333333333)
                                         (* im_m im_m)
                                         -2.0)
                                        im_m)
                                       t_0)))))
                                im\_m = fabs(im);
                                im\_s = copysign(1.0, im);
                                double code(double im_s, double re, double im_m) {
                                	double t_0 = sin(re) * 0.5;
                                	double tmp;
                                	if ((exp(-im_m) - exp(im_m)) <= -1e+37) {
                                		tmp = (1.0 - exp(im_m)) * t_0;
                                	} else {
                                		tmp = (fma(fma(((0.0002777777777777778 - (1.5747039556563367e-7 * ((im_m * im_m) * (im_m * im_m)))) / (-0.016666666666666666 - (-0.0003968253968253968 * (im_m * im_m)))), (im_m * im_m), -0.3333333333333333), (im_m * im_m), -2.0) * im_m) * t_0;
                                	}
                                	return im_s * tmp;
                                }
                                
                                im\_m = abs(im)
                                im\_s = copysign(1.0, im)
                                function code(im_s, re, im_m)
                                	t_0 = Float64(sin(re) * 0.5)
                                	tmp = 0.0
                                	if (Float64(exp(Float64(-im_m)) - exp(im_m)) <= -1e+37)
                                		tmp = Float64(Float64(1.0 - exp(im_m)) * t_0);
                                	else
                                		tmp = Float64(Float64(fma(fma(Float64(Float64(0.0002777777777777778 - Float64(1.5747039556563367e-7 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m)))) / Float64(-0.016666666666666666 - Float64(-0.0003968253968253968 * Float64(im_m * im_m)))), Float64(im_m * im_m), -0.3333333333333333), Float64(im_m * im_m), -2.0) * im_m) * t_0);
                                	end
                                	return Float64(im_s * tmp)
                                end
                                
                                im\_m = N[Abs[im], $MachinePrecision]
                                im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[Sin[re], $MachinePrecision] * 0.5), $MachinePrecision]}, N[(im$95$s * If[LessEqual[N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision], -1e+37], N[(N[(1.0 - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision] * t$95$0), $MachinePrecision], N[(N[(N[(N[(N[(N[(0.0002777777777777778 - N[(1.5747039556563367e-7 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(-0.016666666666666666 - N[(-0.0003968253968253968 * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -0.3333333333333333), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * t$95$0), $MachinePrecision]]), $MachinePrecision]]
                                
                                \begin{array}{l}
                                im\_m = \left|im\right|
                                \\
                                im\_s = \mathsf{copysign}\left(1, im\right)
                                
                                \\
                                \begin{array}{l}
                                t_0 := \sin re \cdot 0.5\\
                                im\_s \cdot \begin{array}{l}
                                \mathbf{if}\;e^{-im\_m} - e^{im\_m} \leq -1 \cdot 10^{+37}:\\
                                \;\;\;\;\left(1 - e^{im\_m}\right) \cdot t\_0\\
                                
                                \mathbf{else}:\\
                                \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{0.0002777777777777778 - 1.5747039556563367 \cdot 10^{-7} \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right)}{-0.016666666666666666 - -0.0003968253968253968 \cdot \left(im\_m \cdot im\_m\right)}, im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot t\_0\\
                                
                                
                                \end{array}
                                \end{array}
                                \end{array}
                                
                                Derivation
                                1. Split input into 2 regimes
                                2. if (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im)) < -9.99999999999999954e36

                                  1. Initial program 100.0%

                                    \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in im around 0

                                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]
                                  4. Step-by-step derivation
                                    1. Applied rewrites100.0%

                                      \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\color{blue}{1} - e^{im}\right) \]

                                    if -9.99999999999999954e36 < (-.f64 (exp.f64 (neg.f64 im)) (exp.f64 im))

                                    1. Initial program 51.5%

                                      \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                    2. Add Preprocessing
                                    3. Taylor expanded in im around 0

                                      \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                    4. Step-by-step derivation
                                      1. *-commutativeN/A

                                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                      2. lower-*.f64N/A

                                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                    5. Applied rewrites95.9%

                                      \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                    6. Step-by-step derivation
                                      1. Applied rewrites82.4%

                                        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{0.0002777777777777778 - \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot 1.5747039556563367 \cdot 10^{-7}}{-0.016666666666666666 - \left(im \cdot im\right) \cdot -0.0003968253968253968}, im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \]
                                    7. Recombined 2 regimes into one program.
                                    8. Final simplification87.3%

                                      \[\leadsto \begin{array}{l} \mathbf{if}\;e^{-im} - e^{im} \leq -1 \cdot 10^{+37}:\\ \;\;\;\;\left(1 - e^{im}\right) \cdot \left(\sin re \cdot 0.5\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{0.0002777777777777778 - 1.5747039556563367 \cdot 10^{-7} \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right)}{-0.016666666666666666 - -0.0003968253968253968 \cdot \left(im \cdot im\right)}, im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\sin re \cdot 0.5\right)\\ \end{array} \]
                                    9. Add Preprocessing

                                    Alternative 10: 59.2% accurate, 1.9× speedup?

                                    \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq 0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im\_m \cdot im\_m, -0.016666666666666666\right), im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \end{array} \]
                                    im\_m = (fabs.f64 im)
                                    im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                    (FPCore (im_s re im_m)
                                     :precision binary64
                                     (*
                                      im_s
                                      (if (<= (sin re) 0.002)
                                        (*
                                         (* (fma (* re re) -0.08333333333333333 0.5) re)
                                         (*
                                          (fma
                                           (fma
                                            (fma -0.0003968253968253968 (* im_m im_m) -0.016666666666666666)
                                            (* im_m im_m)
                                            -0.3333333333333333)
                                           (* im_m im_m)
                                           -2.0)
                                          im_m))
                                        (*
                                         (*
                                          (fma
                                           (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                                           (* im_m im_m)
                                           -2.0)
                                          im_m)
                                         (* re 0.5)))))
                                    im\_m = fabs(im);
                                    im\_s = copysign(1.0, im);
                                    double code(double im_s, double re, double im_m) {
                                    	double tmp;
                                    	if (sin(re) <= 0.002) {
                                    		tmp = (fma((re * re), -0.08333333333333333, 0.5) * re) * (fma(fma(fma(-0.0003968253968253968, (im_m * im_m), -0.016666666666666666), (im_m * im_m), -0.3333333333333333), (im_m * im_m), -2.0) * im_m);
                                    	} else {
                                    		tmp = (fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m) * (re * 0.5);
                                    	}
                                    	return im_s * tmp;
                                    }
                                    
                                    im\_m = abs(im)
                                    im\_s = copysign(1.0, im)
                                    function code(im_s, re, im_m)
                                    	tmp = 0.0
                                    	if (sin(re) <= 0.002)
                                    		tmp = Float64(Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re) * Float64(fma(fma(fma(-0.0003968253968253968, Float64(im_m * im_m), -0.016666666666666666), Float64(im_m * im_m), -0.3333333333333333), Float64(im_m * im_m), -2.0) * im_m));
                                    	else
                                    		tmp = Float64(Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m) * Float64(re * 0.5));
                                    	end
                                    	return Float64(im_s * tmp)
                                    end
                                    
                                    im\_m = N[Abs[im], $MachinePrecision]
                                    im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                    code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], 0.002], N[(N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision] * N[(N[(N[(N[(-0.0003968253968253968 * N[(im$95$m * im$95$m), $MachinePrecision] + -0.016666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -0.3333333333333333), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision]), $MachinePrecision], N[(N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(re * 0.5), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]
                                    
                                    \begin{array}{l}
                                    im\_m = \left|im\right|
                                    \\
                                    im\_s = \mathsf{copysign}\left(1, im\right)
                                    
                                    \\
                                    im\_s \cdot \begin{array}{l}
                                    \mathbf{if}\;\sin re \leq 0.002:\\
                                    \;\;\;\;\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im\_m \cdot im\_m, -0.016666666666666666\right), im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right)\\
                                    
                                    \mathbf{else}:\\
                                    \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\
                                    
                                    
                                    \end{array}
                                    \end{array}
                                    
                                    Derivation
                                    1. Split input into 2 regimes
                                    2. if (sin.f64 re) < 2e-3

                                      1. Initial program 68.8%

                                        \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                      2. Add Preprocessing
                                      3. Taylor expanded in im around 0

                                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                      4. Step-by-step derivation
                                        1. *-commutativeN/A

                                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                        2. lower-*.f64N/A

                                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                      5. Applied rewrites93.8%

                                        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                      6. Taylor expanded in re around 0

                                        \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                      7. Step-by-step derivation
                                        1. *-commutativeN/A

                                          \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                        2. lower-*.f64N/A

                                          \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                        3. +-commutativeN/A

                                          \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                        4. *-commutativeN/A

                                          \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                        5. lower-fma.f64N/A

                                          \[\leadsto \left(\color{blue}{\mathsf{fma}\left({re}^{2}, \frac{-1}{12}, \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                        6. unpow2N/A

                                          \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                        7. lower-*.f6468.7

                                          \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \]
                                      8. Applied rewrites68.7%

                                        \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \]

                                      if 2e-3 < (sin.f64 re)

                                      1. Initial program 52.4%

                                        \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                      2. Add Preprocessing
                                      3. Taylor expanded in im around 0

                                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                      4. Step-by-step derivation
                                        1. *-commutativeN/A

                                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                        2. lower-*.f64N/A

                                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                      5. Applied rewrites93.5%

                                        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                      6. Taylor expanded in im around inf

                                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                                      7. Step-by-step derivation
                                        1. Applied rewrites93.0%

                                          \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                        2. Taylor expanded in re around 0

                                          \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                        3. Step-by-step derivation
                                          1. *-commutativeN/A

                                            \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                          2. lower-*.f6430.4

                                            \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                        4. Applied rewrites30.4%

                                          \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                      8. Recombined 2 regimes into one program.
                                      9. Final simplification59.7%

                                        \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq 0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \]
                                      10. Add Preprocessing

                                      Alternative 11: 58.9% accurate, 1.9× speedup?

                                      \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ \begin{array}{l} t_0 := \mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq 0.002:\\ \;\;\;\;t\_0 \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \mathbf{else}:\\ \;\;\;\;t\_0 \cdot \left(re \cdot 0.5\right)\\ \end{array} \end{array} \end{array} \]
                                      im\_m = (fabs.f64 im)
                                      im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                      (FPCore (im_s re im_m)
                                       :precision binary64
                                       (let* ((t_0
                                               (*
                                                (fma
                                                 (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                                                 (* im_m im_m)
                                                 -2.0)
                                                im_m)))
                                         (*
                                          im_s
                                          (if (<= (sin re) 0.002)
                                            (* t_0 (* (fma (* re re) -0.08333333333333333 0.5) re))
                                            (* t_0 (* re 0.5))))))
                                      im\_m = fabs(im);
                                      im\_s = copysign(1.0, im);
                                      double code(double im_s, double re, double im_m) {
                                      	double t_0 = fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m;
                                      	double tmp;
                                      	if (sin(re) <= 0.002) {
                                      		tmp = t_0 * (fma((re * re), -0.08333333333333333, 0.5) * re);
                                      	} else {
                                      		tmp = t_0 * (re * 0.5);
                                      	}
                                      	return im_s * tmp;
                                      }
                                      
                                      im\_m = abs(im)
                                      im\_s = copysign(1.0, im)
                                      function code(im_s, re, im_m)
                                      	t_0 = Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m)
                                      	tmp = 0.0
                                      	if (sin(re) <= 0.002)
                                      		tmp = Float64(t_0 * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
                                      	else
                                      		tmp = Float64(t_0 * Float64(re * 0.5));
                                      	end
                                      	return Float64(im_s * tmp)
                                      end
                                      
                                      im\_m = N[Abs[im], $MachinePrecision]
                                      im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                      code[im$95$s_, re_, im$95$m_] := Block[{t$95$0 = N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision]}, N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], 0.002], N[(t$95$0 * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision], N[(t$95$0 * N[(re * 0.5), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]]
                                      
                                      \begin{array}{l}
                                      im\_m = \left|im\right|
                                      \\
                                      im\_s = \mathsf{copysign}\left(1, im\right)
                                      
                                      \\
                                      \begin{array}{l}
                                      t_0 := \mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\\
                                      im\_s \cdot \begin{array}{l}
                                      \mathbf{if}\;\sin re \leq 0.002:\\
                                      \;\;\;\;t\_0 \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
                                      
                                      \mathbf{else}:\\
                                      \;\;\;\;t\_0 \cdot \left(re \cdot 0.5\right)\\
                                      
                                      
                                      \end{array}
                                      \end{array}
                                      \end{array}
                                      
                                      Derivation
                                      1. Split input into 2 regimes
                                      2. if (sin.f64 re) < 2e-3

                                        1. Initial program 68.8%

                                          \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                        2. Add Preprocessing
                                        3. Taylor expanded in im around 0

                                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                        4. Step-by-step derivation
                                          1. *-commutativeN/A

                                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                          2. lower-*.f64N/A

                                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                        5. Applied rewrites93.8%

                                          \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                        6. Taylor expanded in im around inf

                                          \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                                        7. Step-by-step derivation
                                          1. Applied rewrites93.6%

                                            \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                          2. Taylor expanded in re around 0

                                            \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                          3. Step-by-step derivation
                                            1. *-commutativeN/A

                                              \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                            2. lower-*.f64N/A

                                              \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                            3. +-commutativeN/A

                                              \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                            4. *-commutativeN/A

                                              \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                            5. lower-fma.f64N/A

                                              \[\leadsto \left(\color{blue}{\mathsf{fma}\left({re}^{2}, \frac{-1}{12}, \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                            6. unpow2N/A

                                              \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                            7. lower-*.f6468.5

                                              \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                          4. Applied rewrites68.5%

                                            \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]

                                          if 2e-3 < (sin.f64 re)

                                          1. Initial program 52.4%

                                            \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                          2. Add Preprocessing
                                          3. Taylor expanded in im around 0

                                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                          4. Step-by-step derivation
                                            1. *-commutativeN/A

                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                            2. lower-*.f64N/A

                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                          5. Applied rewrites93.5%

                                            \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                          6. Taylor expanded in im around inf

                                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                                          7. Step-by-step derivation
                                            1. Applied rewrites93.0%

                                              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                            2. Taylor expanded in re around 0

                                              \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                            3. Step-by-step derivation
                                              1. *-commutativeN/A

                                                \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                              2. lower-*.f6430.4

                                                \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                            4. Applied rewrites30.4%

                                              \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                          8. Recombined 2 regimes into one program.
                                          9. Final simplification59.6%

                                            \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq 0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \]
                                          10. Add Preprocessing

                                          Alternative 12: 58.8% accurate, 2.0× speedup?

                                          \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\left(\left(\left(re \cdot im\_m\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right)\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im\_m \cdot im\_m, -0.016666666666666666\right), im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \end{array} \]
                                          im\_m = (fabs.f64 im)
                                          im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                          (FPCore (im_s re im_m)
                                           :precision binary64
                                           (*
                                            im_s
                                            (if (<= (sin re) -0.002)
                                              (*
                                               (*
                                                (* (* (* re im_m) re) -0.16666666666666666)
                                                (fma
                                                 (fma (* im_m im_m) -0.008333333333333333 -0.16666666666666666)
                                                 (* im_m im_m)
                                                 -1.0))
                                               re)
                                              (*
                                               (*
                                                (fma
                                                 (fma
                                                  (fma -0.0003968253968253968 (* im_m im_m) -0.016666666666666666)
                                                  (* im_m im_m)
                                                  -0.3333333333333333)
                                                 (* im_m im_m)
                                                 -2.0)
                                                im_m)
                                               (* re 0.5)))))
                                          im\_m = fabs(im);
                                          im\_s = copysign(1.0, im);
                                          double code(double im_s, double re, double im_m) {
                                          	double tmp;
                                          	if (sin(re) <= -0.002) {
                                          		tmp = ((((re * im_m) * re) * -0.16666666666666666) * fma(fma((im_m * im_m), -0.008333333333333333, -0.16666666666666666), (im_m * im_m), -1.0)) * re;
                                          	} else {
                                          		tmp = (fma(fma(fma(-0.0003968253968253968, (im_m * im_m), -0.016666666666666666), (im_m * im_m), -0.3333333333333333), (im_m * im_m), -2.0) * im_m) * (re * 0.5);
                                          	}
                                          	return im_s * tmp;
                                          }
                                          
                                          im\_m = abs(im)
                                          im\_s = copysign(1.0, im)
                                          function code(im_s, re, im_m)
                                          	tmp = 0.0
                                          	if (sin(re) <= -0.002)
                                          		tmp = Float64(Float64(Float64(Float64(Float64(re * im_m) * re) * -0.16666666666666666) * fma(fma(Float64(im_m * im_m), -0.008333333333333333, -0.16666666666666666), Float64(im_m * im_m), -1.0)) * re);
                                          	else
                                          		tmp = Float64(Float64(fma(fma(fma(-0.0003968253968253968, Float64(im_m * im_m), -0.016666666666666666), Float64(im_m * im_m), -0.3333333333333333), Float64(im_m * im_m), -2.0) * im_m) * Float64(re * 0.5));
                                          	end
                                          	return Float64(im_s * tmp)
                                          end
                                          
                                          im\_m = N[Abs[im], $MachinePrecision]
                                          im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                          code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(N[(N[(N[(re * im$95$m), $MachinePrecision] * re), $MachinePrecision] * -0.16666666666666666), $MachinePrecision] * N[(N[(N[(im$95$m * im$95$m), $MachinePrecision] * -0.008333333333333333 + -0.16666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision] * re), $MachinePrecision], N[(N[(N[(N[(N[(-0.0003968253968253968 * N[(im$95$m * im$95$m), $MachinePrecision] + -0.016666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -0.3333333333333333), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(re * 0.5), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]
                                          
                                          \begin{array}{l}
                                          im\_m = \left|im\right|
                                          \\
                                          im\_s = \mathsf{copysign}\left(1, im\right)
                                          
                                          \\
                                          im\_s \cdot \begin{array}{l}
                                          \mathbf{if}\;\sin re \leq -0.002:\\
                                          \;\;\;\;\left(\left(\left(\left(re \cdot im\_m\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right)\right) \cdot re\\
                                          
                                          \mathbf{else}:\\
                                          \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im\_m \cdot im\_m, -0.016666666666666666\right), im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\
                                          
                                          
                                          \end{array}
                                          \end{array}
                                          
                                          Derivation
                                          1. Split input into 2 regimes
                                          2. if (sin.f64 re) < -2e-3

                                            1. Initial program 49.2%

                                              \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in im around 0

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

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

                                                \[\leadsto \color{blue}{\left(-1 \cdot \sin re + {im}^{2} \cdot \left(\frac{-1}{6} \cdot \sin re + \frac{-1}{120} \cdot \left({im}^{2} \cdot \sin re\right)\right)\right) \cdot im} \]
                                            5. Applied rewrites85.3%

                                              \[\leadsto \color{blue}{\left(\sin re \cdot \mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im \cdot im, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot im} \]
                                            6. Taylor expanded in re around 0

                                              \[\leadsto re \cdot \color{blue}{\left(\frac{-1}{6} \cdot \left(im \cdot \left({re}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{120} \cdot {im}^{2} - \frac{1}{6}\right) - 1\right)\right)\right) + im \cdot \left({im}^{2} \cdot \left(\frac{-1}{120} \cdot {im}^{2} - \frac{1}{6}\right) - 1\right)\right)} \]
                                            7. Step-by-step derivation
                                              1. Applied rewrites28.7%

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

                                                \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, \frac{-1}{120}, \frac{-1}{6}\right), im \cdot im, -1\right) \cdot \left(\frac{-1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)\right) \cdot re \]
                                              3. Step-by-step derivation
                                                1. Applied rewrites28.7%

                                                  \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right) \cdot \left(\left(\left(im \cdot re\right) \cdot re\right) \cdot -0.16666666666666666\right)\right) \cdot re \]

                                                if -2e-3 < (sin.f64 re)

                                                1. Initial program 71.8%

                                                  \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in im around 0

                                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                                4. Step-by-step derivation
                                                  1. *-commutativeN/A

                                                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                                  2. lower-*.f64N/A

                                                    \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                                5. Applied rewrites93.8%

                                                  \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                                6. Taylor expanded in re around 0

                                                  \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                                7. Step-by-step derivation
                                                  1. *-commutativeN/A

                                                    \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520}, im \cdot im, \frac{-1}{60}\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                                  2. lower-*.f6472.4

                                                    \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \]
                                                8. Applied rewrites72.4%

                                                  \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \]
                                              4. Recombined 2 regimes into one program.
                                              5. Final simplification59.2%

                                                \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\left(\left(\left(re \cdot im\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \]
                                              6. Add Preprocessing

                                              Alternative 13: 58.7% accurate, 2.1× speedup?

                                              \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\left(\left(\left(re \cdot im\_m\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right)\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(im\_m \cdot im\_m\right), im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \end{array} \]
                                              im\_m = (fabs.f64 im)
                                              im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                              (FPCore (im_s re im_m)
                                               :precision binary64
                                               (*
                                                im_s
                                                (if (<= (sin re) -0.002)
                                                  (*
                                                   (*
                                                    (* (* (* re im_m) re) -0.16666666666666666)
                                                    (fma
                                                     (fma (* im_m im_m) -0.008333333333333333 -0.16666666666666666)
                                                     (* im_m im_m)
                                                     -1.0))
                                                   re)
                                                  (*
                                                   (*
                                                    (fma
                                                     (fma
                                                      (* -0.0003968253968253968 (* im_m im_m))
                                                      (* im_m im_m)
                                                      -0.3333333333333333)
                                                     (* im_m im_m)
                                                     -2.0)
                                                    im_m)
                                                   (* re 0.5)))))
                                              im\_m = fabs(im);
                                              im\_s = copysign(1.0, im);
                                              double code(double im_s, double re, double im_m) {
                                              	double tmp;
                                              	if (sin(re) <= -0.002) {
                                              		tmp = ((((re * im_m) * re) * -0.16666666666666666) * fma(fma((im_m * im_m), -0.008333333333333333, -0.16666666666666666), (im_m * im_m), -1.0)) * re;
                                              	} else {
                                              		tmp = (fma(fma((-0.0003968253968253968 * (im_m * im_m)), (im_m * im_m), -0.3333333333333333), (im_m * im_m), -2.0) * im_m) * (re * 0.5);
                                              	}
                                              	return im_s * tmp;
                                              }
                                              
                                              im\_m = abs(im)
                                              im\_s = copysign(1.0, im)
                                              function code(im_s, re, im_m)
                                              	tmp = 0.0
                                              	if (sin(re) <= -0.002)
                                              		tmp = Float64(Float64(Float64(Float64(Float64(re * im_m) * re) * -0.16666666666666666) * fma(fma(Float64(im_m * im_m), -0.008333333333333333, -0.16666666666666666), Float64(im_m * im_m), -1.0)) * re);
                                              	else
                                              		tmp = Float64(Float64(fma(fma(Float64(-0.0003968253968253968 * Float64(im_m * im_m)), Float64(im_m * im_m), -0.3333333333333333), Float64(im_m * im_m), -2.0) * im_m) * Float64(re * 0.5));
                                              	end
                                              	return Float64(im_s * tmp)
                                              end
                                              
                                              im\_m = N[Abs[im], $MachinePrecision]
                                              im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                              code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(N[(N[(N[(re * im$95$m), $MachinePrecision] * re), $MachinePrecision] * -0.16666666666666666), $MachinePrecision] * N[(N[(N[(im$95$m * im$95$m), $MachinePrecision] * -0.008333333333333333 + -0.16666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision] * re), $MachinePrecision], N[(N[(N[(N[(N[(-0.0003968253968253968 * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -0.3333333333333333), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(re * 0.5), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]
                                              
                                              \begin{array}{l}
                                              im\_m = \left|im\right|
                                              \\
                                              im\_s = \mathsf{copysign}\left(1, im\right)
                                              
                                              \\
                                              im\_s \cdot \begin{array}{l}
                                              \mathbf{if}\;\sin re \leq -0.002:\\
                                              \;\;\;\;\left(\left(\left(\left(re \cdot im\_m\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right)\right) \cdot re\\
                                              
                                              \mathbf{else}:\\
                                              \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(im\_m \cdot im\_m\right), im\_m \cdot im\_m, -0.3333333333333333\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\
                                              
                                              
                                              \end{array}
                                              \end{array}
                                              
                                              Derivation
                                              1. Split input into 2 regimes
                                              2. if (sin.f64 re) < -2e-3

                                                1. Initial program 49.2%

                                                  \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in im around 0

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

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

                                                    \[\leadsto \color{blue}{\left(-1 \cdot \sin re + {im}^{2} \cdot \left(\frac{-1}{6} \cdot \sin re + \frac{-1}{120} \cdot \left({im}^{2} \cdot \sin re\right)\right)\right) \cdot im} \]
                                                5. Applied rewrites85.3%

                                                  \[\leadsto \color{blue}{\left(\sin re \cdot \mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im \cdot im, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot im} \]
                                                6. Taylor expanded in re around 0

                                                  \[\leadsto re \cdot \color{blue}{\left(\frac{-1}{6} \cdot \left(im \cdot \left({re}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{120} \cdot {im}^{2} - \frac{1}{6}\right) - 1\right)\right)\right) + im \cdot \left({im}^{2} \cdot \left(\frac{-1}{120} \cdot {im}^{2} - \frac{1}{6}\right) - 1\right)\right)} \]
                                                7. Step-by-step derivation
                                                  1. Applied rewrites28.7%

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

                                                    \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, \frac{-1}{120}, \frac{-1}{6}\right), im \cdot im, -1\right) \cdot \left(\frac{-1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)\right) \cdot re \]
                                                  3. Step-by-step derivation
                                                    1. Applied rewrites28.7%

                                                      \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right) \cdot \left(\left(\left(im \cdot re\right) \cdot re\right) \cdot -0.16666666666666666\right)\right) \cdot re \]

                                                    if -2e-3 < (sin.f64 re)

                                                    1. Initial program 71.8%

                                                      \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                    2. Add Preprocessing
                                                    3. Taylor expanded in im around 0

                                                      \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                                    4. Step-by-step derivation
                                                      1. *-commutativeN/A

                                                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                                      2. lower-*.f64N/A

                                                        \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                                    5. Applied rewrites93.8%

                                                      \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                                    6. Taylor expanded in im around inf

                                                      \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{2}, im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                                    7. Step-by-step derivation
                                                      1. Applied rewrites93.7%

                                                        \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(im \cdot im\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \]
                                                      2. Taylor expanded in re around 0

                                                        \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520} \cdot \left(im \cdot im\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                                      3. Step-by-step derivation
                                                        1. *-commutativeN/A

                                                          \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2520} \cdot \left(im \cdot im\right), im \cdot im, \frac{-1}{3}\right), im \cdot im, -2\right) \cdot im\right) \]
                                                        2. lower-*.f6472.2

                                                          \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(im \cdot im\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \]
                                                      4. Applied rewrites72.2%

                                                        \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(im \cdot im\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \]
                                                    8. Recombined 2 regimes into one program.
                                                    9. Final simplification59.1%

                                                      \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\left(\left(\left(re \cdot im\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(im \cdot im\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \]
                                                    10. Add Preprocessing

                                                    Alternative 14: 58.5% accurate, 2.1× speedup?

                                                    \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\left(\left(\left(re \cdot im\_m\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right)\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \end{array} \]
                                                    im\_m = (fabs.f64 im)
                                                    im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                    (FPCore (im_s re im_m)
                                                     :precision binary64
                                                     (*
                                                      im_s
                                                      (if (<= (sin re) -0.002)
                                                        (*
                                                         (*
                                                          (* (* (* re im_m) re) -0.16666666666666666)
                                                          (fma
                                                           (fma (* im_m im_m) -0.008333333333333333 -0.16666666666666666)
                                                           (* im_m im_m)
                                                           -1.0))
                                                         re)
                                                        (*
                                                         (*
                                                          (fma
                                                           (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                                                           (* im_m im_m)
                                                           -2.0)
                                                          im_m)
                                                         (* re 0.5)))))
                                                    im\_m = fabs(im);
                                                    im\_s = copysign(1.0, im);
                                                    double code(double im_s, double re, double im_m) {
                                                    	double tmp;
                                                    	if (sin(re) <= -0.002) {
                                                    		tmp = ((((re * im_m) * re) * -0.16666666666666666) * fma(fma((im_m * im_m), -0.008333333333333333, -0.16666666666666666), (im_m * im_m), -1.0)) * re;
                                                    	} else {
                                                    		tmp = (fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m) * (re * 0.5);
                                                    	}
                                                    	return im_s * tmp;
                                                    }
                                                    
                                                    im\_m = abs(im)
                                                    im\_s = copysign(1.0, im)
                                                    function code(im_s, re, im_m)
                                                    	tmp = 0.0
                                                    	if (sin(re) <= -0.002)
                                                    		tmp = Float64(Float64(Float64(Float64(Float64(re * im_m) * re) * -0.16666666666666666) * fma(fma(Float64(im_m * im_m), -0.008333333333333333, -0.16666666666666666), Float64(im_m * im_m), -1.0)) * re);
                                                    	else
                                                    		tmp = Float64(Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m) * Float64(re * 0.5));
                                                    	end
                                                    	return Float64(im_s * tmp)
                                                    end
                                                    
                                                    im\_m = N[Abs[im], $MachinePrecision]
                                                    im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                    code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(N[(N[(N[(re * im$95$m), $MachinePrecision] * re), $MachinePrecision] * -0.16666666666666666), $MachinePrecision] * N[(N[(N[(im$95$m * im$95$m), $MachinePrecision] * -0.008333333333333333 + -0.16666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision] * re), $MachinePrecision], N[(N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(re * 0.5), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]
                                                    
                                                    \begin{array}{l}
                                                    im\_m = \left|im\right|
                                                    \\
                                                    im\_s = \mathsf{copysign}\left(1, im\right)
                                                    
                                                    \\
                                                    im\_s \cdot \begin{array}{l}
                                                    \mathbf{if}\;\sin re \leq -0.002:\\
                                                    \;\;\;\;\left(\left(\left(\left(re \cdot im\_m\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right)\right) \cdot re\\
                                                    
                                                    \mathbf{else}:\\
                                                    \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\
                                                    
                                                    
                                                    \end{array}
                                                    \end{array}
                                                    
                                                    Derivation
                                                    1. Split input into 2 regimes
                                                    2. if (sin.f64 re) < -2e-3

                                                      1. Initial program 49.2%

                                                        \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                      2. Add Preprocessing
                                                      3. Taylor expanded in im around 0

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

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

                                                          \[\leadsto \color{blue}{\left(-1 \cdot \sin re + {im}^{2} \cdot \left(\frac{-1}{6} \cdot \sin re + \frac{-1}{120} \cdot \left({im}^{2} \cdot \sin re\right)\right)\right) \cdot im} \]
                                                      5. Applied rewrites85.3%

                                                        \[\leadsto \color{blue}{\left(\sin re \cdot \mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im \cdot im, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot im} \]
                                                      6. Taylor expanded in re around 0

                                                        \[\leadsto re \cdot \color{blue}{\left(\frac{-1}{6} \cdot \left(im \cdot \left({re}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{120} \cdot {im}^{2} - \frac{1}{6}\right) - 1\right)\right)\right) + im \cdot \left({im}^{2} \cdot \left(\frac{-1}{120} \cdot {im}^{2} - \frac{1}{6}\right) - 1\right)\right)} \]
                                                      7. Step-by-step derivation
                                                        1. Applied rewrites28.7%

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

                                                          \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, \frac{-1}{120}, \frac{-1}{6}\right), im \cdot im, -1\right) \cdot \left(\frac{-1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)\right) \cdot re \]
                                                        3. Step-by-step derivation
                                                          1. Applied rewrites28.7%

                                                            \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right) \cdot \left(\left(\left(im \cdot re\right) \cdot re\right) \cdot -0.16666666666666666\right)\right) \cdot re \]

                                                          if -2e-3 < (sin.f64 re)

                                                          1. Initial program 71.8%

                                                            \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                          2. Add Preprocessing
                                                          3. Taylor expanded in im around 0

                                                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                                          4. Step-by-step derivation
                                                            1. *-commutativeN/A

                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                                            2. lower-*.f64N/A

                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                                          5. Applied rewrites93.8%

                                                            \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                                          6. Taylor expanded in im around inf

                                                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                                                          7. Step-by-step derivation
                                                            1. Applied rewrites93.4%

                                                              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                                            2. Taylor expanded in re around 0

                                                              \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                                            3. Step-by-step derivation
                                                              1. *-commutativeN/A

                                                                \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                                              2. lower-*.f6472.2

                                                                \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                                            4. Applied rewrites72.2%

                                                              \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                                          8. Recombined 2 regimes into one program.
                                                          9. Final simplification59.1%

                                                            \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\left(\left(\left(re \cdot im\right) \cdot re\right) \cdot -0.16666666666666666\right) \cdot \mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \]
                                                          10. Add Preprocessing

                                                          Alternative 15: 58.5% accurate, 2.1× speedup?

                                                          \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \end{array} \]
                                                          im\_m = (fabs.f64 im)
                                                          im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                          (FPCore (im_s re im_m)
                                                           :precision binary64
                                                           (*
                                                            im_s
                                                            (if (<= (sin re) -0.002)
                                                              (*
                                                               (* (fma -0.3333333333333333 (* im_m im_m) -2.0) im_m)
                                                               (* (fma (* re re) -0.08333333333333333 0.5) re))
                                                              (*
                                                               (*
                                                                (fma
                                                                 (* -0.0003968253968253968 (* (* im_m im_m) (* im_m im_m)))
                                                                 (* im_m im_m)
                                                                 -2.0)
                                                                im_m)
                                                               (* re 0.5)))))
                                                          im\_m = fabs(im);
                                                          im\_s = copysign(1.0, im);
                                                          double code(double im_s, double re, double im_m) {
                                                          	double tmp;
                                                          	if (sin(re) <= -0.002) {
                                                          		tmp = (fma(-0.3333333333333333, (im_m * im_m), -2.0) * im_m) * (fma((re * re), -0.08333333333333333, 0.5) * re);
                                                          	} else {
                                                          		tmp = (fma((-0.0003968253968253968 * ((im_m * im_m) * (im_m * im_m))), (im_m * im_m), -2.0) * im_m) * (re * 0.5);
                                                          	}
                                                          	return im_s * tmp;
                                                          }
                                                          
                                                          im\_m = abs(im)
                                                          im\_s = copysign(1.0, im)
                                                          function code(im_s, re, im_m)
                                                          	tmp = 0.0
                                                          	if (sin(re) <= -0.002)
                                                          		tmp = Float64(Float64(fma(-0.3333333333333333, Float64(im_m * im_m), -2.0) * im_m) * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
                                                          	else
                                                          		tmp = Float64(Float64(fma(Float64(-0.0003968253968253968 * Float64(Float64(im_m * im_m) * Float64(im_m * im_m))), Float64(im_m * im_m), -2.0) * im_m) * Float64(re * 0.5));
                                                          	end
                                                          	return Float64(im_s * tmp)
                                                          end
                                                          
                                                          im\_m = N[Abs[im], $MachinePrecision]
                                                          im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                          code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(N[(-0.3333333333333333 * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision], N[(N[(N[(N[(-0.0003968253968253968 * N[(N[(im$95$m * im$95$m), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(re * 0.5), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]
                                                          
                                                          \begin{array}{l}
                                                          im\_m = \left|im\right|
                                                          \\
                                                          im\_s = \mathsf{copysign}\left(1, im\right)
                                                          
                                                          \\
                                                          im\_s \cdot \begin{array}{l}
                                                          \mathbf{if}\;\sin re \leq -0.002:\\
                                                          \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
                                                          
                                                          \mathbf{else}:\\
                                                          \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im\_m \cdot im\_m\right) \cdot \left(im\_m \cdot im\_m\right)\right), im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\
                                                          
                                                          
                                                          \end{array}
                                                          \end{array}
                                                          
                                                          Derivation
                                                          1. Split input into 2 regimes
                                                          2. if (sin.f64 re) < -2e-3

                                                            1. Initial program 49.2%

                                                              \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                            2. Add Preprocessing
                                                            3. Taylor expanded in im around 0

                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left(\frac{-1}{3} \cdot {im}^{2} - 2\right)\right)} \]
                                                            4. Step-by-step derivation
                                                              1. *-commutativeN/A

                                                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                                                              2. lower-*.f64N/A

                                                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                                                              3. sub-negN/A

                                                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{\left(\frac{-1}{3} \cdot {im}^{2} + \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot im\right) \]
                                                              4. metadata-evalN/A

                                                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\left(\frac{-1}{3} \cdot {im}^{2} + \color{blue}{-2}\right) \cdot im\right) \]
                                                              5. lower-fma.f64N/A

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

                                                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                                                              7. lower-*.f6478.9

                                                                \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(-0.3333333333333333, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                                                            5. Applied rewrites78.9%

                                                              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right)} \]
                                                            6. Taylor expanded in re around 0

                                                              \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                            7. Step-by-step derivation
                                                              1. *-commutativeN/A

                                                                \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                              2. lower-*.f64N/A

                                                                \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                              3. +-commutativeN/A

                                                                \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                              4. *-commutativeN/A

                                                                \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                              5. lower-fma.f64N/A

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

                                                                \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                              7. lower-*.f6427.4

                                                                \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \]
                                                            8. Applied rewrites27.4%

                                                              \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \]

                                                            if -2e-3 < (sin.f64 re)

                                                            1. Initial program 71.8%

                                                              \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                            2. Add Preprocessing
                                                            3. Taylor expanded in im around 0

                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right)\right)} \]
                                                            4. Step-by-step derivation
                                                              1. *-commutativeN/A

                                                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                                              2. lower-*.f64N/A

                                                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left({im}^{2} \cdot \left({im}^{2} \cdot \left(\frac{-1}{2520} \cdot {im}^{2} - \frac{1}{60}\right) - \frac{1}{3}\right) - 2\right) \cdot im\right)} \]
                                                            5. Applied rewrites93.8%

                                                              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(-0.0003968253968253968, im \cdot im, -0.016666666666666666\right), im \cdot im, -0.3333333333333333\right), im \cdot im, -2\right) \cdot im\right)} \]
                                                            6. Taylor expanded in im around inf

                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{2520} \cdot {im}^{4}, im \cdot im, -2\right) \cdot im\right) \]
                                                            7. Step-by-step derivation
                                                              1. Applied rewrites93.4%

                                                                \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                                              2. Taylor expanded in re around 0

                                                                \[\leadsto \color{blue}{\left(\frac{1}{2} \cdot re\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                                              3. Step-by-step derivation
                                                                1. *-commutativeN/A

                                                                  \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot \frac{-1}{2520}, im \cdot im, -2\right) \cdot im\right) \]
                                                                2. lower-*.f6472.2

                                                                  \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                                              4. Applied rewrites72.2%

                                                                \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(\left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right) \cdot -0.0003968253968253968, im \cdot im, -2\right) \cdot im\right) \]
                                                            8. Recombined 2 regimes into one program.
                                                            9. Final simplification58.7%

                                                              \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.0003968253968253968 \cdot \left(\left(im \cdot im\right) \cdot \left(im \cdot im\right)\right), im \cdot im, -2\right) \cdot im\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \]
                                                            10. Add Preprocessing

                                                            Alternative 16: 57.3% accurate, 2.2× speedup?

                                                            \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right) \cdot im\_m\right) \cdot re\\ \end{array} \end{array} \]
                                                            im\_m = (fabs.f64 im)
                                                            im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                            (FPCore (im_s re im_m)
                                                             :precision binary64
                                                             (*
                                                              im_s
                                                              (if (<= (sin re) -0.002)
                                                                (*
                                                                 (* (fma -0.3333333333333333 (* im_m im_m) -2.0) im_m)
                                                                 (* (fma (* re re) -0.08333333333333333 0.5) re))
                                                                (*
                                                                 (*
                                                                  (fma
                                                                   (fma (* im_m im_m) -0.008333333333333333 -0.16666666666666666)
                                                                   (* im_m im_m)
                                                                   -1.0)
                                                                  im_m)
                                                                 re))))
                                                            im\_m = fabs(im);
                                                            im\_s = copysign(1.0, im);
                                                            double code(double im_s, double re, double im_m) {
                                                            	double tmp;
                                                            	if (sin(re) <= -0.002) {
                                                            		tmp = (fma(-0.3333333333333333, (im_m * im_m), -2.0) * im_m) * (fma((re * re), -0.08333333333333333, 0.5) * re);
                                                            	} else {
                                                            		tmp = (fma(fma((im_m * im_m), -0.008333333333333333, -0.16666666666666666), (im_m * im_m), -1.0) * im_m) * re;
                                                            	}
                                                            	return im_s * tmp;
                                                            }
                                                            
                                                            im\_m = abs(im)
                                                            im\_s = copysign(1.0, im)
                                                            function code(im_s, re, im_m)
                                                            	tmp = 0.0
                                                            	if (sin(re) <= -0.002)
                                                            		tmp = Float64(Float64(fma(-0.3333333333333333, Float64(im_m * im_m), -2.0) * im_m) * Float64(fma(Float64(re * re), -0.08333333333333333, 0.5) * re));
                                                            	else
                                                            		tmp = Float64(Float64(fma(fma(Float64(im_m * im_m), -0.008333333333333333, -0.16666666666666666), Float64(im_m * im_m), -1.0) * im_m) * re);
                                                            	end
                                                            	return Float64(im_s * tmp)
                                                            end
                                                            
                                                            im\_m = N[Abs[im], $MachinePrecision]
                                                            im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                            code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(N[(-0.3333333333333333 * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(N[(N[(re * re), $MachinePrecision] * -0.08333333333333333 + 0.5), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision], N[(N[(N[(N[(N[(im$95$m * im$95$m), $MachinePrecision] * -0.008333333333333333 + -0.16666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -1.0), $MachinePrecision] * im$95$m), $MachinePrecision] * re), $MachinePrecision]]), $MachinePrecision]
                                                            
                                                            \begin{array}{l}
                                                            im\_m = \left|im\right|
                                                            \\
                                                            im\_s = \mathsf{copysign}\left(1, im\right)
                                                            
                                                            \\
                                                            im\_s \cdot \begin{array}{l}
                                                            \mathbf{if}\;\sin re \leq -0.002:\\
                                                            \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\
                                                            
                                                            \mathbf{else}:\\
                                                            \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right) \cdot im\_m\right) \cdot re\\
                                                            
                                                            
                                                            \end{array}
                                                            \end{array}
                                                            
                                                            Derivation
                                                            1. Split input into 2 regimes
                                                            2. if (sin.f64 re) < -2e-3

                                                              1. Initial program 49.2%

                                                                \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                              2. Add Preprocessing
                                                              3. Taylor expanded in im around 0

                                                                \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left(\frac{-1}{3} \cdot {im}^{2} - 2\right)\right)} \]
                                                              4. Step-by-step derivation
                                                                1. *-commutativeN/A

                                                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                                                                2. lower-*.f64N/A

                                                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                                                                3. sub-negN/A

                                                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{\left(\frac{-1}{3} \cdot {im}^{2} + \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot im\right) \]
                                                                4. metadata-evalN/A

                                                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\left(\frac{-1}{3} \cdot {im}^{2} + \color{blue}{-2}\right) \cdot im\right) \]
                                                                5. lower-fma.f64N/A

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

                                                                  \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                                                                7. lower-*.f6478.9

                                                                  \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(-0.3333333333333333, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                                                              5. Applied rewrites78.9%

                                                                \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right)} \]
                                                              6. Taylor expanded in re around 0

                                                                \[\leadsto \color{blue}{\left(re \cdot \left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right)\right)} \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                              7. Step-by-step derivation
                                                                1. *-commutativeN/A

                                                                  \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                                2. lower-*.f64N/A

                                                                  \[\leadsto \color{blue}{\left(\left(\frac{1}{2} + \frac{-1}{12} \cdot {re}^{2}\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                                3. +-commutativeN/A

                                                                  \[\leadsto \left(\color{blue}{\left(\frac{-1}{12} \cdot {re}^{2} + \frac{1}{2}\right)} \cdot re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                                4. *-commutativeN/A

                                                                  \[\leadsto \left(\left(\color{blue}{{re}^{2} \cdot \frac{-1}{12}} + \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                                5. lower-fma.f64N/A

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

                                                                  \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, \frac{-1}{12}, \frac{1}{2}\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                                7. lower-*.f6427.4

                                                                  \[\leadsto \left(\mathsf{fma}\left(\color{blue}{re \cdot re}, -0.08333333333333333, 0.5\right) \cdot re\right) \cdot \left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \]
                                                              8. Applied rewrites27.4%

                                                                \[\leadsto \color{blue}{\left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)} \cdot \left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \]

                                                              if -2e-3 < (sin.f64 re)

                                                              1. Initial program 71.8%

                                                                \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                              2. Add Preprocessing
                                                              3. Taylor expanded in im around 0

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

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

                                                                  \[\leadsto \color{blue}{\left(-1 \cdot \sin re + {im}^{2} \cdot \left(\frac{-1}{6} \cdot \sin re + \frac{-1}{120} \cdot \left({im}^{2} \cdot \sin re\right)\right)\right) \cdot im} \]
                                                              5. Applied rewrites87.4%

                                                                \[\leadsto \color{blue}{\left(\sin re \cdot \mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im \cdot im, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot im} \]
                                                              6. Taylor expanded in re around 0

                                                                \[\leadsto im \cdot \color{blue}{\left(re \cdot \left({im}^{2} \cdot \left(\frac{-1}{120} \cdot {im}^{2} - \frac{1}{6}\right) - 1\right)\right)} \]
                                                              7. Step-by-step derivation
                                                                1. Applied rewrites68.6%

                                                                  \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right) \cdot im\right) \cdot \color{blue}{re} \]
                                                              8. Recombined 2 regimes into one program.
                                                              9. Final simplification56.2%

                                                                \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \cdot \left(\mathsf{fma}\left(re \cdot re, -0.08333333333333333, 0.5\right) \cdot re\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right) \cdot im\right) \cdot re\\ \end{array} \]
                                                              10. Add Preprocessing

                                                              Alternative 17: 56.4% accurate, 2.3× speedup?

                                                              \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im\_m, -im\_m\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right) \cdot im\_m\right) \cdot re\\ \end{array} \end{array} \]
                                                              im\_m = (fabs.f64 im)
                                                              im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                              (FPCore (im_s re im_m)
                                                               :precision binary64
                                                               (*
                                                                im_s
                                                                (if (<= (sin re) -0.002)
                                                                  (* (fma (* 0.16666666666666666 re) (* re im_m) (- im_m)) re)
                                                                  (*
                                                                   (*
                                                                    (fma
                                                                     (fma (* im_m im_m) -0.008333333333333333 -0.16666666666666666)
                                                                     (* im_m im_m)
                                                                     -1.0)
                                                                    im_m)
                                                                   re))))
                                                              im\_m = fabs(im);
                                                              im\_s = copysign(1.0, im);
                                                              double code(double im_s, double re, double im_m) {
                                                              	double tmp;
                                                              	if (sin(re) <= -0.002) {
                                                              		tmp = fma((0.16666666666666666 * re), (re * im_m), -im_m) * re;
                                                              	} else {
                                                              		tmp = (fma(fma((im_m * im_m), -0.008333333333333333, -0.16666666666666666), (im_m * im_m), -1.0) * im_m) * re;
                                                              	}
                                                              	return im_s * tmp;
                                                              }
                                                              
                                                              im\_m = abs(im)
                                                              im\_s = copysign(1.0, im)
                                                              function code(im_s, re, im_m)
                                                              	tmp = 0.0
                                                              	if (sin(re) <= -0.002)
                                                              		tmp = Float64(fma(Float64(0.16666666666666666 * re), Float64(re * im_m), Float64(-im_m)) * re);
                                                              	else
                                                              		tmp = Float64(Float64(fma(fma(Float64(im_m * im_m), -0.008333333333333333, -0.16666666666666666), Float64(im_m * im_m), -1.0) * im_m) * re);
                                                              	end
                                                              	return Float64(im_s * tmp)
                                                              end
                                                              
                                                              im\_m = N[Abs[im], $MachinePrecision]
                                                              im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                              code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(N[(0.16666666666666666 * re), $MachinePrecision] * N[(re * im$95$m), $MachinePrecision] + (-im$95$m)), $MachinePrecision] * re), $MachinePrecision], N[(N[(N[(N[(N[(im$95$m * im$95$m), $MachinePrecision] * -0.008333333333333333 + -0.16666666666666666), $MachinePrecision] * N[(im$95$m * im$95$m), $MachinePrecision] + -1.0), $MachinePrecision] * im$95$m), $MachinePrecision] * re), $MachinePrecision]]), $MachinePrecision]
                                                              
                                                              \begin{array}{l}
                                                              im\_m = \left|im\right|
                                                              \\
                                                              im\_s = \mathsf{copysign}\left(1, im\right)
                                                              
                                                              \\
                                                              im\_s \cdot \begin{array}{l}
                                                              \mathbf{if}\;\sin re \leq -0.002:\\
                                                              \;\;\;\;\mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im\_m, -im\_m\right) \cdot re\\
                                                              
                                                              \mathbf{else}:\\
                                                              \;\;\;\;\left(\mathsf{fma}\left(\mathsf{fma}\left(im\_m \cdot im\_m, -0.008333333333333333, -0.16666666666666666\right), im\_m \cdot im\_m, -1\right) \cdot im\_m\right) \cdot re\\
                                                              
                                                              
                                                              \end{array}
                                                              \end{array}
                                                              
                                                              Derivation
                                                              1. Split input into 2 regimes
                                                              2. if (sin.f64 re) < -2e-3

                                                                1. Initial program 49.2%

                                                                  \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                2. Add Preprocessing
                                                                3. Taylor expanded in im around 0

                                                                  \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                4. Step-by-step derivation
                                                                  1. associate-*r*N/A

                                                                    \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                  2. lower-*.f64N/A

                                                                    \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                  3. neg-mul-1N/A

                                                                    \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                  4. lower-neg.f64N/A

                                                                    \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                  5. lower-sin.f6457.4

                                                                    \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                5. Applied rewrites57.4%

                                                                  \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                6. Taylor expanded in re around 0

                                                                  \[\leadsto re \cdot \color{blue}{\left(-1 \cdot im + \frac{1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)} \]
                                                                7. Step-by-step derivation
                                                                  1. Applied rewrites25.0%

                                                                    \[\leadsto \left(im \cdot \mathsf{fma}\left(0.16666666666666666, re \cdot re, -1\right)\right) \cdot \color{blue}{re} \]
                                                                  2. Step-by-step derivation
                                                                    1. Applied rewrites25.0%

                                                                      \[\leadsto \mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im, -im\right) \cdot re \]

                                                                    if -2e-3 < (sin.f64 re)

                                                                    1. Initial program 71.8%

                                                                      \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                    2. Add Preprocessing
                                                                    3. Taylor expanded in im around 0

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

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

                                                                        \[\leadsto \color{blue}{\left(-1 \cdot \sin re + {im}^{2} \cdot \left(\frac{-1}{6} \cdot \sin re + \frac{-1}{120} \cdot \left({im}^{2} \cdot \sin re\right)\right)\right) \cdot im} \]
                                                                    5. Applied rewrites87.4%

                                                                      \[\leadsto \color{blue}{\left(\sin re \cdot \mathsf{fma}\left(\mathsf{fma}\left(-0.008333333333333333, im \cdot im, -0.16666666666666666\right), im \cdot im, -1\right)\right) \cdot im} \]
                                                                    6. Taylor expanded in re around 0

                                                                      \[\leadsto im \cdot \color{blue}{\left(re \cdot \left({im}^{2} \cdot \left(\frac{-1}{120} \cdot {im}^{2} - \frac{1}{6}\right) - 1\right)\right)} \]
                                                                    7. Step-by-step derivation
                                                                      1. Applied rewrites68.6%

                                                                        \[\leadsto \left(\mathsf{fma}\left(\mathsf{fma}\left(im \cdot im, -0.008333333333333333, -0.16666666666666666\right), im \cdot im, -1\right) \cdot im\right) \cdot \color{blue}{re} \]
                                                                    8. Recombined 2 regimes into one program.
                                                                    9. Add Preprocessing

                                                                    Alternative 18: 52.7% accurate, 2.4× speedup?

                                                                    \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im\_m, -im\_m\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \end{array} \]
                                                                    im\_m = (fabs.f64 im)
                                                                    im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                                    (FPCore (im_s re im_m)
                                                                     :precision binary64
                                                                     (*
                                                                      im_s
                                                                      (if (<= (sin re) -0.002)
                                                                        (* (fma (* 0.16666666666666666 re) (* re im_m) (- im_m)) re)
                                                                        (* (* (fma -0.3333333333333333 (* im_m im_m) -2.0) im_m) (* re 0.5)))))
                                                                    im\_m = fabs(im);
                                                                    im\_s = copysign(1.0, im);
                                                                    double code(double im_s, double re, double im_m) {
                                                                    	double tmp;
                                                                    	if (sin(re) <= -0.002) {
                                                                    		tmp = fma((0.16666666666666666 * re), (re * im_m), -im_m) * re;
                                                                    	} else {
                                                                    		tmp = (fma(-0.3333333333333333, (im_m * im_m), -2.0) * im_m) * (re * 0.5);
                                                                    	}
                                                                    	return im_s * tmp;
                                                                    }
                                                                    
                                                                    im\_m = abs(im)
                                                                    im\_s = copysign(1.0, im)
                                                                    function code(im_s, re, im_m)
                                                                    	tmp = 0.0
                                                                    	if (sin(re) <= -0.002)
                                                                    		tmp = Float64(fma(Float64(0.16666666666666666 * re), Float64(re * im_m), Float64(-im_m)) * re);
                                                                    	else
                                                                    		tmp = Float64(Float64(fma(-0.3333333333333333, Float64(im_m * im_m), -2.0) * im_m) * Float64(re * 0.5));
                                                                    	end
                                                                    	return Float64(im_s * tmp)
                                                                    end
                                                                    
                                                                    im\_m = N[Abs[im], $MachinePrecision]
                                                                    im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                                    code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(N[(0.16666666666666666 * re), $MachinePrecision] * N[(re * im$95$m), $MachinePrecision] + (-im$95$m)), $MachinePrecision] * re), $MachinePrecision], N[(N[(N[(-0.3333333333333333 * N[(im$95$m * im$95$m), $MachinePrecision] + -2.0), $MachinePrecision] * im$95$m), $MachinePrecision] * N[(re * 0.5), $MachinePrecision]), $MachinePrecision]]), $MachinePrecision]
                                                                    
                                                                    \begin{array}{l}
                                                                    im\_m = \left|im\right|
                                                                    \\
                                                                    im\_s = \mathsf{copysign}\left(1, im\right)
                                                                    
                                                                    \\
                                                                    im\_s \cdot \begin{array}{l}
                                                                    \mathbf{if}\;\sin re \leq -0.002:\\
                                                                    \;\;\;\;\mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im\_m, -im\_m\right) \cdot re\\
                                                                    
                                                                    \mathbf{else}:\\
                                                                    \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im\_m \cdot im\_m, -2\right) \cdot im\_m\right) \cdot \left(re \cdot 0.5\right)\\
                                                                    
                                                                    
                                                                    \end{array}
                                                                    \end{array}
                                                                    
                                                                    Derivation
                                                                    1. Split input into 2 regimes
                                                                    2. if (sin.f64 re) < -2e-3

                                                                      1. Initial program 49.2%

                                                                        \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                      2. Add Preprocessing
                                                                      3. Taylor expanded in im around 0

                                                                        \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                      4. Step-by-step derivation
                                                                        1. associate-*r*N/A

                                                                          \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                        2. lower-*.f64N/A

                                                                          \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                        3. neg-mul-1N/A

                                                                          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                        4. lower-neg.f64N/A

                                                                          \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                        5. lower-sin.f6457.4

                                                                          \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                      5. Applied rewrites57.4%

                                                                        \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                      6. Taylor expanded in re around 0

                                                                        \[\leadsto re \cdot \color{blue}{\left(-1 \cdot im + \frac{1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)} \]
                                                                      7. Step-by-step derivation
                                                                        1. Applied rewrites25.0%

                                                                          \[\leadsto \left(im \cdot \mathsf{fma}\left(0.16666666666666666, re \cdot re, -1\right)\right) \cdot \color{blue}{re} \]
                                                                        2. Step-by-step derivation
                                                                          1. Applied rewrites25.0%

                                                                            \[\leadsto \mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im, -im\right) \cdot re \]

                                                                          if -2e-3 < (sin.f64 re)

                                                                          1. Initial program 71.8%

                                                                            \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                          2. Add Preprocessing
                                                                          3. Taylor expanded in im around 0

                                                                            \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(im \cdot \left(\frac{-1}{3} \cdot {im}^{2} - 2\right)\right)} \]
                                                                          4. Step-by-step derivation
                                                                            1. *-commutativeN/A

                                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                                                                            2. lower-*.f64N/A

                                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \color{blue}{\left(\left(\frac{-1}{3} \cdot {im}^{2} - 2\right) \cdot im\right)} \]
                                                                            3. sub-negN/A

                                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\color{blue}{\left(\frac{-1}{3} \cdot {im}^{2} + \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot im\right) \]
                                                                            4. metadata-evalN/A

                                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\left(\frac{-1}{3} \cdot {im}^{2} + \color{blue}{-2}\right) \cdot im\right) \]
                                                                            5. lower-fma.f64N/A

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

                                                                              \[\leadsto \left(\frac{1}{2} \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                                                                            7. lower-*.f6481.9

                                                                              \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \left(\mathsf{fma}\left(-0.3333333333333333, \color{blue}{im \cdot im}, -2\right) \cdot im\right) \]
                                                                          5. Applied rewrites81.9%

                                                                            \[\leadsto \left(0.5 \cdot \sin re\right) \cdot \color{blue}{\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right)} \]
                                                                          6. Taylor expanded in re around 0

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

                                                                              \[\leadsto \color{blue}{\left(re \cdot \frac{1}{2}\right)} \cdot \left(\mathsf{fma}\left(\frac{-1}{3}, im \cdot im, -2\right) \cdot im\right) \]
                                                                            2. lower-*.f6461.5

                                                                              \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \]
                                                                          8. Applied rewrites61.5%

                                                                            \[\leadsto \color{blue}{\left(re \cdot 0.5\right)} \cdot \left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \]
                                                                        3. Recombined 2 regimes into one program.
                                                                        4. Final simplification50.5%

                                                                          \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im, -im\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(-0.3333333333333333, im \cdot im, -2\right) \cdot im\right) \cdot \left(re \cdot 0.5\right)\\ \end{array} \]
                                                                        5. Add Preprocessing

                                                                        Alternative 19: 35.0% accurate, 2.4× speedup?

                                                                        \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq 0.002:\\ \;\;\;\;\mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im\_m, -im\_m\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left(-im\_m\right)\\ \end{array} \end{array} \]
                                                                        im\_m = (fabs.f64 im)
                                                                        im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                                        (FPCore (im_s re im_m)
                                                                         :precision binary64
                                                                         (*
                                                                          im_s
                                                                          (if (<= (sin re) 0.002)
                                                                            (* (fma (* 0.16666666666666666 re) (* re im_m) (- im_m)) re)
                                                                            (* re (- im_m)))))
                                                                        im\_m = fabs(im);
                                                                        im\_s = copysign(1.0, im);
                                                                        double code(double im_s, double re, double im_m) {
                                                                        	double tmp;
                                                                        	if (sin(re) <= 0.002) {
                                                                        		tmp = fma((0.16666666666666666 * re), (re * im_m), -im_m) * re;
                                                                        	} else {
                                                                        		tmp = re * -im_m;
                                                                        	}
                                                                        	return im_s * tmp;
                                                                        }
                                                                        
                                                                        im\_m = abs(im)
                                                                        im\_s = copysign(1.0, im)
                                                                        function code(im_s, re, im_m)
                                                                        	tmp = 0.0
                                                                        	if (sin(re) <= 0.002)
                                                                        		tmp = Float64(fma(Float64(0.16666666666666666 * re), Float64(re * im_m), Float64(-im_m)) * re);
                                                                        	else
                                                                        		tmp = Float64(re * Float64(-im_m));
                                                                        	end
                                                                        	return Float64(im_s * tmp)
                                                                        end
                                                                        
                                                                        im\_m = N[Abs[im], $MachinePrecision]
                                                                        im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                                        code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], 0.002], N[(N[(N[(0.16666666666666666 * re), $MachinePrecision] * N[(re * im$95$m), $MachinePrecision] + (-im$95$m)), $MachinePrecision] * re), $MachinePrecision], N[(re * (-im$95$m)), $MachinePrecision]]), $MachinePrecision]
                                                                        
                                                                        \begin{array}{l}
                                                                        im\_m = \left|im\right|
                                                                        \\
                                                                        im\_s = \mathsf{copysign}\left(1, im\right)
                                                                        
                                                                        \\
                                                                        im\_s \cdot \begin{array}{l}
                                                                        \mathbf{if}\;\sin re \leq 0.002:\\
                                                                        \;\;\;\;\mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im\_m, -im\_m\right) \cdot re\\
                                                                        
                                                                        \mathbf{else}:\\
                                                                        \;\;\;\;re \cdot \left(-im\_m\right)\\
                                                                        
                                                                        
                                                                        \end{array}
                                                                        \end{array}
                                                                        
                                                                        Derivation
                                                                        1. Split input into 2 regimes
                                                                        2. if (sin.f64 re) < 2e-3

                                                                          1. Initial program 68.8%

                                                                            \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                          2. Add Preprocessing
                                                                          3. Taylor expanded in im around 0

                                                                            \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                          4. Step-by-step derivation
                                                                            1. associate-*r*N/A

                                                                              \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                            2. lower-*.f64N/A

                                                                              \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                            3. neg-mul-1N/A

                                                                              \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                            4. lower-neg.f64N/A

                                                                              \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                            5. lower-sin.f6449.3

                                                                              \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                          5. Applied rewrites49.3%

                                                                            \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                          6. Taylor expanded in re around 0

                                                                            \[\leadsto re \cdot \color{blue}{\left(-1 \cdot im + \frac{1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)} \]
                                                                          7. Step-by-step derivation
                                                                            1. Applied rewrites36.6%

                                                                              \[\leadsto \left(im \cdot \mathsf{fma}\left(0.16666666666666666, re \cdot re, -1\right)\right) \cdot \color{blue}{re} \]
                                                                            2. Step-by-step derivation
                                                                              1. Applied rewrites36.6%

                                                                                \[\leadsto \mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im, -im\right) \cdot re \]

                                                                              if 2e-3 < (sin.f64 re)

                                                                              1. Initial program 52.4%

                                                                                \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                              2. Add Preprocessing
                                                                              3. Taylor expanded in im around 0

                                                                                \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                              4. Step-by-step derivation
                                                                                1. associate-*r*N/A

                                                                                  \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                2. lower-*.f64N/A

                                                                                  \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                3. neg-mul-1N/A

                                                                                  \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                4. lower-neg.f64N/A

                                                                                  \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                5. lower-sin.f6453.6

                                                                                  \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                              5. Applied rewrites53.6%

                                                                                \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                              6. Taylor expanded in re around 0

                                                                                \[\leadsto -1 \cdot \color{blue}{\left(im \cdot re\right)} \]
                                                                              7. Step-by-step derivation
                                                                                1. Applied rewrites21.1%

                                                                                  \[\leadsto \left(-im\right) \cdot \color{blue}{re} \]
                                                                              8. Recombined 2 regimes into one program.
                                                                              9. Final simplification32.9%

                                                                                \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq 0.002:\\ \;\;\;\;\mathsf{fma}\left(0.16666666666666666 \cdot re, re \cdot im, -im\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left(-im\right)\\ \end{array} \]
                                                                              10. Add Preprocessing

                                                                              Alternative 20: 35.0% accurate, 2.5× speedup?

                                                                              \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq 0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(0.16666666666666666, re \cdot re, -1\right) \cdot im\_m\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left(-im\_m\right)\\ \end{array} \end{array} \]
                                                                              im\_m = (fabs.f64 im)
                                                                              im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                                              (FPCore (im_s re im_m)
                                                                               :precision binary64
                                                                               (*
                                                                                im_s
                                                                                (if (<= (sin re) 0.002)
                                                                                  (* (* (fma 0.16666666666666666 (* re re) -1.0) im_m) re)
                                                                                  (* re (- im_m)))))
                                                                              im\_m = fabs(im);
                                                                              im\_s = copysign(1.0, im);
                                                                              double code(double im_s, double re, double im_m) {
                                                                              	double tmp;
                                                                              	if (sin(re) <= 0.002) {
                                                                              		tmp = (fma(0.16666666666666666, (re * re), -1.0) * im_m) * re;
                                                                              	} else {
                                                                              		tmp = re * -im_m;
                                                                              	}
                                                                              	return im_s * tmp;
                                                                              }
                                                                              
                                                                              im\_m = abs(im)
                                                                              im\_s = copysign(1.0, im)
                                                                              function code(im_s, re, im_m)
                                                                              	tmp = 0.0
                                                                              	if (sin(re) <= 0.002)
                                                                              		tmp = Float64(Float64(fma(0.16666666666666666, Float64(re * re), -1.0) * im_m) * re);
                                                                              	else
                                                                              		tmp = Float64(re * Float64(-im_m));
                                                                              	end
                                                                              	return Float64(im_s * tmp)
                                                                              end
                                                                              
                                                                              im\_m = N[Abs[im], $MachinePrecision]
                                                                              im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                                              code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], 0.002], N[(N[(N[(0.16666666666666666 * N[(re * re), $MachinePrecision] + -1.0), $MachinePrecision] * im$95$m), $MachinePrecision] * re), $MachinePrecision], N[(re * (-im$95$m)), $MachinePrecision]]), $MachinePrecision]
                                                                              
                                                                              \begin{array}{l}
                                                                              im\_m = \left|im\right|
                                                                              \\
                                                                              im\_s = \mathsf{copysign}\left(1, im\right)
                                                                              
                                                                              \\
                                                                              im\_s \cdot \begin{array}{l}
                                                                              \mathbf{if}\;\sin re \leq 0.002:\\
                                                                              \;\;\;\;\left(\mathsf{fma}\left(0.16666666666666666, re \cdot re, -1\right) \cdot im\_m\right) \cdot re\\
                                                                              
                                                                              \mathbf{else}:\\
                                                                              \;\;\;\;re \cdot \left(-im\_m\right)\\
                                                                              
                                                                              
                                                                              \end{array}
                                                                              \end{array}
                                                                              
                                                                              Derivation
                                                                              1. Split input into 2 regimes
                                                                              2. if (sin.f64 re) < 2e-3

                                                                                1. Initial program 68.8%

                                                                                  \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                                2. Add Preprocessing
                                                                                3. Taylor expanded in im around 0

                                                                                  \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                                4. Step-by-step derivation
                                                                                  1. associate-*r*N/A

                                                                                    \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                  2. lower-*.f64N/A

                                                                                    \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                  3. neg-mul-1N/A

                                                                                    \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                  4. lower-neg.f64N/A

                                                                                    \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                  5. lower-sin.f6449.3

                                                                                    \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                                5. Applied rewrites49.3%

                                                                                  \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                                6. Taylor expanded in re around 0

                                                                                  \[\leadsto re \cdot \color{blue}{\left(-1 \cdot im + \frac{1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)} \]
                                                                                7. Step-by-step derivation
                                                                                  1. Applied rewrites36.6%

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

                                                                                  if 2e-3 < (sin.f64 re)

                                                                                  1. Initial program 52.4%

                                                                                    \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                                  2. Add Preprocessing
                                                                                  3. Taylor expanded in im around 0

                                                                                    \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                                  4. Step-by-step derivation
                                                                                    1. associate-*r*N/A

                                                                                      \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                    2. lower-*.f64N/A

                                                                                      \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                    3. neg-mul-1N/A

                                                                                      \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                    4. lower-neg.f64N/A

                                                                                      \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                    5. lower-sin.f6453.6

                                                                                      \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                                  5. Applied rewrites53.6%

                                                                                    \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                                  6. Taylor expanded in re around 0

                                                                                    \[\leadsto -1 \cdot \color{blue}{\left(im \cdot re\right)} \]
                                                                                  7. Step-by-step derivation
                                                                                    1. Applied rewrites21.1%

                                                                                      \[\leadsto \left(-im\right) \cdot \color{blue}{re} \]
                                                                                  8. Recombined 2 regimes into one program.
                                                                                  9. Final simplification32.9%

                                                                                    \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq 0.002:\\ \;\;\;\;\left(\mathsf{fma}\left(0.16666666666666666, re \cdot re, -1\right) \cdot im\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left(-im\right)\\ \end{array} \]
                                                                                  10. Add Preprocessing

                                                                                  Alternative 21: 34.8% accurate, 2.5× speedup?

                                                                                  \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(0.16666666666666666 \cdot \left(\left(re \cdot im\_m\right) \cdot re\right)\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left(-im\_m\right)\\ \end{array} \end{array} \]
                                                                                  im\_m = (fabs.f64 im)
                                                                                  im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                                                  (FPCore (im_s re im_m)
                                                                                   :precision binary64
                                                                                   (*
                                                                                    im_s
                                                                                    (if (<= (sin re) -0.002)
                                                                                      (* (* 0.16666666666666666 (* (* re im_m) re)) re)
                                                                                      (* re (- im_m)))))
                                                                                  im\_m = fabs(im);
                                                                                  im\_s = copysign(1.0, im);
                                                                                  double code(double im_s, double re, double im_m) {
                                                                                  	double tmp;
                                                                                  	if (sin(re) <= -0.002) {
                                                                                  		tmp = (0.16666666666666666 * ((re * im_m) * re)) * re;
                                                                                  	} else {
                                                                                  		tmp = re * -im_m;
                                                                                  	}
                                                                                  	return im_s * tmp;
                                                                                  }
                                                                                  
                                                                                  im\_m = abs(im)
                                                                                  im\_s = copysign(1.0d0, im)
                                                                                  real(8) function code(im_s, re, im_m)
                                                                                      real(8), intent (in) :: im_s
                                                                                      real(8), intent (in) :: re
                                                                                      real(8), intent (in) :: im_m
                                                                                      real(8) :: tmp
                                                                                      if (sin(re) <= (-0.002d0)) then
                                                                                          tmp = (0.16666666666666666d0 * ((re * im_m) * re)) * re
                                                                                      else
                                                                                          tmp = re * -im_m
                                                                                      end if
                                                                                      code = im_s * tmp
                                                                                  end function
                                                                                  
                                                                                  im\_m = Math.abs(im);
                                                                                  im\_s = Math.copySign(1.0, im);
                                                                                  public static double code(double im_s, double re, double im_m) {
                                                                                  	double tmp;
                                                                                  	if (Math.sin(re) <= -0.002) {
                                                                                  		tmp = (0.16666666666666666 * ((re * im_m) * re)) * re;
                                                                                  	} else {
                                                                                  		tmp = re * -im_m;
                                                                                  	}
                                                                                  	return im_s * tmp;
                                                                                  }
                                                                                  
                                                                                  im\_m = math.fabs(im)
                                                                                  im\_s = math.copysign(1.0, im)
                                                                                  def code(im_s, re, im_m):
                                                                                  	tmp = 0
                                                                                  	if math.sin(re) <= -0.002:
                                                                                  		tmp = (0.16666666666666666 * ((re * im_m) * re)) * re
                                                                                  	else:
                                                                                  		tmp = re * -im_m
                                                                                  	return im_s * tmp
                                                                                  
                                                                                  im\_m = abs(im)
                                                                                  im\_s = copysign(1.0, im)
                                                                                  function code(im_s, re, im_m)
                                                                                  	tmp = 0.0
                                                                                  	if (sin(re) <= -0.002)
                                                                                  		tmp = Float64(Float64(0.16666666666666666 * Float64(Float64(re * im_m) * re)) * re);
                                                                                  	else
                                                                                  		tmp = Float64(re * Float64(-im_m));
                                                                                  	end
                                                                                  	return Float64(im_s * tmp)
                                                                                  end
                                                                                  
                                                                                  im\_m = abs(im);
                                                                                  im\_s = sign(im) * abs(1.0);
                                                                                  function tmp_2 = code(im_s, re, im_m)
                                                                                  	tmp = 0.0;
                                                                                  	if (sin(re) <= -0.002)
                                                                                  		tmp = (0.16666666666666666 * ((re * im_m) * re)) * re;
                                                                                  	else
                                                                                  		tmp = re * -im_m;
                                                                                  	end
                                                                                  	tmp_2 = im_s * tmp;
                                                                                  end
                                                                                  
                                                                                  im\_m = N[Abs[im], $MachinePrecision]
                                                                                  im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                                                  code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(0.16666666666666666 * N[(N[(re * im$95$m), $MachinePrecision] * re), $MachinePrecision]), $MachinePrecision] * re), $MachinePrecision], N[(re * (-im$95$m)), $MachinePrecision]]), $MachinePrecision]
                                                                                  
                                                                                  \begin{array}{l}
                                                                                  im\_m = \left|im\right|
                                                                                  \\
                                                                                  im\_s = \mathsf{copysign}\left(1, im\right)
                                                                                  
                                                                                  \\
                                                                                  im\_s \cdot \begin{array}{l}
                                                                                  \mathbf{if}\;\sin re \leq -0.002:\\
                                                                                  \;\;\;\;\left(0.16666666666666666 \cdot \left(\left(re \cdot im\_m\right) \cdot re\right)\right) \cdot re\\
                                                                                  
                                                                                  \mathbf{else}:\\
                                                                                  \;\;\;\;re \cdot \left(-im\_m\right)\\
                                                                                  
                                                                                  
                                                                                  \end{array}
                                                                                  \end{array}
                                                                                  
                                                                                  Derivation
                                                                                  1. Split input into 2 regimes
                                                                                  2. if (sin.f64 re) < -2e-3

                                                                                    1. Initial program 49.2%

                                                                                      \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                                    2. Add Preprocessing
                                                                                    3. Taylor expanded in im around 0

                                                                                      \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                                    4. Step-by-step derivation
                                                                                      1. associate-*r*N/A

                                                                                        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                      2. lower-*.f64N/A

                                                                                        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                      3. neg-mul-1N/A

                                                                                        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                      4. lower-neg.f64N/A

                                                                                        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                      5. lower-sin.f6457.4

                                                                                        \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                                    5. Applied rewrites57.4%

                                                                                      \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                                    6. Taylor expanded in re around 0

                                                                                      \[\leadsto re \cdot \color{blue}{\left(-1 \cdot im + \frac{1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)} \]
                                                                                    7. Step-by-step derivation
                                                                                      1. Applied rewrites25.0%

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

                                                                                        \[\leadsto \left(\frac{1}{6} \cdot \left(im \cdot {re}^{2}\right)\right) \cdot re \]
                                                                                      3. Step-by-step derivation
                                                                                        1. Applied rewrites25.0%

                                                                                          \[\leadsto \left(\left(\left(im \cdot re\right) \cdot re\right) \cdot 0.16666666666666666\right) \cdot re \]

                                                                                        if -2e-3 < (sin.f64 re)

                                                                                        1. Initial program 71.8%

                                                                                          \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                                        2. Add Preprocessing
                                                                                        3. Taylor expanded in im around 0

                                                                                          \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                                        4. Step-by-step derivation
                                                                                          1. associate-*r*N/A

                                                                                            \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                          2. lower-*.f64N/A

                                                                                            \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                          3. neg-mul-1N/A

                                                                                            \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                          4. lower-neg.f64N/A

                                                                                            \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                          5. lower-sin.f6447.3

                                                                                            \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                                        5. Applied rewrites47.3%

                                                                                          \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                                        6. Taylor expanded in re around 0

                                                                                          \[\leadsto -1 \cdot \color{blue}{\left(im \cdot re\right)} \]
                                                                                        7. Step-by-step derivation
                                                                                          1. Applied rewrites36.1%

                                                                                            \[\leadsto \left(-im\right) \cdot \color{blue}{re} \]
                                                                                        8. Recombined 2 regimes into one program.
                                                                                        9. Final simplification32.8%

                                                                                          \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(0.16666666666666666 \cdot \left(\left(re \cdot im\right) \cdot re\right)\right) \cdot re\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left(-im\right)\\ \end{array} \]
                                                                                        10. Add Preprocessing

                                                                                        Alternative 22: 34.8% accurate, 2.5× speedup?

                                                                                        \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\left(\left(re \cdot re\right) \cdot re\right) \cdot im\_m\right) \cdot 0.16666666666666666\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left(-im\_m\right)\\ \end{array} \end{array} \]
                                                                                        im\_m = (fabs.f64 im)
                                                                                        im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                                                        (FPCore (im_s re im_m)
                                                                                         :precision binary64
                                                                                         (*
                                                                                          im_s
                                                                                          (if (<= (sin re) -0.002)
                                                                                            (* (* (* (* re re) re) im_m) 0.16666666666666666)
                                                                                            (* re (- im_m)))))
                                                                                        im\_m = fabs(im);
                                                                                        im\_s = copysign(1.0, im);
                                                                                        double code(double im_s, double re, double im_m) {
                                                                                        	double tmp;
                                                                                        	if (sin(re) <= -0.002) {
                                                                                        		tmp = (((re * re) * re) * im_m) * 0.16666666666666666;
                                                                                        	} else {
                                                                                        		tmp = re * -im_m;
                                                                                        	}
                                                                                        	return im_s * tmp;
                                                                                        }
                                                                                        
                                                                                        im\_m = abs(im)
                                                                                        im\_s = copysign(1.0d0, im)
                                                                                        real(8) function code(im_s, re, im_m)
                                                                                            real(8), intent (in) :: im_s
                                                                                            real(8), intent (in) :: re
                                                                                            real(8), intent (in) :: im_m
                                                                                            real(8) :: tmp
                                                                                            if (sin(re) <= (-0.002d0)) then
                                                                                                tmp = (((re * re) * re) * im_m) * 0.16666666666666666d0
                                                                                            else
                                                                                                tmp = re * -im_m
                                                                                            end if
                                                                                            code = im_s * tmp
                                                                                        end function
                                                                                        
                                                                                        im\_m = Math.abs(im);
                                                                                        im\_s = Math.copySign(1.0, im);
                                                                                        public static double code(double im_s, double re, double im_m) {
                                                                                        	double tmp;
                                                                                        	if (Math.sin(re) <= -0.002) {
                                                                                        		tmp = (((re * re) * re) * im_m) * 0.16666666666666666;
                                                                                        	} else {
                                                                                        		tmp = re * -im_m;
                                                                                        	}
                                                                                        	return im_s * tmp;
                                                                                        }
                                                                                        
                                                                                        im\_m = math.fabs(im)
                                                                                        im\_s = math.copysign(1.0, im)
                                                                                        def code(im_s, re, im_m):
                                                                                        	tmp = 0
                                                                                        	if math.sin(re) <= -0.002:
                                                                                        		tmp = (((re * re) * re) * im_m) * 0.16666666666666666
                                                                                        	else:
                                                                                        		tmp = re * -im_m
                                                                                        	return im_s * tmp
                                                                                        
                                                                                        im\_m = abs(im)
                                                                                        im\_s = copysign(1.0, im)
                                                                                        function code(im_s, re, im_m)
                                                                                        	tmp = 0.0
                                                                                        	if (sin(re) <= -0.002)
                                                                                        		tmp = Float64(Float64(Float64(Float64(re * re) * re) * im_m) * 0.16666666666666666);
                                                                                        	else
                                                                                        		tmp = Float64(re * Float64(-im_m));
                                                                                        	end
                                                                                        	return Float64(im_s * tmp)
                                                                                        end
                                                                                        
                                                                                        im\_m = abs(im);
                                                                                        im\_s = sign(im) * abs(1.0);
                                                                                        function tmp_2 = code(im_s, re, im_m)
                                                                                        	tmp = 0.0;
                                                                                        	if (sin(re) <= -0.002)
                                                                                        		tmp = (((re * re) * re) * im_m) * 0.16666666666666666;
                                                                                        	else
                                                                                        		tmp = re * -im_m;
                                                                                        	end
                                                                                        	tmp_2 = im_s * tmp;
                                                                                        end
                                                                                        
                                                                                        im\_m = N[Abs[im], $MachinePrecision]
                                                                                        im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                                                        code[im$95$s_, re_, im$95$m_] := N[(im$95$s * If[LessEqual[N[Sin[re], $MachinePrecision], -0.002], N[(N[(N[(N[(re * re), $MachinePrecision] * re), $MachinePrecision] * im$95$m), $MachinePrecision] * 0.16666666666666666), $MachinePrecision], N[(re * (-im$95$m)), $MachinePrecision]]), $MachinePrecision]
                                                                                        
                                                                                        \begin{array}{l}
                                                                                        im\_m = \left|im\right|
                                                                                        \\
                                                                                        im\_s = \mathsf{copysign}\left(1, im\right)
                                                                                        
                                                                                        \\
                                                                                        im\_s \cdot \begin{array}{l}
                                                                                        \mathbf{if}\;\sin re \leq -0.002:\\
                                                                                        \;\;\;\;\left(\left(\left(re \cdot re\right) \cdot re\right) \cdot im\_m\right) \cdot 0.16666666666666666\\
                                                                                        
                                                                                        \mathbf{else}:\\
                                                                                        \;\;\;\;re \cdot \left(-im\_m\right)\\
                                                                                        
                                                                                        
                                                                                        \end{array}
                                                                                        \end{array}
                                                                                        
                                                                                        Derivation
                                                                                        1. Split input into 2 regimes
                                                                                        2. if (sin.f64 re) < -2e-3

                                                                                          1. Initial program 49.2%

                                                                                            \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                                          2. Add Preprocessing
                                                                                          3. Taylor expanded in im around 0

                                                                                            \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                                          4. Step-by-step derivation
                                                                                            1. associate-*r*N/A

                                                                                              \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                            2. lower-*.f64N/A

                                                                                              \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                            3. neg-mul-1N/A

                                                                                              \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                            4. lower-neg.f64N/A

                                                                                              \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                            5. lower-sin.f6457.4

                                                                                              \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                                          5. Applied rewrites57.4%

                                                                                            \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                                          6. Taylor expanded in re around 0

                                                                                            \[\leadsto re \cdot \color{blue}{\left(-1 \cdot im + \frac{1}{6} \cdot \left(im \cdot {re}^{2}\right)\right)} \]
                                                                                          7. Step-by-step derivation
                                                                                            1. Applied rewrites25.0%

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

                                                                                              \[\leadsto \frac{1}{6} \cdot \left(im \cdot \color{blue}{{re}^{3}}\right) \]
                                                                                            3. Step-by-step derivation
                                                                                              1. Applied rewrites25.0%

                                                                                                \[\leadsto \left(\left(\left(re \cdot re\right) \cdot re\right) \cdot im\right) \cdot 0.16666666666666666 \]

                                                                                              if -2e-3 < (sin.f64 re)

                                                                                              1. Initial program 71.8%

                                                                                                \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                                              2. Add Preprocessing
                                                                                              3. Taylor expanded in im around 0

                                                                                                \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                                              4. Step-by-step derivation
                                                                                                1. associate-*r*N/A

                                                                                                  \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                                2. lower-*.f64N/A

                                                                                                  \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                                3. neg-mul-1N/A

                                                                                                  \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                                4. lower-neg.f64N/A

                                                                                                  \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                                5. lower-sin.f6447.3

                                                                                                  \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                                              5. Applied rewrites47.3%

                                                                                                \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                                              6. Taylor expanded in re around 0

                                                                                                \[\leadsto -1 \cdot \color{blue}{\left(im \cdot re\right)} \]
                                                                                              7. Step-by-step derivation
                                                                                                1. Applied rewrites36.1%

                                                                                                  \[\leadsto \left(-im\right) \cdot \color{blue}{re} \]
                                                                                              8. Recombined 2 regimes into one program.
                                                                                              9. Final simplification32.8%

                                                                                                \[\leadsto \begin{array}{l} \mathbf{if}\;\sin re \leq -0.002:\\ \;\;\;\;\left(\left(\left(re \cdot re\right) \cdot re\right) \cdot im\right) \cdot 0.16666666666666666\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left(-im\right)\\ \end{array} \]
                                                                                              10. Add Preprocessing

                                                                                              Alternative 23: 32.4% accurate, 39.5× speedup?

                                                                                              \[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \left(re \cdot \left(-im\_m\right)\right) \end{array} \]
                                                                                              im\_m = (fabs.f64 im)
                                                                                              im\_s = (copysign.f64 #s(literal 1 binary64) im)
                                                                                              (FPCore (im_s re im_m) :precision binary64 (* im_s (* re (- im_m))))
                                                                                              im\_m = fabs(im);
                                                                                              im\_s = copysign(1.0, im);
                                                                                              double code(double im_s, double re, double im_m) {
                                                                                              	return im_s * (re * -im_m);
                                                                                              }
                                                                                              
                                                                                              im\_m = abs(im)
                                                                                              im\_s = copysign(1.0d0, im)
                                                                                              real(8) function code(im_s, re, im_m)
                                                                                                  real(8), intent (in) :: im_s
                                                                                                  real(8), intent (in) :: re
                                                                                                  real(8), intent (in) :: im_m
                                                                                                  code = im_s * (re * -im_m)
                                                                                              end function
                                                                                              
                                                                                              im\_m = Math.abs(im);
                                                                                              im\_s = Math.copySign(1.0, im);
                                                                                              public static double code(double im_s, double re, double im_m) {
                                                                                              	return im_s * (re * -im_m);
                                                                                              }
                                                                                              
                                                                                              im\_m = math.fabs(im)
                                                                                              im\_s = math.copysign(1.0, im)
                                                                                              def code(im_s, re, im_m):
                                                                                              	return im_s * (re * -im_m)
                                                                                              
                                                                                              im\_m = abs(im)
                                                                                              im\_s = copysign(1.0, im)
                                                                                              function code(im_s, re, im_m)
                                                                                              	return Float64(im_s * Float64(re * Float64(-im_m)))
                                                                                              end
                                                                                              
                                                                                              im\_m = abs(im);
                                                                                              im\_s = sign(im) * abs(1.0);
                                                                                              function tmp = code(im_s, re, im_m)
                                                                                              	tmp = im_s * (re * -im_m);
                                                                                              end
                                                                                              
                                                                                              im\_m = N[Abs[im], $MachinePrecision]
                                                                                              im\_s = N[With[{TMP1 = Abs[1.0], TMP2 = Sign[im]}, TMP1 * If[TMP2 == 0, 1, TMP2]], $MachinePrecision]
                                                                                              code[im$95$s_, re_, im$95$m_] := N[(im$95$s * N[(re * (-im$95$m)), $MachinePrecision]), $MachinePrecision]
                                                                                              
                                                                                              \begin{array}{l}
                                                                                              im\_m = \left|im\right|
                                                                                              \\
                                                                                              im\_s = \mathsf{copysign}\left(1, im\right)
                                                                                              
                                                                                              \\
                                                                                              im\_s \cdot \left(re \cdot \left(-im\_m\right)\right)
                                                                                              \end{array}
                                                                                              
                                                                                              Derivation
                                                                                              1. Initial program 65.0%

                                                                                                \[\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right) \]
                                                                                              2. Add Preprocessing
                                                                                              3. Taylor expanded in im around 0

                                                                                                \[\leadsto \color{blue}{-1 \cdot \left(im \cdot \sin re\right)} \]
                                                                                              4. Step-by-step derivation
                                                                                                1. associate-*r*N/A

                                                                                                  \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                                2. lower-*.f64N/A

                                                                                                  \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
                                                                                                3. neg-mul-1N/A

                                                                                                  \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                                4. lower-neg.f64N/A

                                                                                                  \[\leadsto \color{blue}{\left(\mathsf{neg}\left(im\right)\right)} \cdot \sin re \]
                                                                                                5. lower-sin.f6450.3

                                                                                                  \[\leadsto \left(-im\right) \cdot \color{blue}{\sin re} \]
                                                                                              5. Applied rewrites50.3%

                                                                                                \[\leadsto \color{blue}{\left(-im\right) \cdot \sin re} \]
                                                                                              6. Taylor expanded in re around 0

                                                                                                \[\leadsto -1 \cdot \color{blue}{\left(im \cdot re\right)} \]
                                                                                              7. Step-by-step derivation
                                                                                                1. Applied rewrites27.3%

                                                                                                  \[\leadsto \left(-im\right) \cdot \color{blue}{re} \]
                                                                                                2. Final simplification27.3%

                                                                                                  \[\leadsto re \cdot \left(-im\right) \]
                                                                                                3. Add Preprocessing

                                                                                                Developer Target 1: 99.8% accurate, 1.0× speedup?

                                                                                                \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;\left|im\right| < 1:\\ \;\;\;\;-\sin re \cdot \left(\left(im + \left(\left(0.16666666666666666 \cdot im\right) \cdot im\right) \cdot im\right) + \left(\left(\left(\left(0.008333333333333333 \cdot im\right) \cdot im\right) \cdot im\right) \cdot im\right) \cdot im\right)\\ \mathbf{else}:\\ \;\;\;\;\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right)\\ \end{array} \end{array} \]
                                                                                                (FPCore (re im)
                                                                                                 :precision binary64
                                                                                                 (if (< (fabs im) 1.0)
                                                                                                   (-
                                                                                                    (*
                                                                                                     (sin re)
                                                                                                     (+
                                                                                                      (+ im (* (* (* 0.16666666666666666 im) im) im))
                                                                                                      (* (* (* (* (* 0.008333333333333333 im) im) im) im) im))))
                                                                                                   (* (* 0.5 (sin re)) (- (exp (- im)) (exp im)))))
                                                                                                double code(double re, double im) {
                                                                                                	double tmp;
                                                                                                	if (fabs(im) < 1.0) {
                                                                                                		tmp = -(sin(re) * ((im + (((0.16666666666666666 * im) * im) * im)) + (((((0.008333333333333333 * im) * im) * im) * im) * im)));
                                                                                                	} else {
                                                                                                		tmp = (0.5 * sin(re)) * (exp(-im) - exp(im));
                                                                                                	}
                                                                                                	return tmp;
                                                                                                }
                                                                                                
                                                                                                real(8) function code(re, im)
                                                                                                    real(8), intent (in) :: re
                                                                                                    real(8), intent (in) :: im
                                                                                                    real(8) :: tmp
                                                                                                    if (abs(im) < 1.0d0) then
                                                                                                        tmp = -(sin(re) * ((im + (((0.16666666666666666d0 * im) * im) * im)) + (((((0.008333333333333333d0 * im) * im) * im) * im) * im)))
                                                                                                    else
                                                                                                        tmp = (0.5d0 * sin(re)) * (exp(-im) - exp(im))
                                                                                                    end if
                                                                                                    code = tmp
                                                                                                end function
                                                                                                
                                                                                                public static double code(double re, double im) {
                                                                                                	double tmp;
                                                                                                	if (Math.abs(im) < 1.0) {
                                                                                                		tmp = -(Math.sin(re) * ((im + (((0.16666666666666666 * im) * im) * im)) + (((((0.008333333333333333 * im) * im) * im) * im) * im)));
                                                                                                	} else {
                                                                                                		tmp = (0.5 * Math.sin(re)) * (Math.exp(-im) - Math.exp(im));
                                                                                                	}
                                                                                                	return tmp;
                                                                                                }
                                                                                                
                                                                                                def code(re, im):
                                                                                                	tmp = 0
                                                                                                	if math.fabs(im) < 1.0:
                                                                                                		tmp = -(math.sin(re) * ((im + (((0.16666666666666666 * im) * im) * im)) + (((((0.008333333333333333 * im) * im) * im) * im) * im)))
                                                                                                	else:
                                                                                                		tmp = (0.5 * math.sin(re)) * (math.exp(-im) - math.exp(im))
                                                                                                	return tmp
                                                                                                
                                                                                                function code(re, im)
                                                                                                	tmp = 0.0
                                                                                                	if (abs(im) < 1.0)
                                                                                                		tmp = Float64(-Float64(sin(re) * Float64(Float64(im + Float64(Float64(Float64(0.16666666666666666 * im) * im) * im)) + Float64(Float64(Float64(Float64(Float64(0.008333333333333333 * im) * im) * im) * im) * im))));
                                                                                                	else
                                                                                                		tmp = Float64(Float64(0.5 * sin(re)) * Float64(exp(Float64(-im)) - exp(im)));
                                                                                                	end
                                                                                                	return tmp
                                                                                                end
                                                                                                
                                                                                                function tmp_2 = code(re, im)
                                                                                                	tmp = 0.0;
                                                                                                	if (abs(im) < 1.0)
                                                                                                		tmp = -(sin(re) * ((im + (((0.16666666666666666 * im) * im) * im)) + (((((0.008333333333333333 * im) * im) * im) * im) * im)));
                                                                                                	else
                                                                                                		tmp = (0.5 * sin(re)) * (exp(-im) - exp(im));
                                                                                                	end
                                                                                                	tmp_2 = tmp;
                                                                                                end
                                                                                                
                                                                                                code[re_, im_] := If[Less[N[Abs[im], $MachinePrecision], 1.0], (-N[(N[Sin[re], $MachinePrecision] * N[(N[(im + N[(N[(N[(0.16666666666666666 * im), $MachinePrecision] * im), $MachinePrecision] * im), $MachinePrecision]), $MachinePrecision] + N[(N[(N[(N[(N[(0.008333333333333333 * im), $MachinePrecision] * im), $MachinePrecision] * im), $MachinePrecision] * im), $MachinePrecision] * im), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), N[(N[(0.5 * N[Sin[re], $MachinePrecision]), $MachinePrecision] * N[(N[Exp[(-im)], $MachinePrecision] - N[Exp[im], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
                                                                                                
                                                                                                \begin{array}{l}
                                                                                                
                                                                                                \\
                                                                                                \begin{array}{l}
                                                                                                \mathbf{if}\;\left|im\right| < 1:\\
                                                                                                \;\;\;\;-\sin re \cdot \left(\left(im + \left(\left(0.16666666666666666 \cdot im\right) \cdot im\right) \cdot im\right) + \left(\left(\left(\left(0.008333333333333333 \cdot im\right) \cdot im\right) \cdot im\right) \cdot im\right) \cdot im\right)\\
                                                                                                
                                                                                                \mathbf{else}:\\
                                                                                                \;\;\;\;\left(0.5 \cdot \sin re\right) \cdot \left(e^{-im} - e^{im}\right)\\
                                                                                                
                                                                                                
                                                                                                \end{array}
                                                                                                \end{array}
                                                                                                

                                                                                                Reproduce

                                                                                                ?
                                                                                                herbie shell --seed 2024235 
                                                                                                (FPCore (re im)
                                                                                                  :name "math.cos on complex, imaginary part"
                                                                                                  :precision binary64
                                                                                                
                                                                                                  :alt
                                                                                                  (! :herbie-platform default (if (< (fabs im) 1) (- (* (sin re) (+ im (* 1/6 im im im) (* 1/120 im im im im im)))) (* (* 1/2 (sin re)) (- (exp (- im)) (exp im)))))
                                                                                                
                                                                                                  (* (* 0.5 (sin re)) (- (exp (- im)) (exp im))))