\frac{a \cdot {k}^{m}}{\left(1 + 10 \cdot k\right) + k \cdot k}
\frac{\left(a \cdot {\left(\sqrt[3]{k} \cdot \sqrt[3]{k}\right)}^{m}\right) \cdot {\left(\sqrt[3]{k}\right)}^{m}}{\left(1 + k \cdot 10\right) + k \cdot k}
(FPCore (a k m) :precision binary64 (/ (* a (pow k m)) (+ (+ 1.0 (* 10.0 k)) (* k k))))
(FPCore (a k m) :precision binary64 (/ (* (* a (pow (* (cbrt k) (cbrt k)) m)) (pow (cbrt k) m)) (+ (+ 1.0 (* k 10.0)) (* k k))))
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 * pow((cbrt(k) * cbrt(k)), m)) * pow(cbrt(k), m)) / ((1.0 + (k * 10.0)) + (k * k));
}



Bits error versus a



Bits error versus k



Bits error versus m
Results
Initial program 1.9
rmApplied add-log-exp_binary6411.3
Applied add-log-exp_binary6411.3
Applied sum-log_binary6411.3
Applied log-prod_binary6411.3
Simplified11.3
Simplified1.9
rmApplied add-cube-cbrt_binary641.9
Applied unpow-prod-down_binary641.9
Applied associate-*r*_binary641.9
Final simplification1.9
herbie shell --seed 2021211
(FPCore (a k m)
:name "Falkner and Boettcher, Appendix A"
:precision binary64
(/ (* a (pow k m)) (+ (+ 1.0 (* 10.0 k)) (* k k))))