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 \cos \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)\sqrt[3]{\left(\cos \left(\mathsf{fma}\left(y.im, \log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\right)\right) \cdot \cos \left(\mathsf{fma}\left(y.im, \log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\right)\right)\right) \cdot \cos \left(\mathsf{fma}\left(y.im, \log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\right)\right)} \cdot e^{\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right) \cdot y.re - y.im \cdot \tan^{-1}_* \frac{x.im}{x.re}}double f(double x_re, double x_im, double y_re, double y_im) {
double r1330702 = x_re;
double r1330703 = r1330702 * r1330702;
double r1330704 = x_im;
double r1330705 = r1330704 * r1330704;
double r1330706 = r1330703 + r1330705;
double r1330707 = sqrt(r1330706);
double r1330708 = log(r1330707);
double r1330709 = y_re;
double r1330710 = r1330708 * r1330709;
double r1330711 = atan2(r1330704, r1330702);
double r1330712 = y_im;
double r1330713 = r1330711 * r1330712;
double r1330714 = r1330710 - r1330713;
double r1330715 = exp(r1330714);
double r1330716 = r1330708 * r1330712;
double r1330717 = r1330711 * r1330709;
double r1330718 = r1330716 + r1330717;
double r1330719 = cos(r1330718);
double r1330720 = r1330715 * r1330719;
return r1330720;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r1330721 = y_im;
double r1330722 = x_re;
double r1330723 = x_im;
double r1330724 = hypot(r1330722, r1330723);
double r1330725 = log(r1330724);
double r1330726 = y_re;
double r1330727 = atan2(r1330723, r1330722);
double r1330728 = r1330726 * r1330727;
double r1330729 = fma(r1330721, r1330725, r1330728);
double r1330730 = cos(r1330729);
double r1330731 = r1330730 * r1330730;
double r1330732 = r1330731 * r1330730;
double r1330733 = cbrt(r1330732);
double r1330734 = r1330725 * r1330726;
double r1330735 = r1330721 * r1330727;
double r1330736 = r1330734 - r1330735;
double r1330737 = exp(r1330736);
double r1330738 = r1330733 * r1330737;
return r1330738;
}



Bits error versus x.re



Bits error versus x.im



Bits error versus y.re



Bits error versus y.im
Initial program 32.8
Simplified3.4
rmApplied add-cbrt-cube3.4
Final simplification3.4
herbie shell --seed 2019165 +o rules:numerics
(FPCore (x.re x.im y.re y.im)
:name "powComplex, real part"
(* (exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) (* (atan2 x.im x.re) y.im))) (cos (+ (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.im) (* (atan2 x.im x.re) y.re)))))