\left(x \cdot 27\right) \cdot y
27 \cdot \left(x \cdot y\right)
double f(double x, double y) {
double r236836 = x;
double r236837 = 27.0;
double r236838 = r236836 * r236837;
double r236839 = y;
double r236840 = r236838 * r236839;
return r236840;
}
double f(double x, double y) {
double r236841 = 27.0;
double r236842 = x;
double r236843 = y;
double r236844 = r236842 * r236843;
double r236845 = r236841 * r236844;
return r236845;
}



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