\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 -9.340382156181511 \cdot 10^{58}:\\
\;\;\;\;\left(\left(x \cdot \mathsf{fma}\left(y \cdot \left(\sqrt[3]{z} \cdot \sqrt[3]{z}\right), \sqrt[3]{z}, -a \cdot t\right) + x \cdot \mathsf{fma}\left(-a, t, a \cdot t\right)\right) - \left(b \cdot \mathsf{fma}\left(c, z, -i \cdot a\right) + b \cdot \mathsf{fma}\left(-a, i, a \cdot i\right)\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{elif}\;j \le 1.13821747314357863 \cdot 10^{34}:\\
\;\;\;\;\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) - i \cdot \left(j \cdot y\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\left(\left(\left(\sqrt[3]{x} \cdot \sqrt[3]{x}\right) \cdot \left(\sqrt[3]{x} \cdot \mathsf{fma}\left(y \cdot \left(\sqrt[3]{z} \cdot \sqrt[3]{z}\right), \sqrt[3]{z}, -a \cdot t\right)\right) + x \cdot \mathsf{fma}\left(-a, t, a \cdot t\right)\right) - \left(b \cdot \mathsf{fma}\left(c, z, -i \cdot a\right) + b \cdot \mathsf{fma}\left(-a, i, a \cdot i\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 ((j <= -9.340382156181511e+58)) {
temp = ((((x * fma((y * (cbrt(z) * cbrt(z))), cbrt(z), -(a * t))) + (x * fma(-a, t, (a * t)))) - ((b * fma(c, z, -(i * a))) + (b * fma(-a, i, (a * i))))) + (j * ((c * t) - (i * y))));
} else {
double temp_1;
if ((j <= 1.1382174731435786e+34)) {
temp_1 = (((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + ((t * (j * c)) - (i * (j * y))));
} else {
temp_1 = (((((cbrt(x) * cbrt(x)) * (cbrt(x) * fma((y * (cbrt(z) * cbrt(z))), cbrt(z), -(a * t)))) + (x * fma(-a, t, (a * t)))) - ((b * fma(c, z, -(i * a))) + (b * fma(-a, i, (a * i))))) + (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 j < -9.340382156181511e+58Initial program 6.4
rmApplied prod-diff6.4
Applied distribute-lft-in6.4
Simplified6.4
rmApplied add-cube-cbrt6.5
Applied associate-*r*6.5
Applied prod-diff6.5
Applied distribute-lft-in6.5
if -9.340382156181511e+58 < j < 1.1382174731435786e+34Initial program 14.4
Taylor expanded around inf 10.0
if 1.1382174731435786e+34 < j Initial program 7.4
rmApplied prod-diff7.4
Applied distribute-lft-in7.4
Simplified7.4
rmApplied add-cube-cbrt7.4
Applied associate-*r*7.5
Applied prod-diff7.5
Applied distribute-lft-in7.5
rmApplied add-cube-cbrt7.6
Applied associate-*l*7.6
Final simplification9.1
herbie shell --seed 2020066 +o rules:numerics
(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)))))