\frac{1 + \frac{2 \cdot t}{1 + t} \cdot \frac{2 \cdot t}{1 + t}}{2 + \frac{2 \cdot t}{1 + t} \cdot \frac{2 \cdot t}{1 + t}}\frac{\sqrt[3]{{\left(\mathsf{fma}\left(\frac{2 \cdot t}{1 + t}, \frac{2 \cdot t}{1 + t}, 1\right)\right)}^{3}}}{\mathsf{fma}\left(\frac{2 \cdot t}{1 + t}, \frac{2 \cdot t}{1 + t}, 2\right)}double f(double t) {
double r39467 = 1.0;
double r39468 = 2.0;
double r39469 = t;
double r39470 = r39468 * r39469;
double r39471 = r39467 + r39469;
double r39472 = r39470 / r39471;
double r39473 = r39472 * r39472;
double r39474 = r39467 + r39473;
double r39475 = r39468 + r39473;
double r39476 = r39474 / r39475;
return r39476;
}
double f(double t) {
double r39477 = 2.0;
double r39478 = t;
double r39479 = r39477 * r39478;
double r39480 = 1.0;
double r39481 = r39480 + r39478;
double r39482 = r39479 / r39481;
double r39483 = fma(r39482, r39482, r39480);
double r39484 = 3.0;
double r39485 = pow(r39483, r39484);
double r39486 = cbrt(r39485);
double r39487 = fma(r39482, r39482, r39477);
double r39488 = r39486 / r39487;
return r39488;
}



Bits error versus t
Initial program 0.0
Simplified0.0
rmApplied add-cbrt-cube0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2020047 +o rules:numerics
(FPCore (t)
:name "Kahan p13 Example 1"
:precision binary64
(/ (+ 1 (* (/ (* 2 t) (+ 1 t)) (/ (* 2 t) (+ 1 t)))) (+ 2 (* (/ (* 2 t) (+ 1 t)) (/ (* 2 t) (+ 1 t))))))