\[\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)\]
Test:
Linear.Matrix:det33 from linear-1.19.1.3
Bits:
128 bits
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
Time: 27.9 s
Input Error: 5.5
Output Error: 5.8
Log:
Profile: 🕒
\(\left(\left(c \cdot t - i \cdot y\right) \cdot j - \left(b \cdot i\right) \cdot \left(-a\right)\right) + \left(x \cdot \left(z \cdot y - t \cdot a\right) - {\left(\sqrt[3]{\left(b \cdot z\right) \cdot c}\right)}^3\right)\)
  1. Started with
    \[\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)\]
    5.5
  2. Using strategy rm
    5.5
  3. Applied sub-neg to get
    \[\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \color{red}{\left(c \cdot z - i \cdot a\right)}\right) + j \cdot \left(c \cdot t - i \cdot y\right) \leadsto \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \color{blue}{\left(c \cdot z + \left(-i \cdot a\right)\right)}\right) + j \cdot \left(c \cdot t - i \cdot y\right)\]
    5.5
  4. Applied distribute-lft-in to get
    \[\left(x \cdot \left(y \cdot z - t \cdot a\right) - \color{red}{b \cdot \left(c \cdot z + \left(-i \cdot a\right)\right)}\right) + j \cdot \left(c \cdot t - i \cdot y\right) \leadsto \left(x \cdot \left(y \cdot z - t \cdot a\right) - \color{blue}{\left(b \cdot \left(c \cdot z\right) + b \cdot \left(-i \cdot a\right)\right)}\right) + j \cdot \left(c \cdot t - i \cdot y\right)\]
    5.5
  5. Applied associate--r+ to get
    \[\color{red}{\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)} + j \cdot \left(c \cdot t - i \cdot y\right) \leadsto \color{blue}{\left(\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z\right)\right) - b \cdot \left(-i \cdot a\right)\right)} + j \cdot \left(c \cdot t - i \cdot y\right)\]
    5.5
  6. Applied taylor to get
    \[\left(\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z\right)\right) - b \cdot \left(-i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right) \leadsto \left(\left(\left(y \cdot \left(x \cdot z\right) - a \cdot \left(t \cdot x\right)\right) - b \cdot \left(c \cdot z\right)\right) - b \cdot \left(-i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\]
    5.6
  7. Taylor expanded around inf to get
    \[\left(\left(\color{red}{\left(y \cdot \left(x \cdot z\right) - a \cdot \left(t \cdot x\right)\right)} - b \cdot \left(c \cdot z\right)\right) - b \cdot \left(-i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right) \leadsto \left(\left(\color{blue}{\left(y \cdot \left(x \cdot z\right) - a \cdot \left(t \cdot x\right)\right)} - b \cdot \left(c \cdot z\right)\right) - b \cdot \left(-i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\]
    5.6
  8. Applied simplify to get
    \[\color{red}{\left(\left(\left(y \cdot \left(x \cdot z\right) - a \cdot \left(t \cdot x\right)\right) - b \cdot \left(c \cdot z\right)\right) - b \cdot \left(-i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)} \leadsto \color{blue}{\left(\left(c \cdot t - i \cdot y\right) \cdot j - \left(b \cdot i\right) \cdot \left(-a\right)\right) + \left(x \cdot \left(z \cdot y - t \cdot a\right) - \left(b \cdot z\right) \cdot c\right)}\]
    5.7
  9. Using strategy rm
    5.7
  10. Applied add-cube-cbrt to get
    \[\left(\left(c \cdot t - i \cdot y\right) \cdot j - \left(b \cdot i\right) \cdot \left(-a\right)\right) + \left(x \cdot \left(z \cdot y - t \cdot a\right) - \color{red}{\left(b \cdot z\right) \cdot c}\right) \leadsto \left(\left(c \cdot t - i \cdot y\right) \cdot j - \left(b \cdot i\right) \cdot \left(-a\right)\right) + \left(x \cdot \left(z \cdot y - t \cdot a\right) - \color{blue}{{\left(\sqrt[3]{\left(b \cdot z\right) \cdot c}\right)}^3}\right)\]
    5.8

Original test:


(lambda ((x default) (y default) (z default) (t default) (a default) (b default) (c default) (i default) (j default))
  #:name "Linear.Matrix:det33 from linear-1.19.1.3"
  (+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (* j (- (* c t) (* i y)))))