Average Error: 0.1 → 0
Time: 15.4s
Precision: 64
\[\left(x \cdot x\right) \cdot x\]
\[{x}^{3}\]
\left(x \cdot x\right) \cdot x
{x}^{3}
double f(double x) {
        double r2819343 = x;
        double r2819344 = r2819343 * r2819343;
        double r2819345 = r2819344 * r2819343;
        return r2819345;
}

double f(double x) {
        double r2819346 = x;
        double r2819347 = 3.0;
        double r2819348 = pow(r2819346, r2819347);
        return r2819348;
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original0.1
Target0
Herbie0
\[{x}^{3}\]

Derivation

  1. Initial program 0.1

    \[\left(x \cdot x\right) \cdot x\]
  2. Using strategy rm
  3. Applied pow10.1

    \[\leadsto \left(x \cdot x\right) \cdot \color{blue}{{x}^{1}}\]
  4. Applied pow20.1

    \[\leadsto \color{blue}{{x}^{2}} \cdot {x}^{1}\]
  5. Applied pow-prod-up0

    \[\leadsto \color{blue}{{x}^{\left(2 + 1\right)}}\]
  6. Simplified0

    \[\leadsto {x}^{\color{blue}{3}}\]
  7. Final simplification0

    \[\leadsto {x}^{3}\]

Reproduce

herbie shell --seed 2019132 +o rules:numerics
(FPCore (x)
  :name "math.cube on real"

  :herbie-target
  (pow x 3)

  (* (* x x) x))