Average Error: 2.0 → 2.0
Time: 49.7s
Precision: 64
Internal Precision: 320
\[\frac{a \cdot {k}^{m}}{\left(1 + 10 \cdot k\right) + k \cdot k}\]
\[{k}^{m} \cdot \frac{a}{1 + \left(10 + k\right) \cdot k}\]

Error

Bits error versus a

Bits error versus k

Bits error versus m

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 2.0

    \[\frac{a \cdot {k}^{m}}{\left(1 + 10 \cdot k\right) + k \cdot k}\]
  2. Applied simplify2.0

    \[\leadsto \color{blue}{\frac{{k}^{m} \cdot a}{1 + \left(10 + k\right) \cdot k}}\]
  3. Using strategy rm
  4. Applied *-un-lft-identity2.0

    \[\leadsto \frac{{k}^{m} \cdot a}{\color{blue}{1 \cdot \left(1 + \left(10 + k\right) \cdot k\right)}}\]
  5. Applied times-frac2.0

    \[\leadsto \color{blue}{\frac{{k}^{m}}{1} \cdot \frac{a}{1 + \left(10 + k\right) \cdot k}}\]
  6. Applied simplify2.0

    \[\leadsto \color{blue}{{k}^{m}} \cdot \frac{a}{1 + \left(10 + k\right) \cdot k}\]

Runtime

Time bar (total: 49.7s)Debug logProfile

herbie shell --seed 2018198 
(FPCore (a k m)
  :name "Falkner and Boettcher, Appendix A"
  (/ (* a (pow k m)) (+ (+ 1 (* 10 k)) (* k k))))