\sqrt{{x}^{2} + {x}^{2}}\left(\sqrt[3]{\sqrt[3]{\sqrt{2}}} \cdot \sqrt[3]{\sqrt[3]{\sqrt{2}}}\right) \cdot \left(\left|x\right| \cdot {\left(\sqrt[3]{\sqrt{2}}\right)}^{2.3333333333333335}\right)(FPCore (x) :precision binary64 (sqrt (+ (pow x 2.0) (pow x 2.0))))
(FPCore (x) :precision binary64 (* (* (cbrt (cbrt (sqrt 2.0))) (cbrt (cbrt (sqrt 2.0)))) (* (fabs x) (pow (cbrt (sqrt 2.0)) 2.3333333333333335))))
double code(double x) {
return sqrt(pow(x, 2.0) + pow(x, 2.0));
}
double code(double x) {
return (cbrt(cbrt(sqrt(2.0))) * cbrt(cbrt(sqrt(2.0)))) * (fabs(x) * pow(cbrt(sqrt(2.0)), 2.3333333333333335));
}



Bits error versus x
Results
Initial program 30.3
Simplified30.3
rmApplied sqrt-prod_binary6430.4
Simplified0.4
rmApplied add-cube-cbrt_binary640.4
Applied associate-*l*_binary640.4
Simplified0.4
rmApplied associate-*l*_binary640.6
Simplified0.4
rmApplied add-cube-cbrt_binary640.4
Applied associate-*l*_binary640.4
Simplified0.3
Final simplification0.3
herbie shell --seed 2020253
(FPCore (x)
:name "sqrt E"
:precision binary64
(sqrt (+ (pow x 2.0) (pow x 2.0))))