x \cdot \log x
\mathsf{fma}\left(2 \cdot \log \left(\sqrt[3]{x}\right), x, \log \left({\left(\frac{1}{x}\right)}^{\frac{-1}{3}}\right) \cdot x\right)double f(double x) {
double r44522 = x;
double r44523 = log(r44522);
double r44524 = r44522 * r44523;
return r44524;
}
double f(double x) {
double r44525 = 2.0;
double r44526 = x;
double r44527 = cbrt(r44526);
double r44528 = log(r44527);
double r44529 = r44525 * r44528;
double r44530 = 1.0;
double r44531 = r44530 / r44526;
double r44532 = -0.3333333333333333;
double r44533 = pow(r44531, r44532);
double r44534 = log(r44533);
double r44535 = r44534 * r44526;
double r44536 = fma(r44529, r44526, r44535);
return r44536;
}



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