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)\mathsf{expm1}\left(\mathsf{log1p}\left(\cos \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)\right) \cdot e^{\mathsf{fma}\left(y.re, \log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), -\left(\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}} \cdot \left(\left(\sqrt[3]{\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}}} \cdot \sqrt[3]{\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}}}\right) \cdot \sqrt[3]{\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}}}\right)\right) \cdot \left(\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}} \cdot y.im\right)\right)}double f(double x_re, double x_im, double y_re, double y_im) {
double r22958 = x_re;
double r22959 = r22958 * r22958;
double r22960 = x_im;
double r22961 = r22960 * r22960;
double r22962 = r22959 + r22961;
double r22963 = sqrt(r22962);
double r22964 = log(r22963);
double r22965 = y_re;
double r22966 = r22964 * r22965;
double r22967 = atan2(r22960, r22958);
double r22968 = y_im;
double r22969 = r22967 * r22968;
double r22970 = r22966 - r22969;
double r22971 = exp(r22970);
double r22972 = r22964 * r22968;
double r22973 = r22967 * r22965;
double r22974 = r22972 + r22973;
double r22975 = cos(r22974);
double r22976 = r22971 * r22975;
return r22976;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r22977 = x_re;
double r22978 = x_im;
double r22979 = hypot(r22977, r22978);
double r22980 = log(r22979);
double r22981 = y_im;
double r22982 = atan2(r22978, r22977);
double r22983 = y_re;
double r22984 = r22982 * r22983;
double r22985 = fma(r22980, r22981, r22984);
double r22986 = cos(r22985);
double r22987 = log1p(r22986);
double r22988 = expm1(r22987);
double r22989 = cbrt(r22982);
double r22990 = cbrt(r22989);
double r22991 = r22990 * r22990;
double r22992 = r22991 * r22990;
double r22993 = r22989 * r22992;
double r22994 = r22989 * r22981;
double r22995 = r22993 * r22994;
double r22996 = -r22995;
double r22997 = fma(r22983, r22980, r22996);
double r22998 = exp(r22997);
double r22999 = r22988 * r22998;
return r22999;
}



Bits error versus x.re



Bits error versus x.im



Bits error versus y.re



Bits error versus y.im
Initial program 33.2
Simplified8.5
rmApplied add-exp-log8.5
Applied pow-exp8.5
Applied div-exp3.2
Simplified3.2
rmApplied add-cube-cbrt3.2
Applied associate-*l*3.2
rmApplied add-cube-cbrt3.2
rmApplied expm1-log1p-u3.2
Final simplification3.2
herbie shell --seed 2019326 +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)))))