Average Error: 0.0 → 0.0
Time: 1.3s
Precision: 64
\[e^{\left(x \cdot y\right) \cdot y}\]
\[e^{\sqrt[3]{{\left(\left(x \cdot y\right) \cdot y\right)}^{3}}}\]
e^{\left(x \cdot y\right) \cdot y}
e^{\sqrt[3]{{\left(\left(x \cdot y\right) \cdot y\right)}^{3}}}
double f(double x, double y) {
        double r219434 = x;
        double r219435 = y;
        double r219436 = r219434 * r219435;
        double r219437 = r219436 * r219435;
        double r219438 = exp(r219437);
        return r219438;
}

double f(double x, double y) {
        double r219439 = x;
        double r219440 = y;
        double r219441 = r219439 * r219440;
        double r219442 = r219441 * r219440;
        double r219443 = 3.0;
        double r219444 = pow(r219442, r219443);
        double r219445 = cbrt(r219444);
        double r219446 = exp(r219445);
        return r219446;
}

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-cbrt-cube0.9

    \[\leadsto e^{\left(x \cdot y\right) \cdot \color{blue}{\sqrt[3]{\left(y \cdot y\right) \cdot y}}}\]
  4. Applied add-cbrt-cube0.9

    \[\leadsto e^{\left(x \cdot \color{blue}{\sqrt[3]{\left(y \cdot y\right) \cdot y}}\right) \cdot \sqrt[3]{\left(y \cdot y\right) \cdot y}}\]
  5. Applied add-cbrt-cube14.7

    \[\leadsto e^{\left(\color{blue}{\sqrt[3]{\left(x \cdot x\right) \cdot x}} \cdot \sqrt[3]{\left(y \cdot y\right) \cdot y}\right) \cdot \sqrt[3]{\left(y \cdot y\right) \cdot y}}\]
  6. Applied cbrt-unprod14.7

    \[\leadsto e^{\color{blue}{\sqrt[3]{\left(\left(x \cdot x\right) \cdot x\right) \cdot \left(\left(y \cdot y\right) \cdot y\right)}} \cdot \sqrt[3]{\left(y \cdot y\right) \cdot y}}\]
  7. Applied cbrt-unprod14.7

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

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

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

Reproduce

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