\frac{a \cdot {k}^{m}}{\left(1 + 10 \cdot k\right) + k \cdot k}\frac{a}{\frac{1 + k \cdot \left(k + 10\right)}{{k}^{m}}}(FPCore (a k m) :precision binary64 (/ (* a (pow k m)) (+ (+ 1.0 (* 10.0 k)) (* k k))))
(FPCore (a k m) :precision binary64 (/ a (/ (+ 1.0 (* k (+ k 10.0))) (pow k m))))
double code(double a, double k, double m) {
return (a * pow(k, m)) / ((1.0 + (10.0 * k)) + (k * k));
}
double code(double a, double k, double m) {
return a / ((1.0 + (k * (k + 10.0))) / pow(k, m));
}



Bits error versus a



Bits error versus k



Bits error versus m
Results
Initial program 2.3
rmApplied associate-/l*_binary642.3
Simplified2.2
Final simplification2.2
herbie shell --seed 2020233
(FPCore (a k m)
:name "Falkner and Boettcher, Appendix A"
:precision binary64
(/ (* a (pow k m)) (+ (+ 1.0 (* 10.0 k)) (* k k))))