\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}\;t \le -4.32305600680042312 \cdot 10^{-187} \lor \neg \left(t \le 1.94051797250476866 \cdot 10^{-236}\right):\\
\;\;\;\;\frac{x}{x + y \cdot e^{2 \cdot \left(\frac{z}{\sqrt[3]{t} \cdot \sqrt[3]{t}} \cdot \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) - t \cdot \left(\left(b - c\right) \cdot \left(\left(a + \frac{5}{6}\right) \cdot \left(\left(a - \frac{5}{6}\right) \cdot \left(t \cdot 3\right)\right) - \left(a - \frac{5}{6}\right) \cdot 2\right)\right)}{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 (((t <= -4.323056006800423e-187) || !(t <= 1.9405179725047687e-236))) {
VAR = (x / (x + (y * exp((2.0 * (((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))) - (t * ((b - c) * (((a + (5.0 / 6.0)) * ((a - (5.0 / 6.0)) * (t * 3.0))) - ((a - (5.0 / 6.0)) * 2.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 t < -4.323056006800423e-187 or 1.9405179725047687e-236 < t Initial program 2.7
rmApplied add-cube-cbrt2.7
Applied times-frac1.4
if -4.323056006800423e-187 < t < 1.9405179725047687e-236Initial program 9.2
rmApplied flip-+12.5
Applied frac-sub12.5
Applied associate-*r/12.5
Applied frac-sub9.2
rmApplied difference-of-squares9.2
Applied associate-*l*5.6
Final simplification2.1
herbie shell --seed 2020092
(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)))))))))))