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 r44097 = x;
double r44098 = log(r44097);
double r44099 = r44097 * r44098;
return r44099;
}
double f(double x) {
double r44100 = 2.0;
double r44101 = x;
double r44102 = cbrt(r44101);
double r44103 = log(r44102);
double r44104 = r44100 * r44103;
double r44105 = 1.0;
double r44106 = r44105 / r44101;
double r44107 = -0.3333333333333333;
double r44108 = pow(r44106, r44107);
double r44109 = log(r44108);
double r44110 = r44109 * r44101;
double r44111 = fma(r44104, r44101, r44110);
return r44111;
}



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