x \cdot \log x
x \cdot \left(2 \cdot \log \left({\left(\frac{1}{x}\right)}^{\frac{-1}{3}}\right)\right) + x \cdot \log \left(\sqrt[3]{x}\right)double f(double x) {
double r46090 = x;
double r46091 = log(r46090);
double r46092 = r46090 * r46091;
return r46092;
}
double f(double x) {
double r46093 = x;
double r46094 = 2.0;
double r46095 = 1.0;
double r46096 = r46095 / r46093;
double r46097 = -0.3333333333333333;
double r46098 = pow(r46096, r46097);
double r46099 = log(r46098);
double r46100 = r46094 * r46099;
double r46101 = r46093 * r46100;
double r46102 = cbrt(r46093);
double r46103 = log(r46102);
double r46104 = r46093 * r46103;
double r46105 = r46101 + r46104;
return r46105;
}



Bits error versus x
Results
Initial program 0.3
rmApplied add-cube-cbrt0.3
Applied log-prod0.4
Applied distribute-lft-in0.4
Simplified0.4
Taylor expanded around inf 0.4
Final simplification0.4
herbie shell --seed 2020001
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))