Average Error: 0.3 → 0.3
Time: 17.5s
Precision: 64
\[\left(x \cdot 27.0\right) \cdot y\]
\[\left(x \cdot 27.0\right) \cdot y\]
\left(x \cdot 27.0\right) \cdot y
\left(x \cdot 27.0\right) \cdot y
double f(double x, double y) {
        double r13056585 = x;
        double r13056586 = 27.0;
        double r13056587 = r13056585 * r13056586;
        double r13056588 = y;
        double r13056589 = r13056587 * r13056588;
        return r13056589;
}

double f(double x, double y) {
        double r13056590 = x;
        double r13056591 = 27.0;
        double r13056592 = r13056590 * r13056591;
        double r13056593 = y;
        double r13056594 = r13056592 * r13056593;
        return r13056594;
}

Error

Bits error versus x

Bits error versus y

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.3

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

    \[\leadsto \left(x \cdot 27.0\right) \cdot y\]

Reproduce

herbie shell --seed 2019164 
(FPCore (x y)
  :name "Diagrams.Solve.Polynomial:cubForm  from diagrams-solve-0.1, F"
  (* (* x 27.0) y))