x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r106424 = x;
double r106425 = y;
double r106426 = sin(r106425);
double r106427 = r106426 / r106425;
double r106428 = r106424 * r106427;
return r106428;
}
double f(double x, double y) {
double r106429 = x;
double r106430 = y;
double r106431 = sin(r106430);
double r106432 = r106430 / r106431;
double r106433 = r106429 / r106432;
return r106433;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.1
rmApplied clear-num0.2
rmApplied *-un-lft-identity0.2
Applied associate-*l*0.2
Simplified0.1
Final simplification0.1
herbie shell --seed 2019326
(FPCore (x y)
:name "Linear.Quaternion:$cexp from linear-1.19.1.3"
:precision binary64
(* x (/ (sin y) y)))