\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}\;j \le -2.0141886942224848 \cdot 10^{32}:\\
\;\;\;\;\left(\left(\sqrt[3]{x} \cdot \sqrt[3]{x}\right) \cdot \left(\sqrt[3]{x} \cdot \left(y \cdot z - t \cdot a\right)\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{elif}\;j \le 4.8637137140604012 \cdot 10^{-122}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(t \cdot \left(j \cdot c\right) + -1 \cdot \left(i \cdot \left(y \cdot j\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(\left(t \cdot j\right) \cdot c + \left(-j\right) \cdot \left(i \cdot y\right)\right)\\
\end{array}double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
return ((double) (((double) (((double) (x * ((double) (((double) (y * z)) - ((double) (t * a)))))) - ((double) (b * ((double) (((double) (c * z)) - ((double) (i * a)))))))) + ((double) (j * ((double) (((double) (c * t)) - ((double) (i * y))))))));
}
double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
double VAR;
if ((j <= -2.0141886942224848e+32)) {
VAR = ((double) (((double) (((double) (((double) (((double) cbrt(x)) * ((double) cbrt(x)))) * ((double) (((double) cbrt(x)) * ((double) (((double) (y * z)) - ((double) (t * a)))))))) - ((double) (b * ((double) (((double) (c * z)) - ((double) (i * a)))))))) + ((double) (j * ((double) (((double) (c * t)) - ((double) (i * y))))))));
} else {
double VAR_1;
if ((j <= 4.863713714060401e-122)) {
VAR_1 = ((double) (((double) (((double) (x * ((double) (((double) (y * z)) - ((double) (t * a)))))) - ((double) (b * ((double) (((double) (c * z)) - ((double) (i * a)))))))) + ((double) (((double) (t * ((double) (j * c)))) + ((double) (-1.0 * ((double) (i * ((double) (y * j))))))))));
} else {
VAR_1 = ((double) (((double) (((double) (x * ((double) (((double) (y * z)) - ((double) (t * a)))))) - ((double) (b * ((double) (((double) (c * z)) - ((double) (i * a)))))))) + ((double) (((double) (((double) (t * j)) * c)) + ((double) (((double) -(j)) * ((double) (i * y))))))));
}
VAR = VAR_1;
}
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



Bits error versus i



Bits error versus j
Results
if j < -2.0141886942224848e+32Initial program 7.3
rmApplied add-cube-cbrt7.5
Applied associate-*l*7.5
if -2.0141886942224848e+32 < j < 4.863713714060401e-122Initial program 15.7
rmApplied add-cube-cbrt15.8
Applied associate-*l*15.8
rmApplied sub-neg15.8
Applied distribute-lft-in15.8
Applied distribute-lft-in15.8
Simplified13.3
Simplified13.3
Taylor expanded around inf 10.8
if 4.863713714060401e-122 < j Initial program 9.0
rmApplied add-cube-cbrt9.5
Applied associate-*l*9.5
rmApplied sub-neg9.5
Applied distribute-lft-in9.5
Applied distribute-lft-in9.5
Simplified11.4
Simplified11.2
rmApplied associate-*r*11.1
Final simplification10.3
herbie shell --seed 2020121
(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)))))