\frac{x \cdot e^{\left(y \cdot \log z + \left(t - 1\right) \cdot \log a\right) - b}}{y}\frac{{\left(\frac{1}{{a}^{1}}\right)}^{1} \cdot \frac{x}{\sqrt{e^{\log \left(\frac{1}{z}\right) \cdot y + \left(\log \left(\frac{1}{a}\right) \cdot t + b\right)}}}}{\sqrt{e^{\log \left(\frac{1}{z}\right) \cdot y + \left(\log \left(\frac{1}{a}\right) \cdot t + b\right)}} \cdot y}double code(double x, double y, double z, double t, double a, double b) {
return ((x * exp((((y * log(z)) + ((t - 1.0) * log(a))) - b))) / y);
}
double code(double x, double y, double z, double t, double a, double b) {
return ((pow((1.0 / pow(a, 1.0)), 1.0) * (x / sqrt(exp(((log((1.0 / z)) * y) + ((log((1.0 / a)) * t) + b)))))) / (sqrt(exp(((log((1.0 / z)) * y) + ((log((1.0 / a)) * t) + b)))) * 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 2.0
Taylor expanded around inf 2.0
Simplified1.4
Taylor expanded around inf 1.5
rmApplied add-sqr-sqrt1.5
Applied associate-*l*1.5
Applied associate-/r*1.5
Applied associate-*r/1.2
Final simplification1.2
herbie shell --seed 2020066
(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))