Average Error: 0.0 → 0.0
Time: 971.0ms
Precision: 64
\[e^{\left(x \cdot y\right) \cdot y}\]
\[e^{\left(x \cdot y\right) \cdot y}\]
e^{\left(x \cdot y\right) \cdot y}
e^{\left(x \cdot y\right) \cdot y}
double f(double x, double y) {
        double r197883 = x;
        double r197884 = y;
        double r197885 = r197883 * r197884;
        double r197886 = r197885 * r197884;
        double r197887 = exp(r197886);
        return r197887;
}

double f(double x, double y) {
        double r197888 = x;
        double r197889 = y;
        double r197890 = r197888 * r197889;
        double r197891 = r197890 * r197889;
        double r197892 = exp(r197891);
        return r197892;
}

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

    \[e^{\left(x \cdot y\right) \cdot y}\]
  2. Final simplification0.0

    \[\leadsto e^{\left(x \cdot y\right) \cdot y}\]

Reproduce

herbie shell --seed 2020083 +o rules:numerics
(FPCore (x y)
  :name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
  :precision binary64
  (exp (* (* x y) y)))