Average Error: 0.5 → 0.2
Time: 18.9s
Precision: 64
\[\frac{1}{x \cdot x}\]
\[\frac{\frac{1}{x}}{x}\]
\frac{1}{x \cdot x}
\frac{\frac{1}{x}}{x}
double f(double x) {
        double r611809 = 1.0;
        double r611810 = x;
        double r611811 = r611810 * r611810;
        double r611812 = r611809 / r611811;
        return r611812;
}

double f(double x) {
        double r611813 = 1.0;
        double r611814 = x;
        double r611815 = r611813 / r611814;
        double r611816 = r611815 / r611814;
        return r611816;
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original0.5
Target0.2
Herbie0.2
\[\frac{\frac{1}{x}}{x}\]

Derivation

  1. Initial program 0.5

    \[\frac{1}{x \cdot x}\]
  2. Using strategy rm
  3. Applied associate-/r*0.2

    \[\leadsto \color{blue}{\frac{\frac{1}{x}}{x}}\]
  4. Final simplification0.2

    \[\leadsto \frac{\frac{1}{x}}{x}\]

Reproduce

herbie shell --seed 2020043 +o rules:numerics
(FPCore (x)
  :name "Numeric.SpecFunctions:$slogFactorial from math-functions-0.1.5.2, A"
  :precision binary64

  :herbie-target
  (/ (/ 1 x) x)

  (/ 1 (* x x)))