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



Bits error versus a



Bits error versus k



Bits error versus m
Results
Initial program 2.1
Simplified2.0
rmApplied add-sqr-sqrt2.1
Applied add-cube-cbrt2.1
Applied unpow-prod-down2.1
Applied times-frac2.1
Applied associate-*l*2.1
Final simplification2.1
herbie shell --seed 2020091
(FPCore (a k m)
:name "Falkner and Boettcher, Appendix A"
:precision binary64
(/ (* a (pow k m)) (+ (+ 1 (* 10 k)) (* k k))))