\sqrt[3]{x + 1} - \sqrt[3]{x}\frac{1}{\sqrt[3]{x} \cdot \sqrt[3]{x} + \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 x)) (* (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) cbrt(x)))) + ((double) (((double) cbrt(((double) (1.0 + x)))) * ((double) (((double) cbrt(x)) + ((double) cbrt(((double) (1.0 + x)))))))))));
}



Bits error versus x
Results
Initial program Error: 29.5 bits
rmApplied flip3--Error: 29.5 bits
SimplifiedError: 0.5 bits
SimplifiedError: 0.5 bits
Final simplificationError: 0.5 bits
herbie shell --seed 2020204
(FPCore (x)
:name "2cbrt (problem 3.3.4)"
:precision binary64
(- (cbrt (+ x 1.0)) (cbrt x)))