Average Error: 0.1 → 0.1
Time: 5.1s
Precision: 64
\[\sin x \cdot \frac{\sinh y}{y}\]
\[\left(\sin x \cdot \left(\sqrt[3]{\frac{\sinh y}{y}} \cdot \sqrt[3]{\frac{\sinh y}{y}}\right)\right) \cdot \sqrt[3]{\frac{\sinh y}{y}}\]
\sin x \cdot \frac{\sinh y}{y}
\left(\sin x \cdot \left(\sqrt[3]{\frac{\sinh y}{y}} \cdot \sqrt[3]{\frac{\sinh y}{y}}\right)\right) \cdot \sqrt[3]{\frac{\sinh y}{y}}
double code(double x, double y) {
	return (sin(x) * (sinh(y) / y));
}
double code(double x, double y) {
	return ((sin(x) * (cbrt((sinh(y) / y)) * cbrt((sinh(y) / y)))) * cbrt((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.1

    \[\sin x \cdot \frac{\sinh y}{y}\]
  2. Using strategy rm
  3. Applied add-cube-cbrt0.1

    \[\leadsto \sin x \cdot \color{blue}{\left(\left(\sqrt[3]{\frac{\sinh y}{y}} \cdot \sqrt[3]{\frac{\sinh y}{y}}\right) \cdot \sqrt[3]{\frac{\sinh y}{y}}\right)}\]
  4. Applied associate-*r*0.1

    \[\leadsto \color{blue}{\left(\sin x \cdot \left(\sqrt[3]{\frac{\sinh y}{y}} \cdot \sqrt[3]{\frac{\sinh y}{y}}\right)\right) \cdot \sqrt[3]{\frac{\sinh y}{y}}}\]
  5. Final simplification0.1

    \[\leadsto \left(\sin x \cdot \left(\sqrt[3]{\frac{\sinh y}{y}} \cdot \sqrt[3]{\frac{\sinh y}{y}}\right)\right) \cdot \sqrt[3]{\frac{\sinh y}{y}}\]

Reproduce

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