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 \sin \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)e^{\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right) \cdot y.re - \left(\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im} \cdot \sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im}\right) \cdot \sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re} \cdot y.im}} \cdot \sin \left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right) \cdot y.im + \tan^{-1}_* \frac{x.im}{x.re} \cdot y.re\right)double f(double x_re, double x_im, double y_re, double y_im) {
double r14731 = x_re;
double r14732 = r14731 * r14731;
double r14733 = x_im;
double r14734 = r14733 * r14733;
double r14735 = r14732 + r14734;
double r14736 = sqrt(r14735);
double r14737 = log(r14736);
double r14738 = y_re;
double r14739 = r14737 * r14738;
double r14740 = atan2(r14733, r14731);
double r14741 = y_im;
double r14742 = r14740 * r14741;
double r14743 = r14739 - r14742;
double r14744 = exp(r14743);
double r14745 = r14737 * r14741;
double r14746 = r14740 * r14738;
double r14747 = r14745 + r14746;
double r14748 = sin(r14747);
double r14749 = r14744 * r14748;
return r14749;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r14750 = x_re;
double r14751 = x_im;
double r14752 = hypot(r14750, r14751);
double r14753 = log(r14752);
double r14754 = y_re;
double r14755 = r14753 * r14754;
double r14756 = atan2(r14751, r14750);
double r14757 = y_im;
double r14758 = r14756 * r14757;
double r14759 = cbrt(r14758);
double r14760 = r14759 * r14759;
double r14761 = r14760 * r14759;
double r14762 = r14755 - r14761;
double r14763 = exp(r14762);
double r14764 = r14753 * r14757;
double r14765 = r14756 * r14754;
double r14766 = r14764 + r14765;
double r14767 = sin(r14766);
double r14768 = r14763 * r14767;
return r14768;
}



Bits error versus x.re



Bits error versus x.im



Bits error versus y.re



Bits error versus y.im
Results
Initial program 34.0
rmApplied hypot-def20.2
rmApplied hypot-def3.5
rmApplied add-cube-cbrt3.5
Final simplification3.5
herbie shell --seed 2020002 +o rules:numerics
(FPCore (x.re x.im y.re y.im)
:name "powComplex, imaginary part"
:precision binary64
(* (exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) (* (atan2 x.im x.re) y.im))) (sin (+ (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.im) (* (atan2 x.im x.re) y.re)))))