\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 -7.1379578252603256 \cdot 10^{-134}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - \left(b \cdot \left(c \cdot z\right) + \left(-a \cdot \left(i \cdot b\right)\right)\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{elif}\;j \le 4.27728153088813753 \cdot 10^{-162}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - \left(b \cdot \left(c \cdot z\right) + b \cdot \left(-i \cdot a\right)\right)\right) + 0\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - \left(\left(b \cdot c\right) \cdot z + b \cdot \left(-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 VAR;
if ((j <= -7.137957825260326e-134)) {
VAR = (((x * ((y * z) - (t * a))) - ((b * (c * z)) + -(a * (i * b)))) + (j * ((c * t) - (i * y))));
} else {
double VAR_1;
if ((j <= 4.2772815308881375e-162)) {
VAR_1 = (((x * ((y * z) - (t * a))) - ((b * (c * z)) + (b * -(i * a)))) + 0.0);
} else {
VAR_1 = (((x * ((y * z) - (t * a))) - (((b * c) * z) + (b * -(i * a)))) + (j * ((c * t) - (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 < -7.137957825260326e-134Initial program 9.1
rmApplied sub-neg9.1
Applied distribute-lft-in9.1
rmApplied distribute-rgt-neg-out9.1
Simplified9.3
if -7.137957825260326e-134 < j < 4.2772815308881375e-162Initial program 17.7
rmApplied sub-neg17.7
Applied distribute-lft-in17.7
Taylor expanded around 0 18.0
if 4.2772815308881375e-162 < j Initial program 9.3
rmApplied sub-neg9.3
Applied distribute-lft-in9.3
rmApplied associate-*r*10.1
Final simplification12.4
herbie shell --seed 2020103
(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)))))