Average Error: 0.3 → 0.3
Time: 5.5s
Precision: 64
\[x \cdot \log x\]
\[x \cdot \log x\]
x \cdot \log x
x \cdot \log x
double f(double x) {
        double r31172 = x;
        double r31173 = log(r31172);
        double r31174 = r31172 * r31173;
        return r31174;
}

double f(double x) {
        double r31175 = x;
        double r31176 = log(r31175);
        double r31177 = r31175 * r31176;
        return r31177;
}

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 2019353 +o rules:numerics
(FPCore (x)
  :name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
  :precision binary64
  (* x (log x)))