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)\frac{\mathsf{expm1}\left(\mathsf{log1p}\left(\sin \left(\mathsf{fma}\left(y.im, \log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), \tan^{-1}_* \frac{x.im}{x.re} \cdot y.re\right)\right)\right)\right)}{e^{\left(\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im} \cdot \left(\left(\sqrt[3]{\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im}} \cdot \sqrt[3]{\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im}}\right) \cdot \sqrt[3]{\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im}}\right)\right) \cdot \sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im} - y.re \cdot \log \left(\mathsf{hypot}\left(x.re, x.im\right)\right)}}double f(double x_re, double x_im, double y_re, double y_im) {
double r1175413 = x_re;
double r1175414 = r1175413 * r1175413;
double r1175415 = x_im;
double r1175416 = r1175415 * r1175415;
double r1175417 = r1175414 + r1175416;
double r1175418 = sqrt(r1175417);
double r1175419 = log(r1175418);
double r1175420 = y_re;
double r1175421 = r1175419 * r1175420;
double r1175422 = atan2(r1175415, r1175413);
double r1175423 = y_im;
double r1175424 = r1175422 * r1175423;
double r1175425 = r1175421 - r1175424;
double r1175426 = exp(r1175425);
double r1175427 = r1175419 * r1175423;
double r1175428 = r1175422 * r1175420;
double r1175429 = r1175427 + r1175428;
double r1175430 = sin(r1175429);
double r1175431 = r1175426 * r1175430;
return r1175431;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r1175432 = y_im;
double r1175433 = x_re;
double r1175434 = x_im;
double r1175435 = hypot(r1175433, r1175434);
double r1175436 = log(r1175435);
double r1175437 = atan2(r1175434, r1175433);
double r1175438 = y_re;
double r1175439 = r1175437 * r1175438;
double r1175440 = fma(r1175432, r1175436, r1175439);
double r1175441 = sin(r1175440);
double r1175442 = log1p(r1175441);
double r1175443 = expm1(r1175442);
double r1175444 = r1175437 * r1175432;
double r1175445 = cbrt(r1175444);
double r1175446 = cbrt(r1175445);
double r1175447 = r1175446 * r1175446;
double r1175448 = r1175447 * r1175446;
double r1175449 = r1175445 * r1175448;
double r1175450 = r1175449 * r1175445;
double r1175451 = r1175438 * r1175436;
double r1175452 = r1175450 - r1175451;
double r1175453 = exp(r1175452);
double r1175454 = r1175443 / r1175453;
return r1175454;
}



Bits error versus x.re



Bits error versus x.im



Bits error versus y.re



Bits error versus y.im
Initial program 32.7
Simplified3.4
rmApplied add-cube-cbrt3.4
rmApplied add-cube-cbrt3.4
rmApplied expm1-log1p-u3.4
Final simplification3.4
herbie shell --seed 2019172 +o rules:numerics
(FPCore (x.re x.im y.re y.im)
:name "powComplex, imaginary part"
(* (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)))))