Average Error: 0.1 → 0.1
Time: 4.6s
Precision: 64
\[\left(x \cdot \log y - z\right) - y\]
\[\left(x \cdot \log y - z\right) - y\]
\left(x \cdot \log y - z\right) - y
\left(x \cdot \log y - z\right) - y
double f(double x, double y, double z) {
        double r39897 = x;
        double r39898 = y;
        double r39899 = log(r39898);
        double r39900 = r39897 * r39899;
        double r39901 = z;
        double r39902 = r39900 - r39901;
        double r39903 = r39902 - r39898;
        return r39903;
}

double f(double x, double y, double z) {
        double r39904 = x;
        double r39905 = y;
        double r39906 = log(r39905);
        double r39907 = r39904 * r39906;
        double r39908 = z;
        double r39909 = r39907 - r39908;
        double r39910 = r39909 - r39905;
        return r39910;
}

Error

Bits error versus x

Bits error versus y

Bits error versus z

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.1

    \[\left(x \cdot \log y - z\right) - y\]
  2. Final simplification0.1

    \[\leadsto \left(x \cdot \log y - z\right) - y\]

Reproduce

herbie shell --seed 2020018 
(FPCore (x y z)
  :name "Statistics.Distribution.Poisson:$clogProbability from math-functions-0.1.5.2"
  :precision binary64
  (- (- (* x (log y)) z) y))