x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r151900 = x;
double r151901 = y;
double r151902 = sin(r151901);
double r151903 = r151902 / r151901;
double r151904 = r151900 * r151903;
return r151904;
}
double f(double x, double y) {
double r151905 = x;
double r151906 = y;
double r151907 = sin(r151906);
double r151908 = r151906 / r151907;
double r151909 = r151905 / r151908;
return r151909;
}



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