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)\cos \left(\left(\sqrt[3]{\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)} \cdot \sqrt[3]{\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]{\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 e^{\mathsf{fma}\left(y.re, \log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), -\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\right)}double f(double x_re, double x_im, double y_re, double y_im) {
double r22025 = x_re;
double r22026 = r22025 * r22025;
double r22027 = x_im;
double r22028 = r22027 * r22027;
double r22029 = r22026 + r22028;
double r22030 = sqrt(r22029);
double r22031 = log(r22030);
double r22032 = y_re;
double r22033 = r22031 * r22032;
double r22034 = atan2(r22027, r22025);
double r22035 = y_im;
double r22036 = r22034 * r22035;
double r22037 = r22033 - r22036;
double r22038 = exp(r22037);
double r22039 = r22031 * r22035;
double r22040 = r22034 * r22032;
double r22041 = r22039 + r22040;
double r22042 = cos(r22041);
double r22043 = r22038 * r22042;
return r22043;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r22044 = x_re;
double r22045 = x_im;
double r22046 = hypot(r22044, r22045);
double r22047 = log(r22046);
double r22048 = y_im;
double r22049 = atan2(r22045, r22044);
double r22050 = y_re;
double r22051 = r22049 * r22050;
double r22052 = fma(r22047, r22048, r22051);
double r22053 = cbrt(r22052);
double r22054 = r22053 * r22053;
double r22055 = r22054 * r22053;
double r22056 = cos(r22055);
double r22057 = r22049 * r22048;
double r22058 = -r22057;
double r22059 = fma(r22050, r22047, r22058);
double r22060 = exp(r22059);
double r22061 = r22056 * r22060;
return r22061;
}



Bits error versus x.re



Bits error versus x.im



Bits error versus y.re



Bits error versus y.im
Initial program 33.4
Simplified8.8
rmApplied add-exp-log8.8
Applied pow-exp8.8
Applied div-exp3.6
Simplified3.6
rmApplied add-cube-cbrt3.6
Final simplification3.6
herbie shell --seed 2019235 +o rules:numerics
(FPCore (x.re x.im y.re y.im)
:name "powComplex, real part"
:precision binary64
(* (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)))))