Average Error: 0.0 → 0.0
Time: 8.8s
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 r229540 = x;
        double r229541 = y;
        double r229542 = r229540 * r229541;
        double r229543 = r229542 * r229541;
        double r229544 = exp(r229543);
        return r229544;
}

double f(double x, double y) {
        double r229545 = x;
        double r229546 = y;
        double r229547 = r229545 * r229546;
        double r229548 = r229547 * r229546;
        double r229549 = exp(r229548);
        return r229549;
}

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 2019323 
(FPCore (x y)
  :name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
  :precision binary64
  (exp (* (* x y) y)))