Average Error: 0.0 → 0.0
Time: 31.6s
Precision: 64
\[\sin x \cdot \frac{\sinh y}{y}\]
\[\frac{\sinh y}{y} \cdot \sin x\]
\sin x \cdot \frac{\sinh y}{y}
\frac{\sinh y}{y} \cdot \sin x
double f(double x, double y) {
        double r107235 = x;
        double r107236 = sin(r107235);
        double r107237 = y;
        double r107238 = sinh(r107237);
        double r107239 = r107238 / r107237;
        double r107240 = r107236 * r107239;
        return r107240;
}

double f(double x, double y) {
        double r107241 = y;
        double r107242 = sinh(r107241);
        double r107243 = r107242 / r107241;
        double r107244 = x;
        double r107245 = sin(r107244);
        double r107246 = r107243 * r107245;
        return r107246;
}

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

    \[\sin x \cdot \frac{\sinh y}{y}\]
  2. Using strategy rm
  3. Applied pow10.0

    \[\leadsto \sin x \cdot \color{blue}{{\left(\frac{\sinh y}{y}\right)}^{1}}\]
  4. Final simplification0.0

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

Reproduce

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