\sin x \cdot \frac{\sinh y}{y}\sqrt{\frac{\sinh y}{y}} \cdot \left(\sin x \cdot \sqrt{\frac{\sinh y}{y}}\right)(FPCore (x y) :precision binary64 (* (sin x) (/ (sinh y) y)))
(FPCore (x y) :precision binary64 (* (sqrt (/ (sinh y) y)) (* (sin x) (sqrt (/ (sinh y) y)))))
double code(double x, double y) {
return sin(x) * (sinh(y) / y);
}
double code(double x, double y) {
return sqrt(sinh(y) / y) * (sin(x) * sqrt(sinh(y) / y));
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied add-sqr-sqrt_binary64_28280.1
Applied associate-*r*_binary64_27460.1
Final simplification0.1
herbie shell --seed 2020342
(FPCore (x y)
:name "Linear.Quaternion:$ccos from linear-1.19.1.3"
:precision binary64
(* (sin x) (/ (sinh y) y)))