\[\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: 1.9 m
Input Error: 5.4
Output Error: 5.4
Log:
Profile: 🕒
\(\left(\left(z \cdot y - a \cdot t\right) \cdot x - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(t \cdot c - y \cdot i\right) \cdot j\)
  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.4
  2. Using strategy rm
    5.4
  3. Applied add-sqr-sqrt to get
    \[\color{red}{\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)} \leadsto \color{blue}{{\left(\sqrt{\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)}\right)}^2}\]
    18.6
  4. Applied taylor to get
    \[{\left(\sqrt{\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)}\right)}^2 \leadsto {\left(\sqrt{\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) - y \cdot \left(j \cdot i\right)\right)}\right)}^2\]
    18.8
  5. Taylor expanded around inf to get
    \[{\left(\sqrt{\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \color{red}{\left(j \cdot \left(c \cdot t\right) - y \cdot \left(j \cdot i\right)\right)}}\right)}^2 \leadsto {\left(\sqrt{\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \color{blue}{\left(j \cdot \left(c \cdot t\right) - y \cdot \left(j \cdot i\right)\right)}}\right)}^2\]
    18.8
  6. Applied simplify to get
    \[{\left(\sqrt{\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) - y \cdot \left(j \cdot i\right)\right)}\right)}^2 \leadsto \left(\left(y \cdot z - t \cdot a\right) \cdot x - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(\left(j \cdot t\right) \cdot c - i \cdot \left(y \cdot j\right)\right)\]
    5.7

  7. Applied final simplification
  8. Applied simplify to get
    \[\color{red}{\left(\left(y \cdot z - t \cdot a\right) \cdot x - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(\left(j \cdot t\right) \cdot c - i \cdot \left(y \cdot j\right)\right)} \leadsto \color{blue}{\left(\left(z \cdot y - a \cdot t\right) \cdot x - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(t \cdot c - y \cdot i\right) \cdot j}\]
    5.4

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)))))