\frac{x}{x + y \cdot e^{2 \cdot \left(\frac{z \cdot \sqrt{t + a}}{t} - \left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}}\begin{array}{l}
\mathbf{if}\;z \le 6.2229520126307053 \cdot 10^{271} \lor \neg \left(z \le 6.5984367843228063 \cdot 10^{296}\right):\\
\;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \mathsf{fma}\left(\frac{z}{\sqrt[3]{t} \cdot \sqrt[3]{t}}, \frac{\sqrt{t + a}}{\sqrt[3]{t}}, -\left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) - \frac{2}{t \cdot 3}\right)\right)}}\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \frac{\left(z \cdot \sqrt{t + a}\right) \cdot \left(\left(a - \frac{5}{6}\right) \cdot \left(t \cdot 3\right)\right) - 0}{t \cdot \left(\left(a - \frac{5}{6}\right) \cdot \left(t \cdot 3\right)\right)}}}\\
\end{array}double code(double x, double y, double z, double t, double a, double b, double c) {
return (x / (x + (y * exp((2.0 * (((z * sqrt((t + a))) / t) - ((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0))))))))));
}
double code(double x, double y, double z, double t, double a, double b, double c) {
double VAR;
if (((z <= 6.222952012630705e+271) || !(z <= 6.598436784322806e+296))) {
VAR = (x / (x + (y * exp((2.0 * fma((z / (cbrt(t) * cbrt(t))), (sqrt((t + a)) / cbrt(t)), -((b - c) * ((a + (5.0 / 6.0)) - (2.0 / (t * 3.0))))))))));
} else {
VAR = (x / (x + (y * exp((2.0 * ((((z * sqrt((t + a))) * ((a - (5.0 / 6.0)) * (t * 3.0))) - 0.0) / (t * ((a - (5.0 / 6.0)) * (t * 3.0)))))))));
}
return VAR;
}



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t



Bits error versus a



Bits error versus b



Bits error versus c
Results
if z < 6.222952012630705e+271 or 6.598436784322806e+296 < z Initial program 3.8
rmApplied add-cube-cbrt3.8
Applied times-frac2.7
Applied fma-neg1.7
if 6.222952012630705e+271 < z < 6.598436784322806e+296Initial program 16.0
rmApplied flip-+18.6
Applied frac-sub23.0
Applied associate-*r/25.3
Applied frac-sub26.1
Taylor expanded around 0 20.4
Final simplification2.0
herbie shell --seed 2020103 +o rules:numerics
(FPCore (x y z t a b c)
:name "Numeric.SpecFunctions:invIncompleteBetaWorker from math-functions-0.1.5.2"
:precision binary64
(/ x (+ x (* y (exp (* 2 (- (/ (* z (sqrt (+ t a))) t) (* (- b c) (- (+ a (/ 5 6)) (/ 2 (* t 3)))))))))))