x + \left(y - z\right) \cdot \frac{t - x}{a - z}\begin{array}{l}
\mathbf{if}\;a \le -6.2464858519129347 \cdot 10^{-261} \lor \neg \left(a \le 5.2312011585749082 \cdot 10^{-200}\right):\\
\;\;\;\;x + \frac{\frac{y - z}{\sqrt[3]{a - z} \cdot \sqrt[3]{a - z}}}{\sqrt[3]{\sqrt[3]{a - z} \cdot \sqrt[3]{a - z}}} \cdot \frac{t - x}{\sqrt[3]{\sqrt[3]{a - z}}}\\
\mathbf{else}:\\
\;\;\;\;\left(\frac{x \cdot y}{z} + t\right) - \frac{t \cdot y}{z}\\
\end{array}double code(double x, double y, double z, double t, double a) {
return ((double) (x + ((double) (((double) (y - z)) * ((double) (((double) (t - x)) / ((double) (a - z))))))));
}
double code(double x, double y, double z, double t, double a) {
double VAR;
if (((a <= -6.246485851912935e-261) || !(a <= 5.231201158574908e-200))) {
VAR = ((double) (x + ((double) (((double) (((double) (((double) (y - z)) / ((double) (((double) cbrt(((double) (a - z)))) * ((double) cbrt(((double) (a - z)))))))) / ((double) cbrt(((double) (((double) cbrt(((double) (a - z)))) * ((double) cbrt(((double) (a - z)))))))))) * ((double) (((double) (t - x)) / ((double) cbrt(((double) cbrt(((double) (a - z))))))))))));
} else {
VAR = ((double) (((double) (((double) (((double) (x * y)) / z)) + t)) - ((double) (((double) (t * y)) / z))));
}
return VAR;
}



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t



Bits error versus a
Results
if a < -6.246485851912935e-261 or 5.231201158574908e-200 < a Initial program 13.8
rmApplied add-cube-cbrt14.3
Applied *-un-lft-identity14.3
Applied times-frac14.3
Applied associate-*r*11.7
Simplified11.7
rmApplied add-cube-cbrt11.7
Applied cbrt-prod11.8
Applied *-un-lft-identity11.8
Applied times-frac11.8
Applied associate-*r*11.6
Simplified11.6
if -6.246485851912935e-261 < a < 5.231201158574908e-200Initial program 26.2
Taylor expanded around inf 11.7
Final simplification11.6
herbie shell --seed 2020129
(FPCore (x y z t a)
:name "Numeric.Signal:interpolate from hsignal-0.2.7.1"
:precision binary64
(+ x (* (- y z) (/ (- t x) (- a z)))))