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



Bits error versus x



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