\left(\left(x \cdot \log y - y\right) - z\right) + \log t
\left(\left(\left(x \cdot \left(\log \left(\sqrt[3]{\sqrt{y}} \cdot \sqrt[3]{\sqrt{y}}\right) \cdot 2\right) + x \cdot \log \left(\sqrt[3]{y}\right)\right) - y\right) - z\right) + \log t(FPCore (x y z t) :precision binary64 (+ (- (- (* x (log y)) y) z) (log t)))
(FPCore (x y z t)
:precision binary64
(+
(-
(-
(+
(* x (* (log (* (cbrt (sqrt y)) (cbrt (sqrt y)))) 2.0))
(* x (log (cbrt y))))
y)
z)
(log t)))double code(double x, double y, double z, double t) {
return ((double) (((double) (((double) (((double) (x * ((double) log(y)))) - y)) - z)) + ((double) log(t))));
}
double code(double x, double y, double z, double t) {
return ((double) (((double) (((double) (((double) (((double) (x * ((double) (((double) log(((double) (((double) cbrt(((double) sqrt(y)))) * ((double) cbrt(((double) sqrt(y)))))))) * 2.0)))) + ((double) (x * ((double) log(((double) cbrt(y)))))))) - y)) - z)) + ((double) log(t))));
}



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t
Results
Initial program Error: 0.1 bits
rmApplied add-cube-cbrtError: 0.1 bits
Applied log-prodError: 0.1 bits
Applied distribute-lft-inError: 0.1 bits
SimplifiedError: 0.1 bits
rmApplied add-sqr-sqrtError: 0.1 bits
Applied cbrt-prodError: 0.1 bits
Final simplificationError: 0.1 bits
herbie shell --seed 2020203
(FPCore (x y z t)
:name "Numeric.SpecFunctions:incompleteGamma from math-functions-0.1.5.2, A"
:precision binary64
(+ (- (- (* x (log y)) y) z) (log t)))