Average Error: 0.3 → 0.3
Time: 4.8s
Precision: 64
\[x \cdot \log x\]
\[x \cdot \log x\]
x \cdot \log x
x \cdot \log x
double f(double x) {
        double r25788 = x;
        double r25789 = log(r25788);
        double r25790 = r25788 * r25789;
        return r25790;
}

double f(double x) {
        double r25791 = x;
        double r25792 = log(r25791);
        double r25793 = r25791 * r25792;
        return r25793;
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 0.3

    \[x \cdot \log x\]
  2. Final simplification0.3

    \[\leadsto x \cdot \log x\]

Reproduce

herbie shell --seed 2020001 +o rules:numerics
(FPCore (x)
  :name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
  :precision binary64
  (* x (log x)))