\frac{x \cdot e^{\left(y \cdot \log z + \left(t - 1\right) \cdot \log a\right) - b}}{y}\left(x \cdot \frac{\sqrt{\frac{{\left(\frac{1}{a}\right)}^{1}}{e^{\mathsf{fma}\left(y, \log \left(\frac{1}{z}\right), \mathsf{fma}\left(\log \left(\frac{1}{a}\right), t, b\right)\right)}}}}{\sqrt[3]{y} \cdot \sqrt[3]{y}}\right) \cdot \frac{\sqrt{\frac{{\left(\frac{1}{a}\right)}^{1}}{e^{\mathsf{fma}\left(y, \log \left(\frac{1}{z}\right), \mathsf{fma}\left(\log \left(\frac{1}{a}\right), t, b\right)\right)}}}}{\sqrt[3]{y}}double code(double x, double y, double z, double t, double a, double b) {
return ((double) (((double) (x * ((double) exp(((double) (((double) (((double) (y * ((double) log(z)))) + ((double) (((double) (t - 1.0)) * ((double) log(a)))))) - b)))))) / y));
}
double code(double x, double y, double z, double t, double a, double b) {
return ((double) (((double) (x * ((double) (((double) sqrt(((double) (((double) pow(((double) (1.0 / a)), 1.0)) / ((double) exp(((double) fma(y, ((double) log(((double) (1.0 / z)))), ((double) fma(((double) log(((double) (1.0 / a)))), t, b)))))))))) / ((double) (((double) cbrt(y)) * ((double) cbrt(y)))))))) * ((double) (((double) sqrt(((double) (((double) pow(((double) (1.0 / a)), 1.0)) / ((double) exp(((double) fma(y, ((double) log(((double) (1.0 / z)))), ((double) fma(((double) log(((double) (1.0 / a)))), t, b)))))))))) / ((double) cbrt(y))))));
}



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t



Bits error versus a



Bits error versus b
Results
Initial program 1.8
Taylor expanded around inf 1.8
Simplified1.1
rmApplied *-un-lft-identity1.1
Applied times-frac1.3
Simplified1.3
rmApplied add-cube-cbrt1.4
Applied add-sqr-sqrt1.4
Applied times-frac1.4
Applied associate-*r*0.4
Final simplification0.4
herbie shell --seed 2020120 +o rules:numerics
(FPCore (x y z t a b)
:name "Numeric.SpecFunctions:incompleteBetaWorker from math-functions-0.1.5.2"
:precision binary64
(/ (* x (exp (- (+ (* y (log z)) (* (- t 1) (log a))) b))) y))