\frac{\tan^{-1}_* \frac{im}{re}}{\log 10}\sqrt{\frac{1}{\sqrt{\log 10}}} \cdot \left(\tan^{-1}_* \frac{im}{re} \cdot {\left(\frac{1}{\sqrt{\log 10}}\right)}^{1.5}\right)(FPCore (re im) :precision binary64 (/ (atan2 im re) (log 10.0)))
(FPCore (re im) :precision binary64 (* (sqrt (/ 1.0 (sqrt (log 10.0)))) (* (atan2 im re) (pow (/ 1.0 (sqrt (log 10.0))) 1.5))))
double code(double re, double im) {
return atan2(im, re) / log(10.0);
}
double code(double re, double im) {
return sqrt(1.0 / sqrt(log(10.0))) * (atan2(im, re) * pow((1.0 / sqrt(log(10.0))), 1.5));
}



Bits error versus re



Bits error versus im
Results
Initial program 0.9
rmApplied add-sqr-sqrt_binary640.9
Applied *-un-lft-identity_binary640.9
Applied times-frac_binary640.8
rmApplied div-inv_binary640.8
rmApplied add-sqr-sqrt_binary640.8
Applied associate-*l*_binary640.8
Simplified0.1
Final simplification0.1
herbie shell --seed 2020232
(FPCore (re im)
:name "math.log10 on complex, imaginary part"
:precision binary64
(/ (atan2 im re) (log 10.0)))