x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r133611 = x;
double r133612 = y;
double r133613 = sin(r133612);
double r133614 = r133613 / r133612;
double r133615 = r133611 * r133614;
return r133615;
}
double f(double x, double y) {
double r133616 = x;
double r133617 = y;
double r133618 = sin(r133617);
double r133619 = r133617 / r133618;
double r133620 = r133616 / r133619;
return r133620;
}



Bits error versus x



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