x \cdot \log x
x \cdot \log \left(\sqrt{x}\right) + x \cdot \log \left(\sqrt{x}\right)double f(double x) {
double r21034 = x;
double r21035 = log(r21034);
double r21036 = r21034 * r21035;
return r21036;
}
double f(double x) {
double r21037 = x;
double r21038 = sqrt(r21037);
double r21039 = log(r21038);
double r21040 = r21037 * r21039;
double r21041 = r21040 + r21040;
return r21041;
}



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