Average Error: 0 → 0
Time: 338.0ms
Precision: 64
\[\left(x \cdot 2\right) \cdot x\]
\[\left(x \cdot 2\right) \cdot x\]
\left(x \cdot 2\right) \cdot x
\left(x \cdot 2\right) \cdot x
double f(double x) {
        double r555925 = x;
        double r555926 = 2.0;
        double r555927 = r555925 * r555926;
        double r555928 = r555927 * r555925;
        return r555928;
}

double f(double x) {
        double r555929 = x;
        double r555930 = 2.0;
        double r555931 = r555929 * r555930;
        double r555932 = r555931 * r555929;
        return r555932;
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original0
Target0
Herbie0
\[\left(2 \cdot x\right) \cdot x\]

Derivation

  1. Initial program 0

    \[\left(x \cdot 2\right) \cdot x\]
  2. Final simplification0

    \[\leadsto \left(x \cdot 2\right) \cdot x\]

Reproduce

herbie shell --seed 2020042 +o rules:numerics
(FPCore (x)
  :name "Numeric.Log:$cexpm1 from log-domain-0.10.2.1, A"
  :precision binary64

  :herbie-target
  (* (* 2 x) x)

  (* (* x 2) x))