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



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied add-cube-cbrt_binary640.0
Applied associate-*r*_binary640.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2020260
(FPCore (x y)
:name "Linear.Quaternion:$csin from linear-1.19.1.3"
:precision binary64
(* (cos x) (/ (sinh y) y)))