Average Error: 11.7 → 12.3
Time: 41.6s
Precision: 64
Internal Precision: 128
\[\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)\]
\[\begin{array}{l} \mathbf{if}\;b \le -1.9454891053509975 \cdot 10^{-114} \lor \neg \left(b \le 1.617967878234454 \cdot 10^{-271}\right):\\ \;\;\;\;\left(\left(z \cdot y - t \cdot a\right) \cdot x - b \cdot \left(c \cdot z - a \cdot i\right)\right) + j \cdot \left(\sqrt[3]{t \cdot c - i \cdot y} \cdot \left(\sqrt[3]{t \cdot c - i \cdot y} \cdot \sqrt[3]{t \cdot c - i \cdot y}\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\left(z \cdot y - t \cdot a\right) \cdot x + \left(t \cdot c - i \cdot y\right) \cdot j\\ \end{array}\]

Error

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

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Split input into 2 regimes
  2. if b < -1.9454891053509975e-114 or 1.617967878234454e-271 < b

    1. Initial program 10.2

      \[\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)\]
    2. Initial simplification10.2

      \[\leadsto \left(t \cdot c - y \cdot i\right) \cdot j + \left(\left(z \cdot y - t \cdot a\right) \cdot x - \left(z \cdot c - i \cdot a\right) \cdot b\right)\]
    3. Using strategy rm
    4. Applied add-cube-cbrt10.5

      \[\leadsto \color{blue}{\left(\left(\sqrt[3]{t \cdot c - y \cdot i} \cdot \sqrt[3]{t \cdot c - y \cdot i}\right) \cdot \sqrt[3]{t \cdot c - y \cdot i}\right)} \cdot j + \left(\left(z \cdot y - t \cdot a\right) \cdot x - \left(z \cdot c - i \cdot a\right) \cdot b\right)\]

    if -1.9454891053509975e-114 < b < 1.617967878234454e-271

    1. Initial program 16.4

      \[\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)\]
    2. Initial simplification16.4

      \[\leadsto \left(t \cdot c - y \cdot i\right) \cdot j + \left(\left(z \cdot y - t \cdot a\right) \cdot x - \left(z \cdot c - i \cdot a\right) \cdot b\right)\]
    3. Taylor expanded around 0 18.1

      \[\leadsto \left(t \cdot c - y \cdot i\right) \cdot j + \left(\left(z \cdot y - t \cdot a\right) \cdot x - \color{blue}{0}\right)\]
  3. Recombined 2 regimes into one program.
  4. Final simplification12.3

    \[\leadsto \begin{array}{l} \mathbf{if}\;b \le -1.9454891053509975 \cdot 10^{-114} \lor \neg \left(b \le 1.617967878234454 \cdot 10^{-271}\right):\\ \;\;\;\;\left(\left(z \cdot y - t \cdot a\right) \cdot x - b \cdot \left(c \cdot z - a \cdot i\right)\right) + j \cdot \left(\sqrt[3]{t \cdot c - i \cdot y} \cdot \left(\sqrt[3]{t \cdot c - i \cdot y} \cdot \sqrt[3]{t \cdot c - i \cdot y}\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\left(z \cdot y - t \cdot a\right) \cdot x + \left(t \cdot c - i \cdot y\right) \cdot j\\ \end{array}\]

Runtime

Time bar (total: 41.6s)Debug logProfile

BaselineHerbieOracleSpan%
Regimes12.012.38.33.7-8%
herbie shell --seed 2018353 
(FPCore (x y z t a b c i j)
  :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)))))