Average Error: 0.0 → 0.0
Time: 6.0s
Precision: 64
\[\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 (cos(x) * (sinh(y) / y));
}
double code(double x, double y) {
	return (cos(x) * (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 2020091 
(FPCore (x y)
  :name "Linear.Quaternion:$csin from linear-1.19.1.3"
  :precision binary64
  (* (cos x) (/ (sinh y) y)))