x \cdot \frac{\sin y}{y}\frac{x}{\frac{y}{\sin y}}double f(double x, double y) {
double r114099 = x;
double r114100 = y;
double r114101 = sin(r114100);
double r114102 = r114101 / r114100;
double r114103 = r114099 * r114102;
return r114103;
}
double f(double x, double y) {
double r114104 = x;
double r114105 = y;
double r114106 = sin(r114105);
double r114107 = r114105 / r114106;
double r114108 = r114104 / r114107;
return r114108;
}



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