\frac{x \cdot x - 3}{6}\frac{1}{\frac{6}{x \cdot x - 3}}(FPCore (x) :precision binary64 (/ (- (* x x) 3.0) 6.0))
(FPCore (x) :precision binary64 (/ 1.0 (/ 6.0 (- (* x x) 3.0))))
double code(double x) {
return (((double) (((double) (x * x)) - 3.0)) / 6.0);
}
double code(double x) {
return (1.0 / (6.0 / ((double) (((double) (x * x)) - 3.0))));
}



Bits error versus x
Results
Initial program 0.2
rmApplied clear-num_binary640.2
Final simplification0.2
herbie shell --seed 2020205
(FPCore (x)
:name "Numeric.SpecFunctions:invIncompleteBetaWorker from math-functions-0.1.5.2, H"
:precision binary64
(/ (- (* x x) 3.0) 6.0))