x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r120949 = x;
double r120950 = y;
double r120951 = sin(r120950);
double r120952 = r120951 / r120950;
double r120953 = r120949 * r120952;
return r120953;
}
double f(double x, double y) {
double r120954 = x;
double r120955 = y;
double r120956 = sin(r120955);
double r120957 = r120955 / r120956;
double r120958 = r120954 / r120957;
return r120958;
}



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