\[\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: 42.5 s
Input Error: 12.3
Output Error: 11.0
Log:
Profile: 🕒
\(\begin{cases} (\left(c \cdot t - i \cdot y\right) * j + \left(\left(y \cdot z - t \cdot a\right) \cdot x\right))_* - {\left(\sqrt[3]{b \cdot \left(c \cdot z - i \cdot a\right)}\right)}^3 & \text{when } x \le -2.4891124693180655 \cdot 10^{-232} \\ (\left(c \cdot t - i \cdot y\right) * j + 0)_* - b \cdot \left(c \cdot z - i \cdot a\right) & \text{when } x \le 2.6112111336306083 \cdot 10^{-225} \\ (\left(c \cdot t - i \cdot y\right) * j + \left(\left(y \cdot z - t \cdot a\right) \cdot x\right))_* - {\left(\sqrt[3]{b \cdot \left(c \cdot z - i \cdot a\right)}\right)}^3 & \text{otherwise} \end{cases}\)

    if x < -2.4891124693180655e-232 or 2.6112111336306083e-225 < x

    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)\]
      10.9
    2. Applied simplify 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(c \cdot t - i \cdot y\right) * j + \left(\left(y \cdot z - t \cdot a\right) \cdot x\right))_* - b \cdot \left(c \cdot z - i \cdot a\right)}\]
      10.9
    3. Using strategy rm
      10.9
    4. Applied add-cube-cbrt to get
      \[(\left(c \cdot t - i \cdot y\right) * j + \left(\left(y \cdot z - t \cdot a\right) \cdot x\right))_* - \color{red}{b \cdot \left(c \cdot z - i \cdot a\right)} \leadsto (\left(c \cdot t - i \cdot y\right) * j + \left(\left(y \cdot z - t \cdot a\right) \cdot x\right))_* - \color{blue}{{\left(\sqrt[3]{b \cdot \left(c \cdot z - i \cdot a\right)}\right)}^3}\]
      11.2

    if -2.4891124693180655e-232 < x < 2.6112111336306083e-225

    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)\]
      19.5
    2. Applied simplify 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(c \cdot t - i \cdot y\right) * j + \left(\left(y \cdot z - t \cdot a\right) \cdot x\right))_* - b \cdot \left(c \cdot z - i \cdot a\right)}\]
      19.5
    3. Applied taylor to get
      \[(\left(c \cdot t - i \cdot y\right) * j + \left(\left(y \cdot z - t \cdot a\right) \cdot x\right))_* - b \cdot \left(c \cdot z - i \cdot a\right) \leadsto (\left(c \cdot t - i \cdot y\right) * j + 0)_* - b \cdot \left(c \cdot z - i \cdot a\right)\]
      10.0
    4. Taylor expanded around 0 to get
      \[(\left(c \cdot t - i \cdot y\right) * j + \color{red}{0})_* - b \cdot \left(c \cdot z - i \cdot a\right) \leadsto (\left(c \cdot t - i \cdot y\right) * j + \color{blue}{0})_* - b \cdot \left(c \cdot z - i \cdot a\right)\]
      10.0

  1. Removed slow pow expressions

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