Average Error: 0.1 → 0.2
Time: 14.9s
Precision: 64
\[x \cdot \frac{\sin y}{y}\]
\[\frac{x}{\frac{y}{\sin y}}\]
x \cdot \frac{\sin y}{y}
\frac{x}{\frac{y}{\sin y}}
double f(double x, double y) {
        double r7374926 = x;
        double r7374927 = y;
        double r7374928 = sin(r7374927);
        double r7374929 = r7374928 / r7374927;
        double r7374930 = r7374926 * r7374929;
        return r7374930;
}

double f(double x, double y) {
        double r7374931 = x;
        double r7374932 = y;
        double r7374933 = sin(r7374932);
        double r7374934 = r7374932 / r7374933;
        double r7374935 = r7374931 / r7374934;
        return r7374935;
}

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

    \[x \cdot \frac{\sin y}{y}\]
  2. Using strategy rm
  3. Applied clear-num0.2

    \[\leadsto x \cdot \color{blue}{\frac{1}{\frac{y}{\sin y}}}\]
  4. Using strategy rm
  5. Applied un-div-inv0.2

    \[\leadsto \color{blue}{\frac{x}{\frac{y}{\sin y}}}\]
  6. Final simplification0.2

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

Reproduce

herbie shell --seed 2019163 
(FPCore (x y)
  :name "Linear.Quaternion:$cexp from linear-1.19.1.3"
  (* x (/ (sin y) y)))