\frac{1}{\left(\left(x \cdot x\right) \cdot x\right) \cdot x}\frac{\frac{1}{x}}{{x}^{3}}double code(double x) {
return ((double) (1.0 / ((double) (((double) (((double) (x * x)) * x)) * x))));
}
double code(double x) {
return ((double) (((double) (1.0 / x)) / ((double) pow(x, 3.0))));
}



Bits error versus x
Results
Initial program 0.4
Simplified0.1
Final simplification0.1
herbie shell --seed 2020152
(FPCore (x)
:name "(/ 1 (* (* (* x x) x) x))"
:precision binary64
(/ 1.0 (* (* (* x x) x) x)))