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 r35556 = x;
double r35557 = log(r35556);
double r35558 = r35556 * r35557;
return r35558;
}
double f(double x) {
double r35559 = 2.0;
double r35560 = x;
double r35561 = cbrt(r35560);
double r35562 = log(r35561);
double r35563 = r35559 * r35562;
double r35564 = 1.0;
double r35565 = r35564 / r35560;
double r35566 = -0.3333333333333333;
double r35567 = pow(r35565, r35566);
double r35568 = log(r35567);
double r35569 = r35568 * r35560;
double r35570 = fma(r35563, r35560, r35569);
return r35570;
}



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