Average Error: 0.0 → 0.0
Time: 3.0s
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 r4982141 = x;
        double r4982142 = y;
        double r4982143 = r4982141 * r4982142;
        double r4982144 = r4982143 * r4982142;
        double r4982145 = exp(r4982144);
        return r4982145;
}

double f(double x, double y) {
        double r4982146 = x;
        double r4982147 = y;
        double r4982148 = r4982146 * r4982147;
        double r4982149 = r4982148 * r4982147;
        double r4982150 = exp(r4982149);
        return r4982150;
}

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