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



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