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



Bits error versus x
Results
Initial program 29.5
Applied flip3--_binary6429.5
Simplified0.5
Simplified33.1
Applied add-sqr-sqrt_binary6433.1
Simplified32.9
Simplified0.5
Final simplification0.5
herbie shell --seed 2021215
(FPCore (x)
:name "2cbrt (problem 3.3.4)"
:precision binary64
(- (cbrt (+ x 1.0)) (cbrt x)))