\[\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: 49.7 s
Input Error: 5.4
Output Error: 5.4
Log:
Profile: 🕒
\(\left(z \cdot y - a \cdot t\right) \cdot x + \left(\left(t \cdot c - y \cdot i\right) \cdot \frac{j}{1} - b \cdot \left(z \cdot c - a \cdot i\right)\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.4
  2. Using strategy rm
    5.4
  3. Applied flip-- to get
    \[\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + j \cdot \color{red}{\left(c \cdot t - i \cdot y\right)} \leadsto \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + j \cdot \color{blue}{\frac{{\left(c \cdot t\right)}^2 - {\left(i \cdot y\right)}^2}{c \cdot t + i \cdot y}}\]
    10.4
  4. Applied associate-*r/ to get
    \[\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \color{red}{j \cdot \frac{{\left(c \cdot t\right)}^2 - {\left(i \cdot y\right)}^2}{c \cdot t + i \cdot y}} \leadsto \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \color{blue}{\frac{j \cdot \left({\left(c \cdot t\right)}^2 - {\left(i \cdot y\right)}^2\right)}{c \cdot t + i \cdot y}}\]
    11.5
  5. Applied taylor to get
    \[\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \frac{j \cdot \left({\left(c \cdot t\right)}^2 - {\left(i \cdot y\right)}^2\right)}{c \cdot t + i \cdot y} \leadsto \left(\left(y \cdot \left(x \cdot z\right) - a \cdot \left(t \cdot x\right)\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \frac{j \cdot \left({\left(c \cdot t\right)}^2 - {\left(i \cdot y\right)}^2\right)}{c \cdot t + i \cdot y}\]
    11.9
  6. Taylor expanded around inf to get
    \[\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 - i \cdot a\right)\right) + \frac{j \cdot \left({\left(c \cdot t\right)}^2 - {\left(i \cdot y\right)}^2\right)}{c \cdot t + i \cdot y} \leadsto \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 - i \cdot a\right)\right) + \frac{j \cdot \left({\left(c \cdot t\right)}^2 - {\left(i \cdot y\right)}^2\right)}{c \cdot t + i \cdot y}\]
    11.9
  7. Applied simplify to get
    \[\left(\left(y \cdot \left(x \cdot z\right) - a \cdot \left(t \cdot x\right)\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \frac{j \cdot \left({\left(c \cdot t\right)}^2 - {\left(i \cdot y\right)}^2\right)}{c \cdot t + i \cdot y} \leadsto \left(\left(\left(x \cdot y\right) \cdot z - \left(t \cdot x\right) \cdot a\right) - b \cdot \left(c \cdot z - a \cdot i\right)\right) + \frac{j}{1} \cdot \left(c \cdot t - i \cdot y\right)\]
    5.5

  8. Applied final simplification
  9. Applied simplify to get
    \[\color{red}{\left(\left(\left(x \cdot y\right) \cdot z - \left(t \cdot x\right) \cdot a\right) - b \cdot \left(c \cdot z - a \cdot i\right)\right) + \frac{j}{1} \cdot \left(c \cdot t - i \cdot y\right)} \leadsto \color{blue}{\left(z \cdot y - a \cdot t\right) \cdot x + \left(\left(t \cdot c - y \cdot i\right) \cdot \frac{j}{1} - b \cdot \left(z \cdot c - a \cdot i\right)\right)}\]
    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)))))