\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}\;i \le -7.87939396947289779 \cdot 10^{-134} \lor \neg \left(i \le 7.8335979533121326 \cdot 10^{-12}\right):\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(j \cdot \left(c \cdot t\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(j \cdot c\right) \cdot t + j \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 (((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 (((i <= -7.879393969472898e-134) || !(i <= 7.833597953312133e-12))) {
VAR = (((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + ((j * (c * t)) + (-1.0 * (i * (y * j)))));
} else {
VAR = (((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (((j * c) * t) + (j * -(i * y))));
}
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 i < -7.879393969472898e-134 or 7.833597953312133e-12 < i Initial program 14.6
rmApplied sub-neg14.6
Applied distribute-lft-in14.6
Taylor expanded around inf 12.1
if -7.879393969472898e-134 < i < 7.833597953312133e-12Initial program 9.8
rmApplied sub-neg9.8
Applied distribute-lft-in9.8
rmApplied associate-*r*10.5
Final simplification11.3
herbie shell --seed 2020091
(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)))))