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)\left(\sqrt[3]{\log \left(e^{\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 \left(\sqrt[3]{\log \left(e^{\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 \sqrt[3]{\log \left(e^{\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)}\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 r558933 = x_re;
double r558934 = r558933 * r558933;
double r558935 = x_im;
double r558936 = r558935 * r558935;
double r558937 = r558934 + r558936;
double r558938 = sqrt(r558937);
double r558939 = log(r558938);
double r558940 = y_re;
double r558941 = r558939 * r558940;
double r558942 = atan2(r558935, r558933);
double r558943 = y_im;
double r558944 = r558942 * r558943;
double r558945 = r558941 - r558944;
double r558946 = exp(r558945);
double r558947 = r558939 * r558943;
double r558948 = r558942 * r558940;
double r558949 = r558947 + r558948;
double r558950 = cos(r558949);
double r558951 = r558946 * r558950;
return r558951;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r558952 = y_im;
double r558953 = x_re;
double r558954 = x_im;
double r558955 = hypot(r558953, r558954);
double r558956 = log(r558955);
double r558957 = y_re;
double r558958 = atan2(r558954, r558953);
double r558959 = r558957 * r558958;
double r558960 = fma(r558952, r558956, r558959);
double r558961 = cos(r558960);
double r558962 = exp(r558961);
double r558963 = log(r558962);
double r558964 = cbrt(r558963);
double r558965 = r558964 * r558964;
double r558966 = r558964 * r558965;
double r558967 = r558956 * r558957;
double r558968 = r558952 * r558958;
double r558969 = r558967 - r558968;
double r558970 = exp(r558969);
double r558971 = r558966 * r558970;
return r558971;
}



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-log-exp3.4
rmApplied add-cube-cbrt3.4
Final simplification3.4
herbie shell --seed 2019156 +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)))))