Average Error: 0.3 → 0.3
Time: 18.8s
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 r9792239 = x;
        double r9792240 = 27.0;
        double r9792241 = r9792239 * r9792240;
        double r9792242 = y;
        double r9792243 = r9792241 * r9792242;
        return r9792243;
}

double f(double x, double y) {
        double r9792244 = x;
        double r9792245 = 27.0;
        double r9792246 = r9792244 * r9792245;
        double r9792247 = y;
        double r9792248 = r9792246 * r9792247;
        return r9792248;
}

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 2019162 
(FPCore (x y)
  :name "Diagrams.Solve.Polynomial:cubForm  from diagrams-solve-0.1, F"
  (* (* x 27.0) y))