\left(x \cdot \log y - z\right) - y
\left(\mathsf{fma}\left(x, 2 \cdot \log \left(\sqrt[3]{y}\right), \log \left(\sqrt[3]{y}\right) \cdot x\right) - z\right) - ydouble f(double x, double y, double z) {
double r29930 = x;
double r29931 = y;
double r29932 = log(r29931);
double r29933 = r29930 * r29932;
double r29934 = z;
double r29935 = r29933 - r29934;
double r29936 = r29935 - r29931;
return r29936;
}
double f(double x, double y, double z) {
double r29937 = x;
double r29938 = 2.0;
double r29939 = y;
double r29940 = cbrt(r29939);
double r29941 = log(r29940);
double r29942 = r29938 * r29941;
double r29943 = r29941 * r29937;
double r29944 = fma(r29937, r29942, r29943);
double r29945 = z;
double r29946 = r29944 - r29945;
double r29947 = r29946 - r29939;
return r29947;
}



Bits error versus x



Bits error versus y



Bits error versus z
Initial program 0.1
rmApplied add-cube-cbrt0.1
Applied log-prod0.1
Applied distribute-lft-in0.1
Simplified0.1
Simplified0.1
rmApplied fma-def0.1
Final simplification0.1
herbie shell --seed 2019351 +o rules:numerics
(FPCore (x y z)
:name "Statistics.Distribution.Poisson:$clogProbability from math-functions-0.1.5.2"
:precision binary64
(- (- (* x (log y)) z) y))