\frac{\tan^{-1}_* \frac{im}{re}}{\log 10}\frac{1}{\left(\sqrt[3]{\frac{\log 10}{\tan^{-1}_* \frac{im}{re}}} \cdot \left(\sqrt[3]{\frac{\sqrt{\log 10}}{1}} \cdot \sqrt[3]{\frac{\sqrt{\log 10}}{\tan^{-1}_* \frac{im}{re}}}\right)\right) \cdot \sqrt[3]{\frac{\log 10}{\tan^{-1}_* \frac{im}{re}}}}double code(double re, double im) {
return (atan2(im, re) / log(10.0));
}
double code(double re, double im) {
return (1.0 / ((cbrt((log(10.0) / atan2(im, re))) * (cbrt((sqrt(log(10.0)) / 1.0)) * cbrt((sqrt(log(10.0)) / atan2(im, re))))) * cbrt((log(10.0) / atan2(im, re)))));
}



Bits error versus re



Bits error versus im
Results
Initial program 0.8
rmApplied clear-num1.0
rmApplied add-cube-cbrt0.8
rmApplied *-un-lft-identity0.8
Applied add-sqr-sqrt0.8
Applied times-frac0.8
Applied cbrt-prod0.8
Final simplification0.8
herbie shell --seed 2020075
(FPCore (re im)
:name "math.log10 on complex, imaginary part"
:precision binary64
(/ (atan2 im re) (log 10)))