\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)
\begin{array}{l}
\mathbf{if}\;b \le -1.5692136620466682 \cdot 10^{-239}:\\
\;\;\;\;\left(\left(x \cdot \left(\sqrt[3]{y \cdot z - t \cdot a} \cdot \sqrt[3]{y \cdot z - t \cdot a}\right)\right) \cdot \sqrt[3]{y \cdot z - t \cdot a} - b \cdot \left(c \cdot z - i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{elif}\;b \le 1.0943761154691478 \cdot 10^{-178}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - 0\right) + \left(j \cdot \left(\sqrt[3]{c \cdot t - i \cdot y} \cdot \sqrt[3]{c \cdot t - i \cdot y}\right)\right) \cdot \sqrt[3]{c \cdot t - i \cdot y}\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - \sqrt{b} \cdot \left(\sqrt{b} \cdot \left(c \cdot z - i \cdot a\right)\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\end{array}double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
return (((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y))));
}
double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
double temp;
if ((b <= -1.5692136620466682e-239)) {
temp = ((((x * (cbrt(((y * z) - (t * a))) * cbrt(((y * z) - (t * a))))) * cbrt(((y * z) - (t * a)))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y))));
} else {
double temp_1;
if ((b <= 1.0943761154691478e-178)) {
temp_1 = (((x * ((y * z) - (t * a))) - 0.0) + ((j * (cbrt(((c * t) - (i * y))) * cbrt(((c * t) - (i * y))))) * cbrt(((c * t) - (i * y)))));
} else {
temp_1 = (((x * ((y * z) - (t * a))) - (sqrt(b) * (sqrt(b) * ((c * z) - (i * a))))) + (j * ((c * t) - (i * y))));
}
temp = temp_1;
}
return temp;
}



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



Bits error versus i



Bits error versus j
Results
if b < -1.5692136620466682e-239Initial program 10.3
rmApplied add-cube-cbrt10.5
Applied associate-*r*10.5
if -1.5692136620466682e-239 < b < 1.0943761154691478e-178Initial program 17.4
rmApplied add-cube-cbrt17.7
Applied associate-*r*17.7
Taylor expanded around 0 17.5
if 1.0943761154691478e-178 < b Initial program 10.5
rmApplied add-sqr-sqrt10.6
Applied associate-*l*10.6
Final simplification12.0
herbie shell --seed 2020057
(FPCore (x y z t a b c i j)
:name "Linear.Matrix:det33 from linear-1.19.1.3"
:precision binary64
(+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (* j (- (* c t) (* i y)))))