x \cdot \log x
\mathsf{fma}\left(2 \cdot \log \left(\sqrt[3]{x}\right), x, \log x \cdot \left(x \cdot \frac{1}{3}\right)\right)double f(double x) {
double r39573 = x;
double r39574 = log(r39573);
double r39575 = r39573 * r39574;
return r39575;
}
double f(double x) {
double r39576 = 2.0;
double r39577 = x;
double r39578 = cbrt(r39577);
double r39579 = log(r39578);
double r39580 = r39576 * r39579;
double r39581 = log(r39577);
double r39582 = 0.3333333333333333;
double r39583 = r39577 * r39582;
double r39584 = r39581 * r39583;
double r39585 = fma(r39580, r39577, r39584);
return r39585;
}



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
Taylor expanded around inf 0.3
Simplified0.3
rmApplied fma-def0.2
rmApplied pow10.2
Final simplification0.2
herbie shell --seed 2019347 +o rules:numerics
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))