x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r130805 = x;
double r130806 = y;
double r130807 = sin(r130806);
double r130808 = r130807 / r130806;
double r130809 = r130805 * r130808;
return r130809;
}
double f(double x, double y) {
double r130810 = x;
double r130811 = y;
double r130812 = sin(r130811);
double r130813 = r130811 / r130812;
double r130814 = r130810 / r130813;
return r130814;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.1
Simplified0.1
rmApplied clear-num0.2
rmApplied *-un-lft-identity0.2
Applied *-un-lft-identity0.2
Applied times-frac0.2
Applied associate-*l*0.2
Simplified0.1
Final simplification0.1
herbie shell --seed 2019194
(FPCore (x y)
:name "Linear.Quaternion:$cexp from linear-1.19.1.3"
(* x (/ (sin y) y)))