x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r104589 = x;
double r104590 = y;
double r104591 = sin(r104590);
double r104592 = r104591 / r104590;
double r104593 = r104589 * r104592;
return r104593;
}
double f(double x, double y) {
double r104594 = x;
double r104595 = y;
double r104596 = sin(r104595);
double r104597 = r104595 / r104596;
double r104598 = r104594 / r104597;
return r104598;
}



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