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



Bits error versus x
Results
Initial program 30.6
rmApplied sqrt-prod_binary64_9430.8
Simplified0.4
rmApplied add-cube-cbrt_binary64_1130.4
Applied associate-*l*_binary64_190.4
Simplified0.4
rmApplied associate-*l*_binary64_190.6
Simplified0.4
Final simplification0.4
herbie shell --seed 2021176
(FPCore (x)
:name "sqrt C"
:precision binary64
(sqrt (* 2.0 (* x x))))