\sqrt[3]{x + 1} - \sqrt[3]{x}\frac{1}{\sqrt[3]{1 + x} \cdot \sqrt[3]{1 + x} + \sqrt[3]{\sqrt[3]{x} \cdot \sqrt[3]{x}} \cdot \left(\sqrt[3]{\sqrt[3]{x}} \cdot \left(\sqrt[3]{1 + x} + \sqrt[3]{x}\right)\right)}(FPCore (x) :precision binary64 (- (cbrt (+ x 1.0)) (cbrt x)))
(FPCore (x)
:precision binary64
(/
1.0
(+
(* (cbrt (+ 1.0 x)) (cbrt (+ 1.0 x)))
(*
(cbrt (* (cbrt x) (cbrt x)))
(* (cbrt (cbrt x)) (+ (cbrt (+ 1.0 x)) (cbrt x)))))))double code(double x) {
return ((double) (((double) cbrt(((double) (x + 1.0)))) - ((double) cbrt(x))));
}
double code(double x) {
return (1.0 / ((double) (((double) (((double) cbrt(((double) (1.0 + x)))) * ((double) cbrt(((double) (1.0 + x)))))) + ((double) (((double) cbrt(((double) (((double) cbrt(x)) * ((double) cbrt(x)))))) * ((double) (((double) cbrt(((double) cbrt(x)))) * ((double) (((double) cbrt(((double) (1.0 + x)))) + ((double) cbrt(x)))))))))));
}



Bits error versus x
Results
Initial program 29.5
rmApplied pow1/3_binary6431.0
rmApplied flip3--_binary6431.0
Simplified17.0
Simplified16.8
rmApplied sqr-pow_binary6416.8
Simplified16.6
Simplified0.5
rmApplied add-cube-cbrt_binary640.6
Applied cbrt-prod_binary640.6
Applied associate-*l*_binary640.6
Simplified0.6
Final simplification0.6
herbie shell --seed 2020204
(FPCore (x)
:name "2cbrt (problem 3.3.4)"
:precision binary64
(- (cbrt (+ x 1.0)) (cbrt x)))