Average Error: 0.0 → 0.0
Time: 3.4s
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 r9769841 = x;
        double r9769842 = y;
        double r9769843 = r9769841 * r9769842;
        double r9769844 = r9769843 * r9769842;
        double r9769845 = exp(r9769844);
        return r9769845;
}

double f(double x, double y) {
        double r9769846 = x;
        double r9769847 = y;
        double r9769848 = r9769846 * r9769847;
        double r9769849 = r9769848 * r9769847;
        double r9769850 = exp(r9769849);
        return r9769850;
}

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 2019179 +o rules:numerics
(FPCore (x y)
  :name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
  (exp (* (* x y) y)))