x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r175628 = x;
double r175629 = y;
double r175630 = sin(r175629);
double r175631 = r175630 / r175629;
double r175632 = r175628 * r175631;
return r175632;
}
double f(double x, double y) {
double r175633 = x;
double r175634 = y;
double r175635 = sin(r175634);
double r175636 = r175634 / r175635;
double r175637 = r175633 / r175636;
return r175637;
}



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 2020002
(FPCore (x y)
:name "Linear.Quaternion:$cexp from linear-1.19.1.3"
:precision binary64
(* x (/ (sin y) y)))