x \cdot \log x
\mathsf{fma}\left(x, 2 \cdot \log \left(\sqrt[3]{x}\right), x \cdot \log \left(\sqrt[3]{x}\right)\right)double f(double x) {
double r31472 = x;
double r31473 = log(r31472);
double r31474 = r31472 * r31473;
return r31474;
}
double f(double x) {
double r31475 = x;
double r31476 = 2.0;
double r31477 = cbrt(r31475);
double r31478 = log(r31477);
double r31479 = r31476 * r31478;
double r31480 = r31475 * r31478;
double r31481 = fma(r31475, r31479, r31480);
return r31481;
}



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