x \cdot \log x
x \cdot \log \left(\sqrt{x}\right) + x \cdot \log \left(\sqrt{x}\right)double f(double x) {
double r23492 = x;
double r23493 = log(r23492);
double r23494 = r23492 * r23493;
return r23494;
}
double f(double x) {
double r23495 = x;
double r23496 = sqrt(r23495);
double r23497 = log(r23496);
double r23498 = r23495 * r23497;
double r23499 = r23498 + r23498;
return r23499;
}



Bits error versus x
Results
Initial program 0.3
rmApplied add-sqr-sqrt0.3
Applied log-prod0.3
Applied distribute-lft-in0.3
Final simplification0.3
herbie shell --seed 2020002 +o rules:numerics
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))