\frac{a \cdot {k}^{m}}{\left(1 + 10 \cdot k\right) + k \cdot k}a \cdot \left({\left(\sqrt[3]{k} \cdot \sqrt[3]{k}\right)}^{m} \cdot \frac{{\left(\sqrt[3]{k}\right)}^{m}}{1 + k \cdot \left(k + 10\right)}\right)(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 (+ k 10.0)))))))
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 * (k + 10.0)))));
}



Bits error versus a



Bits error versus k



Bits error versus m
Results
Initial program 2.2
Simplified2.1
rmApplied *-un-lft-identity_binary642.1
Applied times-frac_binary642.1
Simplified2.1
rmApplied *-un-lft-identity_binary642.1
Applied add-cube-cbrt_binary642.1
Applied unpow-prod-down_binary642.1
Applied times-frac_binary642.1
Simplified2.1
Final simplification2.1
herbie shell --seed 2020224
(FPCore (a k m)
:name "Falkner and Boettcher, Appendix A"
:precision binary64
(/ (* a (pow k m)) (+ (+ 1.0 (* 10.0 k)) (* k k))))