\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}\;a \le -2.38118333135362335 \cdot 10^{92} \lor \neg \left(a \le 3.66852259421464815 \cdot 10^{132}\right):\\
\;\;\;\;\mathsf{fma}\left(a, i \cdot b, -\mathsf{fma}\left(z, b \cdot c, a \cdot \left(x \cdot t\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(\left(\left(\sqrt[3]{\sqrt[3]{c \cdot t - i \cdot y} \cdot \sqrt[3]{c \cdot t - i \cdot y}} \cdot \sqrt[3]{\sqrt[3]{c \cdot t - i \cdot y}}\right) \cdot \sqrt[3]{c \cdot t - i \cdot y}\right) \cdot \sqrt[3]{c \cdot t - i \cdot y}, j, x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\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 temp;
if (((a <= -2.3811833313536233e+92) || !(a <= 3.668522594214648e+132))) {
temp = fma(a, (i * b), -fma(z, (b * c), (a * (x * t))));
} else {
temp = fma((((cbrt((cbrt(((c * t) - (i * y))) * cbrt(((c * t) - (i * y))))) * cbrt(cbrt(((c * t) - (i * y))))) * cbrt(((c * t) - (i * y)))) * cbrt(((c * t) - (i * y)))), j, ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))));
}
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 a < -2.3811833313536233e+92 or 3.668522594214648e+132 < a Initial program 21.0
Simplified21.0
Taylor expanded around inf 21.3
Simplified21.3
if -2.3811833313536233e+92 < a < 3.668522594214648e+132Initial program 9.4
Simplified9.4
rmApplied add-cube-cbrt9.7
rmApplied add-cube-cbrt9.7
Applied cbrt-prod9.8
Final simplification12.2
herbie shell --seed 2020057 +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)))))