x \cdot \frac{\sin y}{y}x \cdot \frac{\sin y}{y}double f(double x, double y) {
double r185536 = x;
double r185537 = y;
double r185538 = sin(r185537);
double r185539 = r185538 / r185537;
double r185540 = r185536 * r185539;
return r185540;
}
double f(double x, double y) {
double r185541 = x;
double r185542 = y;
double r185543 = sin(r185542);
double r185544 = r185543 / r185542;
double r185545 = r185541 * r185544;
return r185545;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.1
Final simplification0.1
herbie shell --seed 2019209
(FPCore (x y)
:name "Linear.Quaternion:$cexp from linear-1.19.1.3"
:precision binary64
(* x (/ (sin y) y)))