\[\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.1 m
Input Error: 11.0
Output Error: 11.0
Log:
Profile: 🕒
\(j \cdot \left(t \cdot c - y \cdot i\right) + \left(\left(z \cdot y - a \cdot t\right) \cdot x - b \cdot \left(c \cdot z - i \cdot a\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)\]
    11.0
  2. Using strategy rm
    11.0
  3. Applied add-cube-cbrt 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 \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) + \color{blue}{{\left(\sqrt[3]{j \cdot \left(c \cdot t - i \cdot y\right)}\right)}^3}\]
    11.3
  4. Using strategy rm
    11.3
  5. Applied pow1/3 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}{\left(\sqrt[3]{j \cdot \left(c \cdot t - i \cdot y\right)}\right)}}^3 \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}{\left({\left(j \cdot \left(c \cdot t - i \cdot y\right)\right)}^{\frac{1}{3}}\right)}}^3\]
    35.0
  6. 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) + {\left({\left(j \cdot \left(c \cdot t - i \cdot y\right)\right)}^{\frac{1}{3}}\right)}^3 \leadsto \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + {\left({\left(j \cdot \left(c \cdot t\right) - y \cdot \left(j \cdot i\right)\right)}^{\frac{1}{3}}\right)}^3\]
    35.1
  7. Taylor expanded around inf to get
    \[\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + {\left({\color{red}{\left(j \cdot \left(c \cdot t\right) - y \cdot \left(j \cdot i\right)\right)}}^{\frac{1}{3}}\right)}^3 \leadsto \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + {\left({\color{blue}{\left(j \cdot \left(c \cdot t\right) - y \cdot \left(j \cdot i\right)\right)}}^{\frac{1}{3}}\right)}^3\]
    35.1
  8. Applied simplify to get
    \[\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + {\left({\left(j \cdot \left(c \cdot t\right) - y \cdot \left(j \cdot i\right)\right)}^{\frac{1}{3}}\right)}^3 \leadsto \left(y \cdot z - t \cdot a\right) \cdot x - \left(b \cdot \left(c \cdot z - i \cdot a\right) - \left(\left(j \cdot c\right) \cdot t - \left(i \cdot j\right) \cdot y\right)\right)\]
    11.9

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

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