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 \sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}}\right) \cdot \left(\sqrt[3]{\tan^{-1}_* \frac{x.im}{x.re}} \cdot y.im\right)} \cdot \sin \left(\log \left(1 \cdot \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 r14948 = x_re;
double r14949 = r14948 * r14948;
double r14950 = x_im;
double r14951 = r14950 * r14950;
double r14952 = r14949 + r14951;
double r14953 = sqrt(r14952);
double r14954 = log(r14953);
double r14955 = y_re;
double r14956 = r14954 * r14955;
double r14957 = atan2(r14950, r14948);
double r14958 = y_im;
double r14959 = r14957 * r14958;
double r14960 = r14956 - r14959;
double r14961 = exp(r14960);
double r14962 = r14954 * r14958;
double r14963 = r14957 * r14955;
double r14964 = r14962 + r14963;
double r14965 = sin(r14964);
double r14966 = r14961 * r14965;
return r14966;
}
double f(double x_re, double x_im, double y_re, double y_im) {
double r14967 = x_re;
double r14968 = x_im;
double r14969 = hypot(r14967, r14968);
double r14970 = log(r14969);
double r14971 = y_re;
double r14972 = r14970 * r14971;
double r14973 = atan2(r14968, r14967);
double r14974 = cbrt(r14973);
double r14975 = r14974 * r14974;
double r14976 = y_im;
double r14977 = r14974 * r14976;
double r14978 = r14975 * r14977;
double r14979 = r14972 - r14978;
double r14980 = exp(r14979);
double r14981 = 1.0;
double r14982 = r14981 * r14969;
double r14983 = log(r14982);
double r14984 = r14983 * r14976;
double r14985 = r14973 * r14971;
double r14986 = r14984 + r14985;
double r14987 = sin(r14986);
double r14988 = r14980 * r14987;
return r14988;
}



Bits error versus x.re



Bits error versus x.im



Bits error versus y.re



Bits error versus y.im
Results
Initial program 33.1
rmApplied *-un-lft-identity33.1
Applied sqrt-prod33.1
Simplified33.1
Simplified19.6
rmApplied hypot-def3.5
rmApplied add-cube-cbrt3.5
Applied associate-*l*3.5
Final simplification3.5
herbie shell --seed 2020001 +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)))))