Average Error: 0.0 → 0.0
Time: 7.3s
Precision: 64
\[e^{\left(x \cdot y\right) \cdot y}\]
\[e^{\left(\sqrt[3]{\left(x \cdot y\right) \cdot y} \cdot \sqrt[3]{\left(x \cdot y\right) \cdot y}\right) \cdot \sqrt[3]{\left(x \cdot y\right) \cdot y}}\]
e^{\left(x \cdot y\right) \cdot y}
e^{\left(\sqrt[3]{\left(x \cdot y\right) \cdot y} \cdot \sqrt[3]{\left(x \cdot y\right) \cdot y}\right) \cdot \sqrt[3]{\left(x \cdot y\right) \cdot y}}
double f(double x, double y) {
        double r292698 = x;
        double r292699 = y;
        double r292700 = r292698 * r292699;
        double r292701 = r292700 * r292699;
        double r292702 = exp(r292701);
        return r292702;
}

double f(double x, double y) {
        double r292703 = x;
        double r292704 = y;
        double r292705 = r292703 * r292704;
        double r292706 = r292705 * r292704;
        double r292707 = cbrt(r292706);
        double r292708 = r292707 * r292707;
        double r292709 = r292708 * r292707;
        double r292710 = exp(r292709);
        return r292710;
}

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. Using strategy rm
  3. Applied add-cube-cbrt0.0

    \[\leadsto e^{\color{blue}{\left(\sqrt[3]{\left(x \cdot y\right) \cdot y} \cdot \sqrt[3]{\left(x \cdot y\right) \cdot y}\right) \cdot \sqrt[3]{\left(x \cdot y\right) \cdot y}}}\]
  4. Final simplification0.0

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

Reproduce

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