x \cdot \log x
\left(x \cdot \left(2 \cdot \log \left(\sqrt[3]{\sqrt{x}}\right)\right) + x \cdot \log \left(\sqrt[3]{\sqrt{x}}\right)\right) + x \cdot \log \left(\sqrt{x}\right)double f(double x) {
double r34784 = x;
double r34785 = log(r34784);
double r34786 = r34784 * r34785;
return r34786;
}
double f(double x) {
double r34787 = x;
double r34788 = 2.0;
double r34789 = sqrt(r34787);
double r34790 = cbrt(r34789);
double r34791 = log(r34790);
double r34792 = r34788 * r34791;
double r34793 = r34787 * r34792;
double r34794 = r34787 * r34791;
double r34795 = r34793 + r34794;
double r34796 = log(r34789);
double r34797 = r34787 * r34796;
double r34798 = r34795 + r34797;
return r34798;
}



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