x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r99975 = x;
double r99976 = y;
double r99977 = sin(r99976);
double r99978 = r99977 / r99976;
double r99979 = r99975 * r99978;
return r99979;
}
double f(double x, double y) {
double r99980 = x;
double r99981 = y;
double r99982 = sin(r99981);
double r99983 = r99981 / r99982;
double r99984 = r99980 / r99983;
return r99984;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.1
rmApplied clear-num0.2
rmApplied pow10.2
Applied pow10.2
Applied pow-prod-down0.2
Simplified0.1
Final simplification0.1
herbie shell --seed 2019208 +o rules:numerics
(FPCore (x y)
:name "Linear.Quaternion:$cexp from linear-1.19.1.3"
:precision binary64
(* x (/ (sin y) y)))