Average Error: 0.0 → 0.0
Time: 3.6s
Precision: binary64
\[\cos x \cdot \frac{\sinh y}{y}\]
\[\cos x \cdot \frac{\sinh y}{y}\]
\cos x \cdot \frac{\sinh y}{y}
\cos x \cdot \frac{\sinh y}{y}
double code(double x, double y) {
	return ((double) (((double) cos(x)) * ((double) (((double) sinh(y)) / y))));
}
double code(double x, double y) {
	return ((double) (((double) cos(x)) * ((double) (((double) sinh(y)) / y))));
}

Error

Bits error versus x

Bits error versus y

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.0

    \[\cos x \cdot \frac{\sinh y}{y}\]
  2. Final simplification0.0

    \[\leadsto \cos x \cdot \frac{\sinh y}{y}\]

Reproduce

herbie shell --seed 2020150 
(FPCore (x y)
  :name "Linear.Quaternion:$csin from linear-1.19.1.3"
  :precision binary64
  (* (cos x) (/ (sinh y) y)))