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 r43445 = x;
double r43446 = log(r43445);
double r43447 = r43445 * r43446;
return r43447;
}
double f(double x) {
double r43448 = 2.0;
double r43449 = x;
double r43450 = cbrt(r43449);
double r43451 = log(r43450);
double r43452 = r43448 * r43451;
double r43453 = 1.0;
double r43454 = r43453 / r43449;
double r43455 = -0.3333333333333333;
double r43456 = pow(r43454, r43455);
double r43457 = log(r43456);
double r43458 = r43457 * r43449;
double r43459 = fma(r43452, r43449, r43458);
return r43459;
}



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)))