\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 3.2357027235365161 \cdot 10^{171}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - \left(\sqrt[3]{b \cdot \left(c \cdot z - i \cdot a\right)} \cdot \left(\sqrt[3]{b} \cdot \sqrt[3]{c \cdot z - i \cdot a}\right)\right) \cdot \sqrt[3]{b \cdot \left(c \cdot z - i \cdot a\right)}\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(a, i \cdot b, -\mathsf{fma}\left(z, b \cdot c, a \cdot \left(x \cdot t\right)\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 <= 3.235702723536516e+171)) {
temp = (((x * ((y * z) - (t * a))) - ((cbrt((b * ((c * z) - (i * a)))) * (cbrt(b) * cbrt(((c * z) - (i * a))))) * cbrt((b * ((c * z) - (i * a)))))) + (j * ((c * t) - (i * y))));
} else {
temp = fma(a, (i * b), -fma(z, (b * c), (a * (x * t))));
}
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 < 3.235702723536516e+171Initial program 11.0
rmApplied add-cube-cbrt11.3
rmApplied cbrt-prod11.3
if 3.235702723536516e+171 < a Initial program 24.2
Simplified24.2
Taylor expanded around inf 19.6
Simplified19.6
Final simplification11.8
herbie shell --seed 2020053 +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)))))