math.cos on complex, imaginary part

Percentage Accurate: 65.5% → 99.7%
Time: 9.7s
Alternatives: 14
Speedup: 2.8×

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 14 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: 65.5% 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 := e^{-im\_m} - e^{im\_m}\\ im\_s \cdot \begin{array}{l} \mathbf{if}\;t\_0 \leq -2:\\ \;\;\;\;t\_0 \cdot \left(0.5 \cdot \sin re\right)\\ \mathbf{else}:\\ \;\;\;\;\sin re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\ \end{array} \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (let* ((t_0 (- (exp (- im_m)) (exp im_m))))
   (*
    im_s
    (if (<= t_0 -2.0)
      (* t_0 (* 0.5 (sin re)))
      (* (sin re) (- (* (pow im_m 3.0) -0.16666666666666666) im_m))))))
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 tmp;
	if (t_0 <= -2.0) {
		tmp = t_0 * (0.5 * sin(re));
	} else {
		tmp = sin(re) * ((pow(im_m, 3.0) * -0.16666666666666666) - 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) :: t_0
    real(8) :: tmp
    t_0 = exp(-im_m) - exp(im_m)
    if (t_0 <= (-2.0d0)) then
        tmp = t_0 * (0.5d0 * sin(re))
    else
        tmp = sin(re) * (((im_m ** 3.0d0) * (-0.16666666666666666d0)) - 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 t_0 = Math.exp(-im_m) - Math.exp(im_m);
	double tmp;
	if (t_0 <= -2.0) {
		tmp = t_0 * (0.5 * Math.sin(re));
	} else {
		tmp = Math.sin(re) * ((Math.pow(im_m, 3.0) * -0.16666666666666666) - 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):
	t_0 = math.exp(-im_m) - math.exp(im_m)
	tmp = 0
	if t_0 <= -2.0:
		tmp = t_0 * (0.5 * math.sin(re))
	else:
		tmp = math.sin(re) * ((math.pow(im_m, 3.0) * -0.16666666666666666) - im_m)
	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))
	tmp = 0.0
	if (t_0 <= -2.0)
		tmp = Float64(t_0 * Float64(0.5 * sin(re)));
	else
		tmp = Float64(sin(re) * Float64(Float64((im_m ^ 3.0) * -0.16666666666666666) - 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)
	t_0 = exp(-im_m) - exp(im_m);
	tmp = 0.0;
	if (t_0 <= -2.0)
		tmp = t_0 * (0.5 * sin(re));
	else
		tmp = sin(re) * (((im_m ^ 3.0) * -0.16666666666666666) - 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_] := Block[{t$95$0 = N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision]}, N[(im$95$s * If[LessEqual[t$95$0, -2.0], N[(t$95$0 * N[(0.5 * N[Sin[re], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[Sin[re], $MachinePrecision] * N[(N[(N[Power[im$95$m, 3.0], $MachinePrecision] * -0.16666666666666666), $MachinePrecision] - im$95$m), $MachinePrecision]), $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}\\
im\_s \cdot \begin{array}{l}
\mathbf{if}\;t\_0 \leq -2:\\
\;\;\;\;t\_0 \cdot \left(0.5 \cdot \sin re\right)\\

\mathbf{else}:\\
\;\;\;\;\sin re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\


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

    1. Initial program 100.0%

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

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

    1. Initial program 60.9%

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

      \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
    4. Step-by-step derivation
      1. +-commutative82.2%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
      2. mul-1-neg82.2%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
      3. unsub-neg82.2%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
      4. *-commutative82.2%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
      5. associate-*r*82.2%

        \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
      6. distribute-lft-out--82.2%

        \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
      7. associate-*r*82.2%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
      8. *-commutative82.2%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
      9. associate-*r*82.2%

        \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
      10. associate-*r*86.6%

        \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
      11. distribute-rgt-out--86.7%

        \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
      12. unsub-neg86.7%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
      13. unsub-neg86.7%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    5. Simplified86.7%

      \[\leadsto \color{blue}{\sin re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification90.1%

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

Alternative 2: 86.8% accurate, 1.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}\;im\_m \leq 1.5 \cdot 10^{+15} \lor \neg \left(im\_m \leq 5.2 \cdot 10^{+91}\right):\\ \;\;\;\;\sin re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im\_m \cdot re\right)\right)\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (*
  im_s
  (if (or (<= im_m 1.5e+15) (not (<= im_m 5.2e+91)))
    (* (sin re) (- (* (pow im_m 3.0) -0.16666666666666666) im_m))
    (log1p (expm1 (* 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 ((im_m <= 1.5e+15) || !(im_m <= 5.2e+91)) {
		tmp = sin(re) * ((pow(im_m, 3.0) * -0.16666666666666666) - im_m);
	} else {
		tmp = log1p(expm1((im_m * re)));
	}
	return im_s * tmp;
}
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 ((im_m <= 1.5e+15) || !(im_m <= 5.2e+91)) {
		tmp = Math.sin(re) * ((Math.pow(im_m, 3.0) * -0.16666666666666666) - im_m);
	} else {
		tmp = Math.log1p(Math.expm1((im_m * re)));
	}
	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 (im_m <= 1.5e+15) or not (im_m <= 5.2e+91):
		tmp = math.sin(re) * ((math.pow(im_m, 3.0) * -0.16666666666666666) - im_m)
	else:
		tmp = math.log1p(math.expm1((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 ((im_m <= 1.5e+15) || !(im_m <= 5.2e+91))
		tmp = Float64(sin(re) * Float64(Float64((im_m ^ 3.0) * -0.16666666666666666) - im_m));
	else
		tmp = log1p(expm1(Float64(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[Or[LessEqual[im$95$m, 1.5e+15], N[Not[LessEqual[im$95$m, 5.2e+91]], $MachinePrecision]], N[(N[Sin[re], $MachinePrecision] * N[(N[(N[Power[im$95$m, 3.0], $MachinePrecision] * -0.16666666666666666), $MachinePrecision] - im$95$m), $MachinePrecision]), $MachinePrecision], N[Log[1 + N[(Exp[N[(im$95$m * re), $MachinePrecision]] - 1), $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}\;im\_m \leq 1.5 \cdot 10^{+15} \lor \neg \left(im\_m \leq 5.2 \cdot 10^{+91}\right):\\
\;\;\;\;\sin re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\

\mathbf{else}:\\
\;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im\_m \cdot re\right)\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if im < 1.5e15 or 5.2000000000000001e91 < im

    1. Initial program 69.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 82.1%

      \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
    4. Step-by-step derivation
      1. +-commutative82.1%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
      2. mul-1-neg82.1%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
      3. unsub-neg82.1%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
      4. *-commutative82.1%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
      5. associate-*r*82.1%

        \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
      6. distribute-lft-out--82.1%

        \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
      7. associate-*r*82.1%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
      8. *-commutative82.1%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
      9. associate-*r*82.1%

        \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
      10. associate-*r*87.6%

        \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
      11. distribute-rgt-out--87.6%

        \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
      12. unsub-neg87.6%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
      13. unsub-neg87.6%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    5. Simplified87.6%

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

    if 1.5e15 < im < 5.2000000000000001e91

    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 re around 0 75.0%

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*75.0%

        \[\leadsto \color{blue}{\left(0.5 \cdot re\right) \cdot \left(e^{-im} - e^{im}\right)} \]
      2. *-commutative75.0%

        \[\leadsto \color{blue}{\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)} \]
    5. Simplified75.0%

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

      \[\leadsto \color{blue}{\left(-2 \cdot im\right)} \cdot \left(0.5 \cdot re\right) \]
    7. Step-by-step derivation
      1. associate-*r*2.8%

        \[\leadsto \color{blue}{\left(\left(-2 \cdot im\right) \cdot 0.5\right) \cdot re} \]
      2. *-commutative2.8%

        \[\leadsto \left(\color{blue}{\left(im \cdot -2\right)} \cdot 0.5\right) \cdot re \]
      3. associate-*l*2.8%

        \[\leadsto \color{blue}{\left(im \cdot \left(-2 \cdot 0.5\right)\right)} \cdot re \]
      4. metadata-eval2.8%

        \[\leadsto \left(im \cdot \color{blue}{-1}\right) \cdot re \]
      5. associate-*r*2.8%

        \[\leadsto \color{blue}{im \cdot \left(-1 \cdot re\right)} \]
      6. log1p-expm1-u26.2%

        \[\leadsto \color{blue}{\mathsf{log1p}\left(\mathsf{expm1}\left(im \cdot \left(-1 \cdot re\right)\right)\right)} \]
      7. *-commutative26.2%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(-1 \cdot re\right) \cdot im}\right)\right) \]
      8. add-sqr-sqrt7.2%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(\sqrt{-1 \cdot re} \cdot \sqrt{-1 \cdot re}\right)} \cdot im\right)\right) \]
      9. sqrt-unprod13.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\sqrt{\left(-1 \cdot re\right) \cdot \left(-1 \cdot re\right)}} \cdot im\right)\right) \]
      10. mul-1-neg13.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\color{blue}{\left(-re\right)} \cdot \left(-1 \cdot re\right)} \cdot im\right)\right) \]
      11. mul-1-neg13.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\left(-re\right) \cdot \color{blue}{\left(-re\right)}} \cdot im\right)\right) \]
      12. sqr-neg13.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\color{blue}{re \cdot re}} \cdot im\right)\right) \]
      13. sqrt-prod6.4%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(\sqrt{re} \cdot \sqrt{re}\right)} \cdot im\right)\right) \]
      14. add-sqr-sqrt25.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{re} \cdot im\right)\right) \]
    8. Applied egg-rr25.5%

      \[\leadsto \color{blue}{\mathsf{log1p}\left(\mathsf{expm1}\left(re \cdot im\right)\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification83.7%

    \[\leadsto \begin{array}{l} \mathbf{if}\;im \leq 1.5 \cdot 10^{+15} \lor \neg \left(im \leq 5.2 \cdot 10^{+91}\right):\\ \;\;\;\;\sin re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)\\ \mathbf{else}:\\ \;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im \cdot re\right)\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 3: 95.7% accurate, 1.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}\;im\_m \leq 1.02:\\ \;\;\;\;\sin re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\ \mathbf{elif}\;im\_m \leq 5.7 \cdot 10^{+102}:\\ \;\;\;\;\left(e^{-im\_m} - e^{im\_m}\right) \cdot \left(0.5 \cdot re\right)\\ \mathbf{else}:\\ \;\;\;\;-0.16666666666666666 \cdot \left(\sin re \cdot {im\_m}^{3}\right)\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (*
  im_s
  (if (<= im_m 1.02)
    (* (sin re) (- (* (pow im_m 3.0) -0.16666666666666666) im_m))
    (if (<= im_m 5.7e+102)
      (* (- (exp (- im_m)) (exp im_m)) (* 0.5 re))
      (* -0.16666666666666666 (* (sin re) (pow im_m 3.0)))))))
im\_m = fabs(im);
im\_s = copysign(1.0, im);
double code(double im_s, double re, double im_m) {
	double tmp;
	if (im_m <= 1.02) {
		tmp = sin(re) * ((pow(im_m, 3.0) * -0.16666666666666666) - im_m);
	} else if (im_m <= 5.7e+102) {
		tmp = (exp(-im_m) - exp(im_m)) * (0.5 * re);
	} else {
		tmp = -0.16666666666666666 * (sin(re) * pow(im_m, 3.0));
	}
	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 (im_m <= 1.02d0) then
        tmp = sin(re) * (((im_m ** 3.0d0) * (-0.16666666666666666d0)) - im_m)
    else if (im_m <= 5.7d+102) then
        tmp = (exp(-im_m) - exp(im_m)) * (0.5d0 * re)
    else
        tmp = (-0.16666666666666666d0) * (sin(re) * (im_m ** 3.0d0))
    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 (im_m <= 1.02) {
		tmp = Math.sin(re) * ((Math.pow(im_m, 3.0) * -0.16666666666666666) - im_m);
	} else if (im_m <= 5.7e+102) {
		tmp = (Math.exp(-im_m) - Math.exp(im_m)) * (0.5 * re);
	} else {
		tmp = -0.16666666666666666 * (Math.sin(re) * Math.pow(im_m, 3.0));
	}
	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 im_m <= 1.02:
		tmp = math.sin(re) * ((math.pow(im_m, 3.0) * -0.16666666666666666) - im_m)
	elif im_m <= 5.7e+102:
		tmp = (math.exp(-im_m) - math.exp(im_m)) * (0.5 * re)
	else:
		tmp = -0.16666666666666666 * (math.sin(re) * math.pow(im_m, 3.0))
	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 (im_m <= 1.02)
		tmp = Float64(sin(re) * Float64(Float64((im_m ^ 3.0) * -0.16666666666666666) - im_m));
	elseif (im_m <= 5.7e+102)
		tmp = Float64(Float64(exp(Float64(-im_m)) - exp(im_m)) * Float64(0.5 * re));
	else
		tmp = Float64(-0.16666666666666666 * Float64(sin(re) * (im_m ^ 3.0)));
	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 (im_m <= 1.02)
		tmp = sin(re) * (((im_m ^ 3.0) * -0.16666666666666666) - im_m);
	elseif (im_m <= 5.7e+102)
		tmp = (exp(-im_m) - exp(im_m)) * (0.5 * re);
	else
		tmp = -0.16666666666666666 * (sin(re) * (im_m ^ 3.0));
	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[im$95$m, 1.02], N[(N[Sin[re], $MachinePrecision] * N[(N[(N[Power[im$95$m, 3.0], $MachinePrecision] * -0.16666666666666666), $MachinePrecision] - im$95$m), $MachinePrecision]), $MachinePrecision], If[LessEqual[im$95$m, 5.7e+102], N[(N[(N[Exp[(-im$95$m)], $MachinePrecision] - N[Exp[im$95$m], $MachinePrecision]), $MachinePrecision] * N[(0.5 * re), $MachinePrecision]), $MachinePrecision], N[(-0.16666666666666666 * N[(N[Sin[re], $MachinePrecision] * N[Power[im$95$m, 3.0], $MachinePrecision]), $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}\;im\_m \leq 1.02:\\
\;\;\;\;\sin re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\

\mathbf{elif}\;im\_m \leq 5.7 \cdot 10^{+102}:\\
\;\;\;\;\left(e^{-im\_m} - e^{im\_m}\right) \cdot \left(0.5 \cdot re\right)\\

\mathbf{else}:\\
\;\;\;\;-0.16666666666666666 \cdot \left(\sin re \cdot {im\_m}^{3}\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if im < 1.02

    1. Initial program 61.1%

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

      \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
    4. Step-by-step derivation
      1. +-commutative81.9%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
      2. mul-1-neg81.9%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
      3. unsub-neg81.9%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
      4. *-commutative81.9%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
      5. associate-*r*81.9%

        \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
      6. distribute-lft-out--81.9%

        \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
      7. associate-*r*81.9%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
      8. *-commutative81.9%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
      9. associate-*r*81.9%

        \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
      10. associate-*r*86.3%

        \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
      11. distribute-rgt-out--86.3%

        \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
      12. unsub-neg86.3%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
      13. unsub-neg86.3%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    5. Simplified86.3%

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

    if 1.02 < im < 5.6999999999999999e102

    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 re around 0 80.0%

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*80.0%

        \[\leadsto \color{blue}{\left(0.5 \cdot re\right) \cdot \left(e^{-im} - e^{im}\right)} \]
      2. *-commutative80.0%

        \[\leadsto \color{blue}{\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)} \]
    5. Simplified80.0%

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

    if 5.6999999999999999e102 < 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 89.8%

      \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
    4. Step-by-step derivation
      1. +-commutative89.8%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
      2. mul-1-neg89.8%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
      3. unsub-neg89.8%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
      4. *-commutative89.8%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
      5. associate-*r*89.8%

        \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
      6. distribute-lft-out--89.8%

        \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
      7. associate-*r*89.8%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
      8. *-commutative89.8%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
      9. associate-*r*89.8%

        \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
      10. associate-*r*100.0%

        \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
      11. distribute-rgt-out--100.0%

        \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
      12. unsub-neg100.0%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
      13. unsub-neg100.0%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    5. Simplified100.0%

      \[\leadsto \color{blue}{\sin re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)} \]
    6. Taylor expanded in im around inf 100.0%

      \[\leadsto \color{blue}{-0.16666666666666666 \cdot \left({im}^{3} \cdot \sin re\right)} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification88.3%

    \[\leadsto \begin{array}{l} \mathbf{if}\;im \leq 1.02:\\ \;\;\;\;\sin re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)\\ \mathbf{elif}\;im \leq 5.7 \cdot 10^{+102}:\\ \;\;\;\;\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)\\ \mathbf{else}:\\ \;\;\;\;-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{3}\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 86.5% accurate, 1.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}\;im\_m \leq 1.5 \cdot 10^{+15}:\\ \;\;\;\;im\_m \cdot \left(-\sin re\right)\\ \mathbf{elif}\;im\_m \leq 5.2 \cdot 10^{+91}:\\ \;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im\_m \cdot re\right)\right)\\ \mathbf{else}:\\ \;\;\;\;-0.16666666666666666 \cdot \left(\sin re \cdot {im\_m}^{3}\right)\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (*
  im_s
  (if (<= im_m 1.5e+15)
    (* im_m (- (sin re)))
    (if (<= im_m 5.2e+91)
      (log1p (expm1 (* im_m re)))
      (* -0.16666666666666666 (* (sin re) (pow im_m 3.0)))))))
im\_m = fabs(im);
im\_s = copysign(1.0, im);
double code(double im_s, double re, double im_m) {
	double tmp;
	if (im_m <= 1.5e+15) {
		tmp = im_m * -sin(re);
	} else if (im_m <= 5.2e+91) {
		tmp = log1p(expm1((im_m * re)));
	} else {
		tmp = -0.16666666666666666 * (sin(re) * pow(im_m, 3.0));
	}
	return im_s * tmp;
}
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 (im_m <= 1.5e+15) {
		tmp = im_m * -Math.sin(re);
	} else if (im_m <= 5.2e+91) {
		tmp = Math.log1p(Math.expm1((im_m * re)));
	} else {
		tmp = -0.16666666666666666 * (Math.sin(re) * Math.pow(im_m, 3.0));
	}
	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 im_m <= 1.5e+15:
		tmp = im_m * -math.sin(re)
	elif im_m <= 5.2e+91:
		tmp = math.log1p(math.expm1((im_m * re)))
	else:
		tmp = -0.16666666666666666 * (math.sin(re) * math.pow(im_m, 3.0))
	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 (im_m <= 1.5e+15)
		tmp = Float64(im_m * Float64(-sin(re)));
	elseif (im_m <= 5.2e+91)
		tmp = log1p(expm1(Float64(im_m * re)));
	else
		tmp = Float64(-0.16666666666666666 * Float64(sin(re) * (im_m ^ 3.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_] := N[(im$95$s * If[LessEqual[im$95$m, 1.5e+15], N[(im$95$m * (-N[Sin[re], $MachinePrecision])), $MachinePrecision], If[LessEqual[im$95$m, 5.2e+91], N[Log[1 + N[(Exp[N[(im$95$m * re), $MachinePrecision]] - 1), $MachinePrecision]], $MachinePrecision], N[(-0.16666666666666666 * N[(N[Sin[re], $MachinePrecision] * N[Power[im$95$m, 3.0], $MachinePrecision]), $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}\;im\_m \leq 1.5 \cdot 10^{+15}:\\
\;\;\;\;im\_m \cdot \left(-\sin re\right)\\

\mathbf{elif}\;im\_m \leq 5.2 \cdot 10^{+91}:\\
\;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im\_m \cdot re\right)\right)\\

\mathbf{else}:\\
\;\;\;\;-0.16666666666666666 \cdot \left(\sin re \cdot {im\_m}^{3}\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if im < 1.5e15

    1. Initial program 61.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 62.1%

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

        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
      2. neg-mul-162.1%

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

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

    if 1.5e15 < im < 5.2000000000000001e91

    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 re around 0 75.0%

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*75.0%

        \[\leadsto \color{blue}{\left(0.5 \cdot re\right) \cdot \left(e^{-im} - e^{im}\right)} \]
      2. *-commutative75.0%

        \[\leadsto \color{blue}{\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)} \]
    5. Simplified75.0%

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

      \[\leadsto \color{blue}{\left(-2 \cdot im\right)} \cdot \left(0.5 \cdot re\right) \]
    7. Step-by-step derivation
      1. associate-*r*2.8%

        \[\leadsto \color{blue}{\left(\left(-2 \cdot im\right) \cdot 0.5\right) \cdot re} \]
      2. *-commutative2.8%

        \[\leadsto \left(\color{blue}{\left(im \cdot -2\right)} \cdot 0.5\right) \cdot re \]
      3. associate-*l*2.8%

        \[\leadsto \color{blue}{\left(im \cdot \left(-2 \cdot 0.5\right)\right)} \cdot re \]
      4. metadata-eval2.8%

        \[\leadsto \left(im \cdot \color{blue}{-1}\right) \cdot re \]
      5. associate-*r*2.8%

        \[\leadsto \color{blue}{im \cdot \left(-1 \cdot re\right)} \]
      6. log1p-expm1-u26.2%

        \[\leadsto \color{blue}{\mathsf{log1p}\left(\mathsf{expm1}\left(im \cdot \left(-1 \cdot re\right)\right)\right)} \]
      7. *-commutative26.2%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(-1 \cdot re\right) \cdot im}\right)\right) \]
      8. add-sqr-sqrt7.2%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(\sqrt{-1 \cdot re} \cdot \sqrt{-1 \cdot re}\right)} \cdot im\right)\right) \]
      9. sqrt-unprod13.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\sqrt{\left(-1 \cdot re\right) \cdot \left(-1 \cdot re\right)}} \cdot im\right)\right) \]
      10. mul-1-neg13.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\color{blue}{\left(-re\right)} \cdot \left(-1 \cdot re\right)} \cdot im\right)\right) \]
      11. mul-1-neg13.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\left(-re\right) \cdot \color{blue}{\left(-re\right)}} \cdot im\right)\right) \]
      12. sqr-neg13.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\color{blue}{re \cdot re}} \cdot im\right)\right) \]
      13. sqrt-prod6.4%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(\sqrt{re} \cdot \sqrt{re}\right)} \cdot im\right)\right) \]
      14. add-sqr-sqrt25.5%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{re} \cdot im\right)\right) \]
    8. Applied egg-rr25.5%

      \[\leadsto \color{blue}{\mathsf{log1p}\left(\mathsf{expm1}\left(re \cdot im\right)\right)} \]

    if 5.2000000000000001e91 < 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 86.3%

      \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
    4. Step-by-step derivation
      1. +-commutative86.3%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
      2. mul-1-neg86.3%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
      3. unsub-neg86.3%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
      4. *-commutative86.3%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
      5. associate-*r*86.3%

        \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
      6. distribute-lft-out--86.3%

        \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
      7. associate-*r*86.3%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
      8. *-commutative86.3%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
      9. associate-*r*86.3%

        \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
      10. associate-*r*96.1%

        \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
      11. distribute-rgt-out--96.1%

        \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
      12. unsub-neg96.1%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
      13. unsub-neg96.1%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    5. Simplified96.1%

      \[\leadsto \color{blue}{\sin re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)} \]
    6. Taylor expanded in im around inf 96.1%

      \[\leadsto \color{blue}{-0.16666666666666666 \cdot \left({im}^{3} \cdot \sin re\right)} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification66.2%

    \[\leadsto \begin{array}{l} \mathbf{if}\;im \leq 1.5 \cdot 10^{+15}:\\ \;\;\;\;im \cdot \left(-\sin re\right)\\ \mathbf{elif}\;im \leq 5.2 \cdot 10^{+91}:\\ \;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im \cdot re\right)\right)\\ \mathbf{else}:\\ \;\;\;\;-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{3}\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 5: 78.9% accurate, 1.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}\;im\_m \leq 1.5 \cdot 10^{+15}:\\ \;\;\;\;im\_m \cdot \left(-\sin re\right)\\ \mathbf{elif}\;im\_m \leq 1.55 \cdot 10^{+51}:\\ \;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im\_m \cdot re\right)\right)\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (*
  im_s
  (if (<= im_m 1.5e+15)
    (* im_m (- (sin re)))
    (if (<= im_m 1.55e+51)
      (log1p (expm1 (* im_m re)))
      (* re (- (* (pow im_m 3.0) -0.16666666666666666) 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 (im_m <= 1.5e+15) {
		tmp = im_m * -sin(re);
	} else if (im_m <= 1.55e+51) {
		tmp = log1p(expm1((im_m * re)));
	} else {
		tmp = re * ((pow(im_m, 3.0) * -0.16666666666666666) - im_m);
	}
	return im_s * tmp;
}
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 (im_m <= 1.5e+15) {
		tmp = im_m * -Math.sin(re);
	} else if (im_m <= 1.55e+51) {
		tmp = Math.log1p(Math.expm1((im_m * re)));
	} else {
		tmp = re * ((Math.pow(im_m, 3.0) * -0.16666666666666666) - 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 im_m <= 1.5e+15:
		tmp = im_m * -math.sin(re)
	elif im_m <= 1.55e+51:
		tmp = math.log1p(math.expm1((im_m * re)))
	else:
		tmp = re * ((math.pow(im_m, 3.0) * -0.16666666666666666) - 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 (im_m <= 1.5e+15)
		tmp = Float64(im_m * Float64(-sin(re)));
	elseif (im_m <= 1.55e+51)
		tmp = log1p(expm1(Float64(im_m * re)));
	else
		tmp = Float64(re * Float64(Float64((im_m ^ 3.0) * -0.16666666666666666) - 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[im$95$m, 1.5e+15], N[(im$95$m * (-N[Sin[re], $MachinePrecision])), $MachinePrecision], If[LessEqual[im$95$m, 1.55e+51], N[Log[1 + N[(Exp[N[(im$95$m * re), $MachinePrecision]] - 1), $MachinePrecision]], $MachinePrecision], N[(re * N[(N[(N[Power[im$95$m, 3.0], $MachinePrecision] * -0.16666666666666666), $MachinePrecision] - im$95$m), $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}\;im\_m \leq 1.5 \cdot 10^{+15}:\\
\;\;\;\;im\_m \cdot \left(-\sin re\right)\\

\mathbf{elif}\;im\_m \leq 1.55 \cdot 10^{+51}:\\
\;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im\_m \cdot re\right)\right)\\

\mathbf{else}:\\
\;\;\;\;re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if im < 1.5e15

    1. Initial program 61.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 62.1%

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

        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
      2. neg-mul-162.1%

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

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

    if 1.5e15 < im < 1.55000000000000006e51

    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 re around 0 62.5%

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*62.5%

        \[\leadsto \color{blue}{\left(0.5 \cdot re\right) \cdot \left(e^{-im} - e^{im}\right)} \]
      2. *-commutative62.5%

        \[\leadsto \color{blue}{\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)} \]
    5. Simplified62.5%

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

      \[\leadsto \color{blue}{\left(-2 \cdot im\right)} \cdot \left(0.5 \cdot re\right) \]
    7. Step-by-step derivation
      1. associate-*r*1.6%

        \[\leadsto \color{blue}{\left(\left(-2 \cdot im\right) \cdot 0.5\right) \cdot re} \]
      2. *-commutative1.6%

        \[\leadsto \left(\color{blue}{\left(im \cdot -2\right)} \cdot 0.5\right) \cdot re \]
      3. associate-*l*1.6%

        \[\leadsto \color{blue}{\left(im \cdot \left(-2 \cdot 0.5\right)\right)} \cdot re \]
      4. metadata-eval1.6%

        \[\leadsto \left(im \cdot \color{blue}{-1}\right) \cdot re \]
      5. associate-*r*1.6%

        \[\leadsto \color{blue}{im \cdot \left(-1 \cdot re\right)} \]
      6. log1p-expm1-u1.6%

        \[\leadsto \color{blue}{\mathsf{log1p}\left(\mathsf{expm1}\left(im \cdot \left(-1 \cdot re\right)\right)\right)} \]
      7. *-commutative1.6%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(-1 \cdot re\right) \cdot im}\right)\right) \]
      8. add-sqr-sqrt1.4%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(\sqrt{-1 \cdot re} \cdot \sqrt{-1 \cdot re}\right)} \cdot im\right)\right) \]
      9. sqrt-unprod14.0%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\sqrt{\left(-1 \cdot re\right) \cdot \left(-1 \cdot re\right)}} \cdot im\right)\right) \]
      10. mul-1-neg14.0%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\color{blue}{\left(-re\right)} \cdot \left(-1 \cdot re\right)} \cdot im\right)\right) \]
      11. mul-1-neg14.0%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\left(-re\right) \cdot \color{blue}{\left(-re\right)}} \cdot im\right)\right) \]
      12. sqr-neg14.0%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\sqrt{\color{blue}{re \cdot re}} \cdot im\right)\right) \]
      13. sqrt-prod12.7%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{\left(\sqrt{re} \cdot \sqrt{re}\right)} \cdot im\right)\right) \]
      14. add-sqr-sqrt38.1%

        \[\leadsto \mathsf{log1p}\left(\mathsf{expm1}\left(\color{blue}{re} \cdot im\right)\right) \]
    8. Applied egg-rr38.1%

      \[\leadsto \color{blue}{\mathsf{log1p}\left(\mathsf{expm1}\left(re \cdot im\right)\right)} \]

    if 1.55000000000000006e51 < 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 74.7%

      \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
    4. Step-by-step derivation
      1. +-commutative74.7%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
      2. mul-1-neg74.7%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
      3. unsub-neg74.7%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
      4. *-commutative74.7%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
      5. associate-*r*74.7%

        \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
      6. distribute-lft-out--74.7%

        \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
      7. associate-*r*74.7%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
      8. *-commutative74.7%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
      9. associate-*r*74.7%

        \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
      10. associate-*r*83.1%

        \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
      11. distribute-rgt-out--83.1%

        \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
      12. unsub-neg83.1%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
      13. unsub-neg83.1%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    5. Simplified83.1%

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

      \[\leadsto \color{blue}{re \cdot \left(-0.16666666666666666 \cdot {im}^{3} - im\right)} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification62.3%

    \[\leadsto \begin{array}{l} \mathbf{if}\;im \leq 1.5 \cdot 10^{+15}:\\ \;\;\;\;im \cdot \left(-\sin re\right)\\ \mathbf{elif}\;im \leq 1.55 \cdot 10^{+51}:\\ \;\;\;\;\mathsf{log1p}\left(\mathsf{expm1}\left(im \cdot re\right)\right)\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 6: 78.2% accurate, 2.7× 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}\;im\_m \leq 1.55 \cdot 10^{+25}:\\ \;\;\;\;im\_m \cdot \left(-\sin re\right)\\ \mathbf{else}:\\ \;\;\;\;re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (*
  im_s
  (if (<= im_m 1.55e+25)
    (* im_m (- (sin re)))
    (* re (- (* (pow im_m 3.0) -0.16666666666666666) 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 (im_m <= 1.55e+25) {
		tmp = im_m * -sin(re);
	} else {
		tmp = re * ((pow(im_m, 3.0) * -0.16666666666666666) - 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 (im_m <= 1.55d+25) then
        tmp = im_m * -sin(re)
    else
        tmp = re * (((im_m ** 3.0d0) * (-0.16666666666666666d0)) - 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 (im_m <= 1.55e+25) {
		tmp = im_m * -Math.sin(re);
	} else {
		tmp = re * ((Math.pow(im_m, 3.0) * -0.16666666666666666) - 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 im_m <= 1.55e+25:
		tmp = im_m * -math.sin(re)
	else:
		tmp = re * ((math.pow(im_m, 3.0) * -0.16666666666666666) - 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 (im_m <= 1.55e+25)
		tmp = Float64(im_m * Float64(-sin(re)));
	else
		tmp = Float64(re * Float64(Float64((im_m ^ 3.0) * -0.16666666666666666) - 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 (im_m <= 1.55e+25)
		tmp = im_m * -sin(re);
	else
		tmp = re * (((im_m ^ 3.0) * -0.16666666666666666) - 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[im$95$m, 1.55e+25], N[(im$95$m * (-N[Sin[re], $MachinePrecision])), $MachinePrecision], N[(re * N[(N[(N[Power[im$95$m, 3.0], $MachinePrecision] * -0.16666666666666666), $MachinePrecision] - im$95$m), $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}\;im\_m \leq 1.55 \cdot 10^{+25}:\\
\;\;\;\;im\_m \cdot \left(-\sin re\right)\\

\mathbf{else}:\\
\;\;\;\;re \cdot \left({im\_m}^{3} \cdot -0.16666666666666666 - im\_m\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if im < 1.5499999999999999e25

    1. Initial program 62.1%

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

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

        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
      2. neg-mul-161.2%

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

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

    if 1.5499999999999999e25 < 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 68.9%

      \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
    4. Step-by-step derivation
      1. +-commutative68.9%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
      2. mul-1-neg68.9%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
      3. unsub-neg68.9%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
      4. *-commutative68.9%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
      5. associate-*r*68.9%

        \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
      6. distribute-lft-out--68.9%

        \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
      7. associate-*r*68.9%

        \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
      8. *-commutative68.9%

        \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
      9. associate-*r*68.9%

        \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
      10. associate-*r*76.6%

        \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
      11. distribute-rgt-out--76.6%

        \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
      12. unsub-neg76.6%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
      13. unsub-neg76.6%

        \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    5. Simplified76.6%

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

      \[\leadsto \color{blue}{re \cdot \left(-0.16666666666666666 \cdot {im}^{3} - im\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification61.2%

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

Alternative 7: 78.2% accurate, 2.8× 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}\;im\_m \leq 2.6 \cdot 10^{+27}:\\ \;\;\;\;im\_m \cdot \left(-\sin re\right)\\ \mathbf{else}:\\ \;\;\;\;-0.16666666666666666 \cdot \left(re \cdot {im\_m}^{3}\right)\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (*
  im_s
  (if (<= im_m 2.6e+27)
    (* im_m (- (sin re)))
    (* -0.16666666666666666 (* re (pow im_m 3.0))))))
im\_m = fabs(im);
im\_s = copysign(1.0, im);
double code(double im_s, double re, double im_m) {
	double tmp;
	if (im_m <= 2.6e+27) {
		tmp = im_m * -sin(re);
	} else {
		tmp = -0.16666666666666666 * (re * pow(im_m, 3.0));
	}
	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 (im_m <= 2.6d+27) then
        tmp = im_m * -sin(re)
    else
        tmp = (-0.16666666666666666d0) * (re * (im_m ** 3.0d0))
    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 (im_m <= 2.6e+27) {
		tmp = im_m * -Math.sin(re);
	} else {
		tmp = -0.16666666666666666 * (re * Math.pow(im_m, 3.0));
	}
	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 im_m <= 2.6e+27:
		tmp = im_m * -math.sin(re)
	else:
		tmp = -0.16666666666666666 * (re * math.pow(im_m, 3.0))
	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 (im_m <= 2.6e+27)
		tmp = Float64(im_m * Float64(-sin(re)));
	else
		tmp = Float64(-0.16666666666666666 * Float64(re * (im_m ^ 3.0)));
	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 (im_m <= 2.6e+27)
		tmp = im_m * -sin(re);
	else
		tmp = -0.16666666666666666 * (re * (im_m ^ 3.0));
	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[im$95$m, 2.6e+27], N[(im$95$m * (-N[Sin[re], $MachinePrecision])), $MachinePrecision], N[(-0.16666666666666666 * N[(re * N[Power[im$95$m, 3.0], $MachinePrecision]), $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}\;im\_m \leq 2.6 \cdot 10^{+27}:\\
\;\;\;\;im\_m \cdot \left(-\sin re\right)\\

\mathbf{else}:\\
\;\;\;\;-0.16666666666666666 \cdot \left(re \cdot {im\_m}^{3}\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if im < 2.60000000000000009e27

    1. Initial program 62.1%

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

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

        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
      2. neg-mul-161.2%

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

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

    if 2.60000000000000009e27 < 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 re around 0 73.8%

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*73.8%

        \[\leadsto \color{blue}{\left(0.5 \cdot re\right) \cdot \left(e^{-im} - e^{im}\right)} \]
      2. *-commutative73.8%

        \[\leadsto \color{blue}{\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)} \]
    5. Simplified73.8%

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

      \[\leadsto \color{blue}{im \cdot \left(-1 \cdot re + -0.16666666666666666 \cdot \left({im}^{2} \cdot re\right)\right)} \]
    7. Taylor expanded in im around inf 61.1%

      \[\leadsto \color{blue}{-0.16666666666666666 \cdot \left({im}^{3} \cdot re\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification61.2%

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

Alternative 8: 57.5% accurate, 2.8× 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}\;im\_m \leq 5.6 \cdot 10^{+50}:\\ \;\;\;\;im\_m \cdot \left(-\sin re\right)\\ \mathbf{elif}\;im\_m \leq 9.6 \cdot 10^{+167} \lor \neg \left(im\_m \leq 1.95 \cdot 10^{+239}\right):\\ \;\;\;\;im\_m \cdot re\\ \mathbf{else}:\\ \;\;\;\;im\_m \cdot \left(-re\right)\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (*
  im_s
  (if (<= im_m 5.6e+50)
    (* im_m (- (sin re)))
    (if (or (<= im_m 9.6e+167) (not (<= im_m 1.95e+239)))
      (* im_m re)
      (* 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 (im_m <= 5.6e+50) {
		tmp = im_m * -sin(re);
	} else if ((im_m <= 9.6e+167) || !(im_m <= 1.95e+239)) {
		tmp = im_m * re;
	} else {
		tmp = im_m * -re;
	}
	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 (im_m <= 5.6d+50) then
        tmp = im_m * -sin(re)
    else if ((im_m <= 9.6d+167) .or. (.not. (im_m <= 1.95d+239))) then
        tmp = im_m * re
    else
        tmp = im_m * -re
    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 (im_m <= 5.6e+50) {
		tmp = im_m * -Math.sin(re);
	} else if ((im_m <= 9.6e+167) || !(im_m <= 1.95e+239)) {
		tmp = im_m * re;
	} else {
		tmp = im_m * -re;
	}
	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 im_m <= 5.6e+50:
		tmp = im_m * -math.sin(re)
	elif (im_m <= 9.6e+167) or not (im_m <= 1.95e+239):
		tmp = im_m * re
	else:
		tmp = 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 (im_m <= 5.6e+50)
		tmp = Float64(im_m * Float64(-sin(re)));
	elseif ((im_m <= 9.6e+167) || !(im_m <= 1.95e+239))
		tmp = Float64(im_m * re);
	else
		tmp = Float64(im_m * Float64(-re));
	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 (im_m <= 5.6e+50)
		tmp = im_m * -sin(re);
	elseif ((im_m <= 9.6e+167) || ~((im_m <= 1.95e+239)))
		tmp = im_m * re;
	else
		tmp = im_m * -re;
	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[im$95$m, 5.6e+50], N[(im$95$m * (-N[Sin[re], $MachinePrecision])), $MachinePrecision], If[Or[LessEqual[im$95$m, 9.6e+167], N[Not[LessEqual[im$95$m, 1.95e+239]], $MachinePrecision]], N[(im$95$m * re), $MachinePrecision], N[(im$95$m * (-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}\;im\_m \leq 5.6 \cdot 10^{+50}:\\
\;\;\;\;im\_m \cdot \left(-\sin re\right)\\

\mathbf{elif}\;im\_m \leq 9.6 \cdot 10^{+167} \lor \neg \left(im\_m \leq 1.95 \cdot 10^{+239}\right):\\
\;\;\;\;im\_m \cdot re\\

\mathbf{else}:\\
\;\;\;\;im\_m \cdot \left(-re\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if im < 5.5999999999999996e50

    1. Initial program 62.9%

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

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

        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
      2. neg-mul-160.0%

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

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

    if 5.5999999999999996e50 < im < 9.59999999999999995e167 or 1.9499999999999999e239 < 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 re around 0 71.4%

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*71.4%

        \[\leadsto \color{blue}{\left(0.5 \cdot re\right) \cdot \left(e^{-im} - e^{im}\right)} \]
      2. *-commutative71.4%

        \[\leadsto \color{blue}{\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)} \]
    5. Simplified71.4%

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

      \[\leadsto \color{blue}{\left(-2 \cdot im\right)} \cdot \left(0.5 \cdot re\right) \]
    7. Step-by-step derivation
      1. add-cube-cbrt5.1%

        \[\leadsto \color{blue}{\left(\sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)} \cdot \sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}\right) \cdot \sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}} \]
      2. pow35.1%

        \[\leadsto \color{blue}{{\left(\sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}\right)}^{3}} \]
      3. associate-*r*5.1%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\left(-2 \cdot im\right) \cdot 0.5\right) \cdot re}}\right)}^{3} \]
      4. *-commutative5.1%

        \[\leadsto {\left(\sqrt[3]{\left(\color{blue}{\left(im \cdot -2\right)} \cdot 0.5\right) \cdot re}\right)}^{3} \]
      5. associate-*l*5.1%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(im \cdot \left(-2 \cdot 0.5\right)\right)} \cdot re}\right)}^{3} \]
      6. metadata-eval5.1%

        \[\leadsto {\left(\sqrt[3]{\left(im \cdot \color{blue}{-1}\right) \cdot re}\right)}^{3} \]
      7. associate-*r*5.1%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{im \cdot \left(-1 \cdot re\right)}}\right)}^{3} \]
      8. *-commutative5.1%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(-1 \cdot re\right) \cdot im}}\right)}^{3} \]
      9. add-sqr-sqrt3.7%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\sqrt{-1 \cdot re} \cdot \sqrt{-1 \cdot re}\right)} \cdot im}\right)}^{3} \]
      10. sqrt-unprod20.2%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\sqrt{\left(-1 \cdot re\right) \cdot \left(-1 \cdot re\right)}} \cdot im}\right)}^{3} \]
      11. mul-1-neg20.2%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\color{blue}{\left(-re\right)} \cdot \left(-1 \cdot re\right)} \cdot im}\right)}^{3} \]
      12. mul-1-neg20.2%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\left(-re\right) \cdot \color{blue}{\left(-re\right)}} \cdot im}\right)}^{3} \]
      13. sqr-neg20.2%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\color{blue}{re \cdot re}} \cdot im}\right)}^{3} \]
      14. sqrt-prod14.5%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\sqrt{re} \cdot \sqrt{re}\right)} \cdot im}\right)}^{3} \]
      15. add-sqr-sqrt26.7%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{re} \cdot im}\right)}^{3} \]
    8. Applied egg-rr26.7%

      \[\leadsto \color{blue}{{\left(\sqrt[3]{re \cdot im}\right)}^{3}} \]
    9. Step-by-step derivation
      1. rem-cube-cbrt26.7%

        \[\leadsto \color{blue}{re \cdot im} \]
    10. Simplified26.7%

      \[\leadsto \color{blue}{re \cdot im} \]

    if 9.59999999999999995e167 < im < 1.9499999999999999e239

    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 5.0%

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

        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
      2. neg-mul-15.0%

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

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

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

        \[\leadsto \color{blue}{-im \cdot re} \]
      2. *-commutative29.0%

        \[\leadsto -\color{blue}{re \cdot im} \]
      3. distribute-rgt-neg-in29.0%

        \[\leadsto \color{blue}{re \cdot \left(-im\right)} \]
    8. Simplified29.0%

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;im \leq 5.6 \cdot 10^{+50}:\\ \;\;\;\;im \cdot \left(-\sin re\right)\\ \mathbf{elif}\;im \leq 9.6 \cdot 10^{+167} \lor \neg \left(im \leq 1.95 \cdot 10^{+239}\right):\\ \;\;\;\;im \cdot re\\ \mathbf{else}:\\ \;\;\;\;im \cdot \left(-re\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 9: 33.9% accurate, 25.6× 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}\;re \leq 28.5:\\ \;\;\;\;\left(0.5 \cdot re\right) \cdot \left(im\_m \cdot -2\right)\\ \mathbf{else}:\\ \;\;\;\;im\_m \cdot re\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (* im_s (if (<= re 28.5) (* (* 0.5 re) (* im_m -2.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 (re <= 28.5) {
		tmp = (0.5 * re) * (im_m * -2.0);
	} else {
		tmp = im_m * re;
	}
	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 (re <= 28.5d0) then
        tmp = (0.5d0 * re) * (im_m * (-2.0d0))
    else
        tmp = im_m * re
    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 (re <= 28.5) {
		tmp = (0.5 * re) * (im_m * -2.0);
	} else {
		tmp = im_m * re;
	}
	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 re <= 28.5:
		tmp = (0.5 * re) * (im_m * -2.0)
	else:
		tmp = 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 (re <= 28.5)
		tmp = Float64(Float64(0.5 * re) * Float64(im_m * -2.0));
	else
		tmp = Float64(im_m * re);
	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 (re <= 28.5)
		tmp = (0.5 * re) * (im_m * -2.0);
	else
		tmp = im_m * re;
	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[re, 28.5], N[(N[(0.5 * re), $MachinePrecision] * N[(im$95$m * -2.0), $MachinePrecision]), $MachinePrecision], N[(im$95$m * 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}\;re \leq 28.5:\\
\;\;\;\;\left(0.5 \cdot re\right) \cdot \left(im\_m \cdot -2\right)\\

\mathbf{else}:\\
\;\;\;\;im\_m \cdot re\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if re < 28.5

    1. Initial program 74.7%

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

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*65.2%

        \[\leadsto \color{blue}{\left(0.5 \cdot re\right) \cdot \left(e^{-im} - e^{im}\right)} \]
      2. *-commutative65.2%

        \[\leadsto \color{blue}{\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)} \]
    5. Simplified65.2%

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

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

    if 28.5 < re

    1. Initial program 57.2%

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

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*18.1%

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

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

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

      \[\leadsto \color{blue}{\left(-2 \cdot im\right)} \cdot \left(0.5 \cdot re\right) \]
    7. Step-by-step derivation
      1. add-cube-cbrt2.8%

        \[\leadsto \color{blue}{\left(\sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)} \cdot \sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}\right) \cdot \sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}} \]
      2. pow32.8%

        \[\leadsto \color{blue}{{\left(\sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}\right)}^{3}} \]
      3. associate-*r*2.8%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\left(-2 \cdot im\right) \cdot 0.5\right) \cdot re}}\right)}^{3} \]
      4. *-commutative2.8%

        \[\leadsto {\left(\sqrt[3]{\left(\color{blue}{\left(im \cdot -2\right)} \cdot 0.5\right) \cdot re}\right)}^{3} \]
      5. associate-*l*2.8%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(im \cdot \left(-2 \cdot 0.5\right)\right)} \cdot re}\right)}^{3} \]
      6. metadata-eval2.8%

        \[\leadsto {\left(\sqrt[3]{\left(im \cdot \color{blue}{-1}\right) \cdot re}\right)}^{3} \]
      7. associate-*r*2.8%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{im \cdot \left(-1 \cdot re\right)}}\right)}^{3} \]
      8. *-commutative2.8%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(-1 \cdot re\right) \cdot im}}\right)}^{3} \]
      9. add-sqr-sqrt0.0%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\sqrt{-1 \cdot re} \cdot \sqrt{-1 \cdot re}\right)} \cdot im}\right)}^{3} \]
      10. sqrt-unprod23.6%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\sqrt{\left(-1 \cdot re\right) \cdot \left(-1 \cdot re\right)}} \cdot im}\right)}^{3} \]
      11. mul-1-neg23.6%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\color{blue}{\left(-re\right)} \cdot \left(-1 \cdot re\right)} \cdot im}\right)}^{3} \]
      12. mul-1-neg23.6%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\left(-re\right) \cdot \color{blue}{\left(-re\right)}} \cdot im}\right)}^{3} \]
      13. sqr-neg23.6%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\color{blue}{re \cdot re}} \cdot im}\right)}^{3} \]
      14. sqrt-prod22.1%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\sqrt{re} \cdot \sqrt{re}\right)} \cdot im}\right)}^{3} \]
      15. add-sqr-sqrt22.1%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{re} \cdot im}\right)}^{3} \]
    8. Applied egg-rr22.1%

      \[\leadsto \color{blue}{{\left(\sqrt[3]{re \cdot im}\right)}^{3}} \]
    9. Step-by-step derivation
      1. rem-cube-cbrt22.1%

        \[\leadsto \color{blue}{re \cdot im} \]
    10. Simplified22.1%

      \[\leadsto \color{blue}{re \cdot im} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification30.9%

    \[\leadsto \begin{array}{l} \mathbf{if}\;re \leq 28.5:\\ \;\;\;\;\left(0.5 \cdot re\right) \cdot \left(im \cdot -2\right)\\ \mathbf{else}:\\ \;\;\;\;im \cdot re\\ \end{array} \]
  5. Add Preprocessing

Alternative 10: 33.9% accurate, 34.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}\;re \leq 28.5:\\ \;\;\;\;im\_m \cdot \left(-re\right)\\ \mathbf{else}:\\ \;\;\;\;im\_m \cdot re\\ \end{array} \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m)
 :precision binary64
 (* im_s (if (<= re 28.5) (* im_m (- re)) (* 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 (re <= 28.5) {
		tmp = im_m * -re;
	} else {
		tmp = im_m * re;
	}
	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 (re <= 28.5d0) then
        tmp = im_m * -re
    else
        tmp = im_m * re
    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 (re <= 28.5) {
		tmp = im_m * -re;
	} else {
		tmp = im_m * re;
	}
	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 re <= 28.5:
		tmp = im_m * -re
	else:
		tmp = 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 (re <= 28.5)
		tmp = Float64(im_m * Float64(-re));
	else
		tmp = Float64(im_m * re);
	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 (re <= 28.5)
		tmp = im_m * -re;
	else
		tmp = im_m * re;
	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[re, 28.5], N[(im$95$m * (-re)), $MachinePrecision], N[(im$95$m * 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}\;re \leq 28.5:\\
\;\;\;\;im\_m \cdot \left(-re\right)\\

\mathbf{else}:\\
\;\;\;\;im\_m \cdot re\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if re < 28.5

    1. Initial program 74.7%

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

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

        \[\leadsto \color{blue}{\left(-1 \cdot im\right) \cdot \sin re} \]
      2. neg-mul-147.0%

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

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

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

        \[\leadsto \color{blue}{-im \cdot re} \]
      2. *-commutative32.7%

        \[\leadsto -\color{blue}{re \cdot im} \]
      3. distribute-rgt-neg-in32.7%

        \[\leadsto \color{blue}{re \cdot \left(-im\right)} \]
    8. Simplified32.7%

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

    if 28.5 < re

    1. Initial program 57.2%

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

      \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
    4. Step-by-step derivation
      1. associate-*r*18.1%

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

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

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

      \[\leadsto \color{blue}{\left(-2 \cdot im\right)} \cdot \left(0.5 \cdot re\right) \]
    7. Step-by-step derivation
      1. add-cube-cbrt2.8%

        \[\leadsto \color{blue}{\left(\sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)} \cdot \sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}\right) \cdot \sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}} \]
      2. pow32.8%

        \[\leadsto \color{blue}{{\left(\sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}\right)}^{3}} \]
      3. associate-*r*2.8%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\left(-2 \cdot im\right) \cdot 0.5\right) \cdot re}}\right)}^{3} \]
      4. *-commutative2.8%

        \[\leadsto {\left(\sqrt[3]{\left(\color{blue}{\left(im \cdot -2\right)} \cdot 0.5\right) \cdot re}\right)}^{3} \]
      5. associate-*l*2.8%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(im \cdot \left(-2 \cdot 0.5\right)\right)} \cdot re}\right)}^{3} \]
      6. metadata-eval2.8%

        \[\leadsto {\left(\sqrt[3]{\left(im \cdot \color{blue}{-1}\right) \cdot re}\right)}^{3} \]
      7. associate-*r*2.8%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{im \cdot \left(-1 \cdot re\right)}}\right)}^{3} \]
      8. *-commutative2.8%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(-1 \cdot re\right) \cdot im}}\right)}^{3} \]
      9. add-sqr-sqrt0.0%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\sqrt{-1 \cdot re} \cdot \sqrt{-1 \cdot re}\right)} \cdot im}\right)}^{3} \]
      10. sqrt-unprod23.6%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\sqrt{\left(-1 \cdot re\right) \cdot \left(-1 \cdot re\right)}} \cdot im}\right)}^{3} \]
      11. mul-1-neg23.6%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\color{blue}{\left(-re\right)} \cdot \left(-1 \cdot re\right)} \cdot im}\right)}^{3} \]
      12. mul-1-neg23.6%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\left(-re\right) \cdot \color{blue}{\left(-re\right)}} \cdot im}\right)}^{3} \]
      13. sqr-neg23.6%

        \[\leadsto {\left(\sqrt[3]{\sqrt{\color{blue}{re \cdot re}} \cdot im}\right)}^{3} \]
      14. sqrt-prod22.1%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\sqrt{re} \cdot \sqrt{re}\right)} \cdot im}\right)}^{3} \]
      15. add-sqr-sqrt22.1%

        \[\leadsto {\left(\sqrt[3]{\color{blue}{re} \cdot im}\right)}^{3} \]
    8. Applied egg-rr22.1%

      \[\leadsto \color{blue}{{\left(\sqrt[3]{re \cdot im}\right)}^{3}} \]
    9. Step-by-step derivation
      1. rem-cube-cbrt22.1%

        \[\leadsto \color{blue}{re \cdot im} \]
    10. Simplified22.1%

      \[\leadsto \color{blue}{re \cdot im} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification30.5%

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

Alternative 11: 21.1% accurate, 102.7× speedup?

\[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot \left(im\_m \cdot re\right) \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m) :precision binary64 (* im_s (* im_m re)))
im\_m = fabs(im);
im\_s = copysign(1.0, im);
double code(double im_s, double re, double im_m) {
	return im_s * (im_m * re);
}
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 * (im_m * re)
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 * (im_m * re);
}
im\_m = math.fabs(im)
im\_s = math.copysign(1.0, im)
def code(im_s, re, im_m):
	return im_s * (im_m * re)
im\_m = abs(im)
im\_s = copysign(1.0, im)
function code(im_s, re, im_m)
	return Float64(im_s * Float64(im_m * re))
end
im\_m = abs(im);
im\_s = sign(im) * abs(1.0);
function tmp = code(im_s, re, im_m)
	tmp = im_s * (im_m * re);
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[(im$95$m * re), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
im\_m = \left|im\right|
\\
im\_s = \mathsf{copysign}\left(1, im\right)

\\
im\_s \cdot \left(im\_m \cdot re\right)
\end{array}
Derivation
  1. Initial program 71.1%

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

    \[\leadsto \color{blue}{0.5 \cdot \left(re \cdot \left(e^{-im} - e^{im}\right)\right)} \]
  4. Step-by-step derivation
    1. associate-*r*55.6%

      \[\leadsto \color{blue}{\left(0.5 \cdot re\right) \cdot \left(e^{-im} - e^{im}\right)} \]
    2. *-commutative55.6%

      \[\leadsto \color{blue}{\left(e^{-im} - e^{im}\right) \cdot \left(0.5 \cdot re\right)} \]
  5. Simplified55.6%

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

    \[\leadsto \color{blue}{\left(-2 \cdot im\right)} \cdot \left(0.5 \cdot re\right) \]
  7. Step-by-step derivation
    1. add-cube-cbrt26.8%

      \[\leadsto \color{blue}{\left(\sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)} \cdot \sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}\right) \cdot \sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}} \]
    2. pow326.8%

      \[\leadsto \color{blue}{{\left(\sqrt[3]{\left(-2 \cdot im\right) \cdot \left(0.5 \cdot re\right)}\right)}^{3}} \]
    3. associate-*r*26.8%

      \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\left(-2 \cdot im\right) \cdot 0.5\right) \cdot re}}\right)}^{3} \]
    4. *-commutative26.8%

      \[\leadsto {\left(\sqrt[3]{\left(\color{blue}{\left(im \cdot -2\right)} \cdot 0.5\right) \cdot re}\right)}^{3} \]
    5. associate-*l*26.5%

      \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(im \cdot \left(-2 \cdot 0.5\right)\right)} \cdot re}\right)}^{3} \]
    6. metadata-eval26.5%

      \[\leadsto {\left(\sqrt[3]{\left(im \cdot \color{blue}{-1}\right) \cdot re}\right)}^{3} \]
    7. associate-*r*26.5%

      \[\leadsto {\left(\sqrt[3]{\color{blue}{im \cdot \left(-1 \cdot re\right)}}\right)}^{3} \]
    8. *-commutative26.5%

      \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(-1 \cdot re\right) \cdot im}}\right)}^{3} \]
    9. add-sqr-sqrt15.7%

      \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\sqrt{-1 \cdot re} \cdot \sqrt{-1 \cdot re}\right)} \cdot im}\right)}^{3} \]
    10. sqrt-unprod28.4%

      \[\leadsto {\left(\sqrt[3]{\color{blue}{\sqrt{\left(-1 \cdot re\right) \cdot \left(-1 \cdot re\right)}} \cdot im}\right)}^{3} \]
    11. mul-1-neg28.4%

      \[\leadsto {\left(\sqrt[3]{\sqrt{\color{blue}{\left(-re\right)} \cdot \left(-1 \cdot re\right)} \cdot im}\right)}^{3} \]
    12. mul-1-neg28.4%

      \[\leadsto {\left(\sqrt[3]{\sqrt{\left(-re\right) \cdot \color{blue}{\left(-re\right)}} \cdot im}\right)}^{3} \]
    13. sqr-neg28.4%

      \[\leadsto {\left(\sqrt[3]{\sqrt{\color{blue}{re \cdot re}} \cdot im}\right)}^{3} \]
    14. sqrt-prod12.0%

      \[\leadsto {\left(\sqrt[3]{\color{blue}{\left(\sqrt{re} \cdot \sqrt{re}\right)} \cdot im}\right)}^{3} \]
    15. add-sqr-sqrt21.8%

      \[\leadsto {\left(\sqrt[3]{\color{blue}{re} \cdot im}\right)}^{3} \]
  8. Applied egg-rr21.8%

    \[\leadsto \color{blue}{{\left(\sqrt[3]{re \cdot im}\right)}^{3}} \]
  9. Step-by-step derivation
    1. rem-cube-cbrt21.8%

      \[\leadsto \color{blue}{re \cdot im} \]
  10. Simplified21.8%

    \[\leadsto \color{blue}{re \cdot im} \]
  11. Final simplification21.8%

    \[\leadsto im \cdot re \]
  12. Add Preprocessing

Alternative 12: 2.7% accurate, 308.0× speedup?

\[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot -3 \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m) :precision binary64 (* im_s -3.0))
im\_m = fabs(im);
im\_s = copysign(1.0, im);
double code(double im_s, double re, double im_m) {
	return im_s * -3.0;
}
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 * (-3.0d0)
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 * -3.0;
}
im\_m = math.fabs(im)
im\_s = math.copysign(1.0, im)
def code(im_s, re, im_m):
	return im_s * -3.0
im\_m = abs(im)
im\_s = copysign(1.0, im)
function code(im_s, re, im_m)
	return Float64(im_s * -3.0)
end
im\_m = abs(im);
im\_s = sign(im) * abs(1.0);
function tmp = code(im_s, re, im_m)
	tmp = im_s * -3.0;
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 * -3.0), $MachinePrecision]
\begin{array}{l}
im\_m = \left|im\right|
\\
im\_s = \mathsf{copysign}\left(1, im\right)

\\
im\_s \cdot -3
\end{array}
Derivation
  1. Initial program 71.1%

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

    \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
  4. Step-by-step derivation
    1. +-commutative77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
    2. mul-1-neg77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
    3. unsub-neg77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
    4. *-commutative77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
    5. associate-*r*77.3%

      \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
    6. distribute-lft-out--77.3%

      \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
    7. associate-*r*77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
    8. *-commutative77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
    9. associate-*r*77.3%

      \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
    10. associate-*r*82.4%

      \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
    11. distribute-rgt-out--82.4%

      \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    12. unsub-neg82.4%

      \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
    13. unsub-neg82.4%

      \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
  5. Simplified82.4%

    \[\leadsto \color{blue}{\sin re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)} \]
  6. Applied egg-rr2.7%

    \[\leadsto \color{blue}{-3} \]
  7. Final simplification2.7%

    \[\leadsto -3 \]
  8. Add Preprocessing

Alternative 13: 2.8% accurate, 308.0× speedup?

\[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot -0.004629629629629629 \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m) :precision binary64 (* im_s -0.004629629629629629))
im\_m = fabs(im);
im\_s = copysign(1.0, im);
double code(double im_s, double re, double im_m) {
	return im_s * -0.004629629629629629;
}
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 * (-0.004629629629629629d0)
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 * -0.004629629629629629;
}
im\_m = math.fabs(im)
im\_s = math.copysign(1.0, im)
def code(im_s, re, im_m):
	return im_s * -0.004629629629629629
im\_m = abs(im)
im\_s = copysign(1.0, im)
function code(im_s, re, im_m)
	return Float64(im_s * -0.004629629629629629)
end
im\_m = abs(im);
im\_s = sign(im) * abs(1.0);
function tmp = code(im_s, re, im_m)
	tmp = im_s * -0.004629629629629629;
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 * -0.004629629629629629), $MachinePrecision]
\begin{array}{l}
im\_m = \left|im\right|
\\
im\_s = \mathsf{copysign}\left(1, im\right)

\\
im\_s \cdot -0.004629629629629629
\end{array}
Derivation
  1. Initial program 71.1%

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

    \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
  4. Step-by-step derivation
    1. +-commutative77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
    2. mul-1-neg77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
    3. unsub-neg77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
    4. *-commutative77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
    5. associate-*r*77.3%

      \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
    6. distribute-lft-out--77.3%

      \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
    7. associate-*r*77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
    8. *-commutative77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
    9. associate-*r*77.3%

      \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
    10. associate-*r*82.4%

      \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
    11. distribute-rgt-out--82.4%

      \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    12. unsub-neg82.4%

      \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
    13. unsub-neg82.4%

      \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
  5. Simplified82.4%

    \[\leadsto \color{blue}{\sin re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)} \]
  6. Applied egg-rr2.7%

    \[\leadsto \color{blue}{-0.004629629629629629} \]
  7. Final simplification2.7%

    \[\leadsto -0.004629629629629629 \]
  8. Add Preprocessing

Alternative 14: 16.0% accurate, 308.0× speedup?

\[\begin{array}{l} im\_m = \left|im\right| \\ im\_s = \mathsf{copysign}\left(1, im\right) \\ im\_s \cdot 0 \end{array} \]
im\_m = (fabs.f64 im)
im\_s = (copysign.f64 1 im)
(FPCore (im_s re im_m) :precision binary64 (* im_s 0.0))
im\_m = fabs(im);
im\_s = copysign(1.0, im);
double code(double im_s, double re, double im_m) {
	return im_s * 0.0;
}
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 * 0.0d0
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 * 0.0;
}
im\_m = math.fabs(im)
im\_s = math.copysign(1.0, im)
def code(im_s, re, im_m):
	return im_s * 0.0
im\_m = abs(im)
im\_s = copysign(1.0, im)
function code(im_s, re, im_m)
	return Float64(im_s * 0.0)
end
im\_m = abs(im);
im\_s = sign(im) * abs(1.0);
function tmp = code(im_s, re, im_m)
	tmp = im_s * 0.0;
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 * 0.0), $MachinePrecision]
\begin{array}{l}
im\_m = \left|im\right|
\\
im\_s = \mathsf{copysign}\left(1, im\right)

\\
im\_s \cdot 0
\end{array}
Derivation
  1. Initial program 71.1%

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

    \[\leadsto \color{blue}{im \cdot \left(-1 \cdot \sin re + -0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right)\right)} \]
  4. Step-by-step derivation
    1. +-commutative77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + -1 \cdot \sin re\right)} \]
    2. mul-1-neg77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) + \color{blue}{\left(-\sin re\right)}\right) \]
    3. unsub-neg77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left({im}^{2} \cdot \sin re\right) - \sin re\right)} \]
    4. *-commutative77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left(\sin re \cdot {im}^{2}\right)} - \sin re\right) \]
    5. associate-*r*77.3%

      \[\leadsto im \cdot \left(\color{blue}{\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}} - \sin re\right) \]
    6. distribute-lft-out--77.3%

      \[\leadsto \color{blue}{im \cdot \left(\left(-0.16666666666666666 \cdot \sin re\right) \cdot {im}^{2}\right) - im \cdot \sin re} \]
    7. associate-*r*77.3%

      \[\leadsto im \cdot \color{blue}{\left(-0.16666666666666666 \cdot \left(\sin re \cdot {im}^{2}\right)\right)} - im \cdot \sin re \]
    8. *-commutative77.3%

      \[\leadsto im \cdot \left(-0.16666666666666666 \cdot \color{blue}{\left({im}^{2} \cdot \sin re\right)}\right) - im \cdot \sin re \]
    9. associate-*r*77.3%

      \[\leadsto im \cdot \color{blue}{\left(\left(-0.16666666666666666 \cdot {im}^{2}\right) \cdot \sin re\right)} - im \cdot \sin re \]
    10. associate-*r*82.4%

      \[\leadsto \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right)\right) \cdot \sin re} - im \cdot \sin re \]
    11. distribute-rgt-out--82.4%

      \[\leadsto \color{blue}{\sin re \cdot \left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
    12. unsub-neg82.4%

      \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) + \left(-im\right)\right)} \]
    13. unsub-neg82.4%

      \[\leadsto \sin re \cdot \color{blue}{\left(im \cdot \left(-0.16666666666666666 \cdot {im}^{2}\right) - im\right)} \]
  5. Simplified82.4%

    \[\leadsto \color{blue}{\sin re \cdot \left({im}^{3} \cdot -0.16666666666666666 - im\right)} \]
  6. Applied egg-rr16.2%

    \[\leadsto \color{blue}{0} \]
  7. Final simplification16.2%

    \[\leadsto 0 \]
  8. Add Preprocessing

Developer target: 99.7% accurate, 0.7× 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 2024076 
(FPCore (re im)
  :name "math.cos on complex, imaginary part"
  :precision binary64

  :alt
  (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))))

  (* (* 0.5 (sin re)) (- (exp (- im)) (exp im))))