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)\left(\left(\sqrt[3]{\sin \left(\mathsf{fma}\left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.im, \tan^{-1}_* \frac{x.im}{x.re} \cdot y.re\right)\right)} \cdot \sqrt[3]{\sin \left(\mathsf{fma}\left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.im, \tan^{-1}_* \frac{x.im}{x.re} \cdot y.re\right)\right)}\right) \cdot \sqrt[3]{\sin \left(\mathsf{fma}\left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.im, \left(\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}} \cdot \sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}}\right) \cdot \left(\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}} \cdot y.re\right)\right)\right)}\right) \cdot e^{\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right) \cdot y.re - \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im}double f(double x_re, double x_im, double y_re, double y_im) {
double r27415 = x_re;
double r27416 = r27415 * r27415;
double r27417 = x_im;
double r27418 = r27417 * r27417;
double r27419 = r27416 + r27418;
double r27420 = sqrt(r27419);
double r27421 = log(r27420);
double r27422 = y_re;
double r27423 = r27421 * r27422;
double r27424 = atan2(r27417, r27415);
double r27425 = y_im;
double r27426 = r27424 * r27425;
double r27427 = r27423 - r27426;
double r27428 = exp(r27427);
double r27429 = r27421 * r27425;
double r27430 = r27424 * r27422;
double r27431 = r27429 + r27430;
double r27432 = sin(r27431);
double r27433 = r27428 * r27432;
return r27433;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r27434 = x_re;
double r27435 = x_im;
double r27436 = hypot(r27434, r27435);
double r27437 = log(r27436);
double r27438 = y_im;
double r27439 = atan2(r27435, r27434);
double r27440 = y_re;
double r27441 = r27439 * r27440;
double r27442 = fma(r27437, r27438, r27441);
double r27443 = sin(r27442);
double r27444 = cbrt(r27443);
double r27445 = r27444 * r27444;
double r27446 = cbrt(r27439);
double r27447 = r27446 * r27446;
double r27448 = r27446 * r27440;
double r27449 = r27447 * r27448;
double r27450 = fma(r27437, r27438, r27449);
double r27451 = sin(r27450);
double r27452 = cbrt(r27451);
double r27453 = r27445 * r27452;
double r27454 = r27437 * r27440;
double r27455 = r27439 * r27438;
double r27456 = r27454 - r27455;
double r27457 = exp(r27456);
double r27458 = r27453 * r27457;
return r27458;
}



Bits error versus x.re



Bits error versus x.im



Bits error versus y.re



Bits error versus y.im
Initial program 33.5
Simplified8.9
rmApplied add-exp-log8.9
Applied pow-exp8.9
Applied div-exp3.7
rmApplied add-cube-cbrt4.2
rmApplied add-cube-cbrt4.2
Applied associate-*l*4.2
Final simplification4.2
herbie shell --seed 2019235 +o rules:numerics
(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)))))