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 r30535 = x;
double r30536 = log(r30535);
double r30537 = r30535 * r30536;
return r30537;
}
double f(double x) {
double r30538 = x;
double r30539 = 2.0;
double r30540 = cbrt(r30538);
double r30541 = log(r30540);
double r30542 = r30539 * r30541;
double r30543 = r30538 * r30541;
double r30544 = fma(r30538, r30542, r30543);
return r30544;
}



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