\left(x \cdot 27\right) \cdot y
27 \cdot \left(x \cdot y\right)
double f(double x, double y) {
double r315830 = x;
double r315831 = 27.0;
double r315832 = r315830 * r315831;
double r315833 = y;
double r315834 = r315832 * r315833;
return r315834;
}
double f(double x, double y) {
double r315835 = 27.0;
double r315836 = x;
double r315837 = y;
double r315838 = r315836 * r315837;
double r315839 = r315835 * r315838;
return r315839;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.3
rmApplied pow10.3
Applied pow10.3
Applied pow10.3
Applied pow-prod-down0.3
Applied pow-prod-down0.3
Simplified0.3
Final simplification0.3
herbie shell --seed 2019303
(FPCore (x y)
:name "Diagrams.Solve.Polynomial:cubForm from diagrams-solve-0.1, F"
:precision binary64
(* (* x 27) y))