x \cdot \log x
x \cdot \left(\log \left(\sqrt{\sqrt[3]{x} \cdot \sqrt[3]{x}}\right) + \log \left(\sqrt{\sqrt[3]{x}}\right)\right) + x \cdot \log \left(\sqrt{x}\right)double f(double x) {
double r33401 = x;
double r33402 = log(r33401);
double r33403 = r33401 * r33402;
return r33403;
}
double f(double x) {
double r33404 = x;
double r33405 = cbrt(r33404);
double r33406 = r33405 * r33405;
double r33407 = sqrt(r33406);
double r33408 = log(r33407);
double r33409 = sqrt(r33405);
double r33410 = log(r33409);
double r33411 = r33408 + r33410;
double r33412 = r33404 * r33411;
double r33413 = sqrt(r33404);
double r33414 = log(r33413);
double r33415 = r33404 * r33414;
double r33416 = r33412 + r33415;
return r33416;
}



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 sqrt-prod0.3
Applied log-prod0.3
Final simplification0.3
herbie shell --seed 2020002
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))