e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im} \cdot \sin \left(\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.im + \tan^{-1}_* \frac{x.im}{x.re} \cdot y.re\right)
\begin{array}{l}
t_0 := y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\\
t_1 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_2 := \log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right)\\
t_3 := e^{t_2 \cdot y.re - t_1} \cdot \sin \left(t_2 \cdot y.im + t_0\right)\\
\mathbf{if}\;t_3 \leq 0:\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;\begin{array}{l}
t_4 := \sqrt[3]{\mathsf{hypot}\left(x.re, x.im\right)}\\
\frac{{\left(t_4 \cdot t_4\right)}^{y.re}}{\frac{e^{t_1}}{{\left(\sqrt[3]{\mathsf{hypot}\left(x.im, x.re\right)}\right)}^{y.re}}} \cdot \sin \left(\mathsf{fma}\left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.im, t_0\right)\right)
\end{array}\\
\end{array}
(FPCore (x.re x.im y.re y.im)
:precision binary64
(*
(exp
(-
(* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re)
(* (atan2 x.im x.re) y.im)))
(sin
(+
(* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.im)
(* (atan2 x.im x.re) y.re)))))(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* y.re (atan2 x.im x.re)))
(t_1 (* (atan2 x.im x.re) y.im))
(t_2 (log (sqrt (+ (* x.re x.re) (* x.im x.im)))))
(t_3 (* (exp (- (* t_2 y.re) t_1)) (sin (+ (* t_2 y.im) t_0)))))
(if (<= t_3 0.0)
t_3
(let* ((t_4 (cbrt (hypot x.re x.im))))
(*
(/
(pow (* t_4 t_4) y.re)
(/ (exp t_1) (pow (cbrt (hypot x.im x.re)) y.re)))
(sin (fma (log (hypot x.re x.im)) y.im t_0)))))))double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
return exp((log(sqrt((x_46_re * x_46_re) + (x_46_im * x_46_im))) * y_46_re) - (atan2(x_46_im, x_46_re) * y_46_im)) * sin((log(sqrt((x_46_re * x_46_re) + (x_46_im * x_46_im))) * y_46_im) + (atan2(x_46_im, x_46_re) * y_46_re));
}
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = y_46_re * atan2(x_46_im, x_46_re);
double t_1 = atan2(x_46_im, x_46_re) * y_46_im;
double t_2 = log(sqrt((x_46_re * x_46_re) + (x_46_im * x_46_im)));
double t_3 = exp((t_2 * y_46_re) - t_1) * sin((t_2 * y_46_im) + t_0);
double tmp;
if (t_3 <= 0.0) {
tmp = t_3;
} else {
double t_4 = cbrt(hypot(x_46_re, x_46_im));
tmp = (pow((t_4 * t_4), y_46_re) / (exp(t_1) / pow(cbrt(hypot(x_46_im, x_46_re)), y_46_re))) * sin(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_0));
}
return tmp;
}



Bits error versus x.re



Bits error versus x.im



Bits error versus y.re



Bits error versus y.im
if (*.f64 (exp.f64 (-.f64 (*.f64 (log.f64 (sqrt.f64 (+.f64 (*.f64 x.re x.re) (*.f64 x.im x.im)))) y.re) (*.f64 (atan2.f64 x.im x.re) y.im))) (sin.f64 (+.f64 (*.f64 (log.f64 (sqrt.f64 (+.f64 (*.f64 x.re x.re) (*.f64 x.im x.im)))) y.im) (*.f64 (atan2.f64 x.im x.re) y.re)))) < -0.0Initial program 2.1
if -0.0 < (*.f64 (exp.f64 (-.f64 (*.f64 (log.f64 (sqrt.f64 (+.f64 (*.f64 x.re x.re) (*.f64 x.im x.im)))) y.re) (*.f64 (atan2.f64 x.im x.re) y.im))) (sin.f64 (+.f64 (*.f64 (log.f64 (sqrt.f64 (+.f64 (*.f64 x.re x.re) (*.f64 x.im x.im)))) y.im) (*.f64 (atan2.f64 x.im x.re) y.re)))) Initial program 53.6
Simplified8.4
Applied add-cube-cbrt_binary648.4
Applied unpow-prod-down_binary648.4
Applied associate-/l*_binary648.4
Simplified8.4
Final simplification6.0
herbie shell --seed 2021280
(FPCore (x.re x.im y.re y.im)
:name "powComplex, imaginary part"
:precision binary64
(* (exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) (* (atan2 x.im x.re) y.im))) (sin (+ (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.im) (* (atan2 x.im x.re) y.re)))))