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



Bits error versus x



Bits error versus y
Results
Initial program Error: 0.0 bits
rmApplied add-sqr-sqrtError: 0.0 bits
Applied associate-*r*Error: 0.0 bits
Final simplificationError: 0.0 bits
herbie shell --seed 2020203
(FPCore (x y)
:name "Linear.Quaternion:$csin from linear-1.19.1.3"
:precision binary64
(* (cos x) (/ (sinh y) y)))