\sqrt[3]{x + 1} - \sqrt[3]{x}\frac{1}{\sqrt[3]{x} \cdot \left(\sqrt[3]{\sqrt[3]{x}} \cdot {\left(\sqrt[3]{\sqrt[3]{x}}\right)}^{2}\right) + \sqrt[3]{1 + x} \cdot \left(\sqrt[3]{x} + \sqrt[3]{1 + x}\right)}(FPCore (x) :precision binary64 (- (cbrt (+ x 1.0)) (cbrt x)))
(FPCore (x) :precision binary64 (/ 1.0 (+ (* (cbrt x) (* (cbrt (cbrt x)) (pow (cbrt (cbrt x)) 2.0))) (* (cbrt (+ 1.0 x)) (+ (cbrt x) (cbrt (+ 1.0 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(x)) * ((double) (((double) cbrt(((double) cbrt(x)))) * ((double) pow(((double) cbrt(((double) cbrt(x)))), 2.0)))))) + ((double) (((double) cbrt(((double) (1.0 + x)))) * ((double) (((double) cbrt(x)) + ((double) cbrt(((double) (1.0 + x)))))))))));
}



Bits error versus x
Results
Initial program 29.7
rmApplied flip3--29.6
Simplified0.5
Simplified0.5
rmApplied add-cube-cbrt0.6
Simplified0.6
Final simplification0.6
herbie shell --seed 2020198
(FPCore (x)
:name "2cbrt (problem 3.3.4)"
:precision binary64
(- (cbrt (+ x 1.0)) (cbrt x)))