x \cdot \log x
x \cdot \log \left(\sqrt{x}\right) + x \cdot \log \left(\sqrt{x}\right)double f(double x) {
double r33010 = x;
double r33011 = log(r33010);
double r33012 = r33010 * r33011;
return r33012;
}
double f(double x) {
double r33013 = x;
double r33014 = sqrt(r33013);
double r33015 = log(r33014);
double r33016 = r33013 * r33015;
double r33017 = r33016 + r33016;
return r33017;
}



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