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)\log \left(e^{\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) \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 r23150 = x_re;
double r23151 = r23150 * r23150;
double r23152 = x_im;
double r23153 = r23152 * r23152;
double r23154 = r23151 + r23153;
double r23155 = sqrt(r23154);
double r23156 = log(r23155);
double r23157 = y_re;
double r23158 = r23156 * r23157;
double r23159 = atan2(r23152, r23150);
double r23160 = y_im;
double r23161 = r23159 * r23160;
double r23162 = r23158 - r23161;
double r23163 = exp(r23162);
double r23164 = r23156 * r23160;
double r23165 = r23159 * r23157;
double r23166 = r23164 + r23165;
double r23167 = cos(r23166);
double r23168 = r23163 * r23167;
return r23168;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r23169 = x_re;
double r23170 = x_im;
double r23171 = hypot(r23169, r23170);
double r23172 = log(r23171);
double r23173 = y_im;
double r23174 = atan2(r23170, r23169);
double r23175 = y_re;
double r23176 = r23174 * r23175;
double r23177 = fma(r23172, r23173, r23176);
double r23178 = cos(r23177);
double r23179 = exp(r23178);
double r23180 = log(r23179);
double r23181 = r23174 * r23173;
double r23182 = -r23181;
double r23183 = fma(r23175, r23172, r23182);
double r23184 = exp(r23183);
double r23185 = r23180 * r23184;
return r23185;
}



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.6
rmApplied add-exp-log8.6
Applied pow-exp8.6
Applied div-exp3.4
Simplified3.4
rmApplied add-log-exp3.4
Final simplification3.4
herbie shell --seed 2019325 +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)))))