Average Error: 0.0 → 0.0
Time: 9.4s
Precision: 64
\[e^{\left(x \cdot y\right) \cdot y}\]
\[e^{\left(y \cdot x\right) \cdot y}\]
e^{\left(x \cdot y\right) \cdot y}
e^{\left(y \cdot x\right) \cdot y}
double f(double x, double y) {
        double r5292063 = x;
        double r5292064 = y;
        double r5292065 = r5292063 * r5292064;
        double r5292066 = r5292065 * r5292064;
        double r5292067 = exp(r5292066);
        return r5292067;
}

double f(double x, double y) {
        double r5292068 = y;
        double r5292069 = x;
        double r5292070 = r5292068 * r5292069;
        double r5292071 = r5292070 * r5292068;
        double r5292072 = exp(r5292071);
        return r5292072;
}

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(y \cdot x\right) \cdot y}\]

Reproduce

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