\left(x \cdot 27\right) \cdot y
27 \cdot \left(x \cdot y\right)
double f(double x, double y) {
double r279221 = x;
double r279222 = 27.0;
double r279223 = r279221 * r279222;
double r279224 = y;
double r279225 = r279223 * r279224;
return r279225;
}
double f(double x, double y) {
double r279226 = 27.0;
double r279227 = x;
double r279228 = y;
double r279229 = r279227 * r279228;
double r279230 = r279226 * r279229;
return r279230;
}



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