x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r131409 = x;
double r131410 = y;
double r131411 = sin(r131410);
double r131412 = r131411 / r131410;
double r131413 = r131409 * r131412;
return r131413;
}
double f(double x, double y) {
double r131414 = x;
double r131415 = y;
double r131416 = sin(r131415);
double r131417 = r131415 / r131416;
double r131418 = r131414 / r131417;
return r131418;
}



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.2
Final simplification0.2
herbie shell --seed 2020034 +o rules:numerics
(FPCore (x y)
:name "Linear.Quaternion:$cexp from linear-1.19.1.3"
:precision binary64
(* x (/ (sin y) y)))