?

Average Error: 12.3 → 5.7
Time: 1.8min
Precision: binary64
Cost: 5704

?

\[\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} t_1 := \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)\\ \mathbf{if}\;t_1 \leq -\infty:\\ \;\;\;\;\left(y \cdot \left(z \cdot x\right) - c \cdot \left(z \cdot b\right)\right) + \left(\left(y \cdot j\right) \cdot \left(-i\right) + c \cdot \left(t \cdot j\right)\right)\\ \mathbf{elif}\;t_1 \leq 10^{+307}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;\left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ \end{array} \]
(FPCore (x y z t a b c i j)
 :precision binary64
 (+
  (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a))))
  (* j (- (* c t) (* i y)))))
(FPCore (x y z t a b c i j)
 :precision binary64
 (let* ((t_1
         (+
          (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a))))
          (* j (- (* c t) (* i y))))))
   (if (<= t_1 (- INFINITY))
     (+ (- (* y (* z x)) (* c (* z b))) (+ (* (* y j) (- i)) (* c (* t j))))
     (if (<= t_1 1e+307)
       t_1
       (+ (- (+ (* y (* i j)) (* a (* t x)))) (* c (- (* t j) (* b z))))))))
double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
	return ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y)));
}
double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
	double t_1 = ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y)));
	double tmp;
	if (t_1 <= -((double) INFINITY)) {
		tmp = ((y * (z * x)) - (c * (z * b))) + (((y * j) * -i) + (c * (t * j)));
	} else if (t_1 <= 1e+307) {
		tmp = t_1;
	} else {
		tmp = -((y * (i * j)) + (a * (t * x))) + (c * ((t * j) - (b * z)));
	}
	return tmp;
}
public static double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
	return ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y)));
}
public static double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
	double t_1 = ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y)));
	double tmp;
	if (t_1 <= -Double.POSITIVE_INFINITY) {
		tmp = ((y * (z * x)) - (c * (z * b))) + (((y * j) * -i) + (c * (t * j)));
	} else if (t_1 <= 1e+307) {
		tmp = t_1;
	} else {
		tmp = -((y * (i * j)) + (a * (t * x))) + (c * ((t * j) - (b * z)));
	}
	return tmp;
}
def code(x, y, z, t, a, b, c, i, j):
	return ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y)))
def code(x, y, z, t, a, b, c, i, j):
	t_1 = ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y)))
	tmp = 0
	if t_1 <= -math.inf:
		tmp = ((y * (z * x)) - (c * (z * b))) + (((y * j) * -i) + (c * (t * j)))
	elif t_1 <= 1e+307:
		tmp = t_1
	else:
		tmp = -((y * (i * j)) + (a * (t * x))) + (c * ((t * j) - (b * z)))
	return tmp
function code(x, y, z, t, a, b, c, i, j)
	return Float64(Float64(Float64(x * Float64(Float64(y * z) - Float64(t * a))) - Float64(b * Float64(Float64(c * z) - Float64(i * a)))) + Float64(j * Float64(Float64(c * t) - Float64(i * y))))
end
function code(x, y, z, t, a, b, c, i, j)
	t_1 = Float64(Float64(Float64(x * Float64(Float64(y * z) - Float64(t * a))) - Float64(b * Float64(Float64(c * z) - Float64(i * a)))) + Float64(j * Float64(Float64(c * t) - Float64(i * y))))
	tmp = 0.0
	if (t_1 <= Float64(-Inf))
		tmp = Float64(Float64(Float64(y * Float64(z * x)) - Float64(c * Float64(z * b))) + Float64(Float64(Float64(y * j) * Float64(-i)) + Float64(c * Float64(t * j))));
	elseif (t_1 <= 1e+307)
		tmp = t_1;
	else
		tmp = Float64(Float64(-Float64(Float64(y * Float64(i * j)) + Float64(a * Float64(t * x)))) + Float64(c * Float64(Float64(t * j) - Float64(b * z))));
	end
	return tmp
end
function tmp = code(x, y, z, t, a, b, c, i, j)
	tmp = ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y)));
end
function tmp_2 = code(x, y, z, t, a, b, c, i, j)
	t_1 = ((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y)));
	tmp = 0.0;
	if (t_1 <= -Inf)
		tmp = ((y * (z * x)) - (c * (z * b))) + (((y * j) * -i) + (c * (t * j)));
	elseif (t_1 <= 1e+307)
		tmp = t_1;
	else
		tmp = -((y * (i * j)) + (a * (t * x))) + (c * ((t * j) - (b * z)));
	end
	tmp_2 = tmp;
end
code[x_, y_, z_, t_, a_, b_, c_, i_, j_] := N[(N[(N[(x * N[(N[(y * z), $MachinePrecision] - N[(t * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(b * N[(N[(c * z), $MachinePrecision] - N[(i * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(j * N[(N[(c * t), $MachinePrecision] - N[(i * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_, t_, a_, b_, c_, i_, j_] := Block[{t$95$1 = N[(N[(N[(x * N[(N[(y * z), $MachinePrecision] - N[(t * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(b * N[(N[(c * z), $MachinePrecision] - N[(i * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(j * N[(N[(c * t), $MachinePrecision] - N[(i * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, (-Infinity)], N[(N[(N[(y * N[(z * x), $MachinePrecision]), $MachinePrecision] - N[(c * N[(z * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(N[(y * j), $MachinePrecision] * (-i)), $MachinePrecision] + N[(c * N[(t * j), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$1, 1e+307], t$95$1, N[((-N[(N[(y * N[(i * j), $MachinePrecision]), $MachinePrecision] + N[(a * N[(t * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]) + N[(c * N[(N[(t * j), $MachinePrecision] - N[(b * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
\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}
t_1 := \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)\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;\left(y \cdot \left(z \cdot x\right) - c \cdot \left(z \cdot b\right)\right) + \left(\left(y \cdot j\right) \cdot \left(-i\right) + c \cdot \left(t \cdot j\right)\right)\\

\mathbf{elif}\;t_1 \leq 10^{+307}:\\
\;\;\;\;t_1\\

\mathbf{else}:\\
\;\;\;\;\left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\


\end{array}

Error?

Try it out?

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original12.3
Target16.0
Herbie5.7
\[\begin{array}{l} \mathbf{if}\;t < -8.120978919195912 \cdot 10^{-33}:\\ \;\;\;\;x \cdot \left(z \cdot y - a \cdot t\right) - \left(b \cdot \left(z \cdot c - a \cdot i\right) - \left(c \cdot t - y \cdot i\right) \cdot j\right)\\ \mathbf{elif}\;t < -4.712553818218485 \cdot 10^{-169}:\\ \;\;\;\;\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}\\ \mathbf{elif}\;t < -7.633533346031584 \cdot 10^{-308}:\\ \;\;\;\;x \cdot \left(z \cdot y - a \cdot t\right) - \left(b \cdot \left(z \cdot c - a \cdot i\right) - \left(c \cdot t - y \cdot i\right) \cdot j\right)\\ \mathbf{elif}\;t < 1.0535888557455487 \cdot 10^{-139}:\\ \;\;\;\;\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}\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(z \cdot y - a \cdot t\right) - \left(b \cdot \left(z \cdot c - a \cdot i\right) - \left(c \cdot t - y \cdot i\right) \cdot j\right)\\ \end{array} \]

Derivation?

  1. Split input into 3 regimes
  2. if (+.f64 (-.f64 (*.f64 x (-.f64 (*.f64 y z) (*.f64 t a))) (*.f64 b (-.f64 (*.f64 c z) (*.f64 i a)))) (*.f64 j (-.f64 (*.f64 c t) (*.f64 i y)))) < -inf.0

    1. Initial program 64.0

      \[\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. Simplified64.0

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

      [Start]64.0

      \[ \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) \]

      rational_best.json-simplify-2 [=>]64.0

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

      rational_best.json-simplify-2 [=>]64.0

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

      rational_best.json-simplify-2 [=>]64.0

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

      rational_best.json-simplify-2 [=>]64.0

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + j \cdot \left(t \cdot c - \color{blue}{y \cdot i}\right) \]
    3. Taylor expanded in t around 0 43.4

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

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

      [Start]43.4

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + \left(c \cdot \left(t \cdot j\right) + -1 \cdot \left(i \cdot \left(y \cdot j\right)\right)\right) \]

      rational_best.json-simplify-1 [<=]43.4

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

      rational_best.json-simplify-44 [=>]43.4

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

      rational_best.json-simplify-44 [<=]43.4

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

      rational_best.json-simplify-2 [=>]43.4

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

      rational_best.json-simplify-44 [=>]43.4

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

      rational_best.json-simplify-2 [=>]43.4

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

      rational_best.json-simplify-12 [=>]43.4

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + \left(\left(y \cdot j\right) \cdot \color{blue}{\left(-i\right)} + c \cdot \left(t \cdot j\right)\right) \]
    5. Taylor expanded in y around inf 34.5

      \[\leadsto \left(\color{blue}{y \cdot \left(z \cdot x\right)} - b \cdot \left(z \cdot c - a \cdot i\right)\right) + \left(\left(y \cdot j\right) \cdot \left(-i\right) + c \cdot \left(t \cdot j\right)\right) \]
    6. Taylor expanded in z around inf 28.0

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

    if -inf.0 < (+.f64 (-.f64 (*.f64 x (-.f64 (*.f64 y z) (*.f64 t a))) (*.f64 b (-.f64 (*.f64 c z) (*.f64 i a)))) (*.f64 j (-.f64 (*.f64 c t) (*.f64 i y)))) < 9.99999999999999986e306

    1. Initial program 0.9

      \[\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) \]

    if 9.99999999999999986e306 < (+.f64 (-.f64 (*.f64 x (-.f64 (*.f64 y z) (*.f64 t a))) (*.f64 b (-.f64 (*.f64 c z) (*.f64 i a)))) (*.f64 j (-.f64 (*.f64 c t) (*.f64 i y))))

    1. Initial program 63.1

      \[\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. Simplified63.1

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

      [Start]63.1

      \[ \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) \]

      rational_best.json-simplify-2 [=>]63.1

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

      rational_best.json-simplify-2 [=>]63.1

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

      rational_best.json-simplify-2 [=>]63.1

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

      rational_best.json-simplify-2 [=>]63.1

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + j \cdot \left(t \cdot c - \color{blue}{y \cdot i}\right) \]
    3. Taylor expanded in z around inf 52.2

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

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

      [Start]52.2

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - c \cdot \left(z \cdot b\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]

      rational_best.json-simplify-2 [=>]52.2

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

      rational_best.json-simplify-44 [=>]60.6

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - \color{blue}{b \cdot \left(c \cdot z\right)}\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]
    5. Taylor expanded in y around 0 50.5

      \[\leadsto \left(\color{blue}{-1 \cdot \left(a \cdot \left(t \cdot x\right)\right)} - b \cdot \left(c \cdot z\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]
    6. Simplified50.5

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

      [Start]50.5

      \[ \left(-1 \cdot \left(a \cdot \left(t \cdot x\right)\right) - b \cdot \left(c \cdot z\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]

      rational_best.json-simplify-2 [=>]50.5

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

      rational_best.json-simplify-44 [=>]50.5

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

      rational_best.json-simplify-2 [=>]50.5

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

      rational_best.json-simplify-12 [=>]50.5

      \[ \left(\left(t \cdot x\right) \cdot \color{blue}{\left(-a\right)} - b \cdot \left(c \cdot z\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]
    7. Taylor expanded in c around 0 26.7

      \[\leadsto \color{blue}{c \cdot \left(t \cdot j - z \cdot b\right) + \left(-1 \cdot \left(a \cdot \left(t \cdot x\right)\right) + -1 \cdot \left(y \cdot \left(i \cdot j\right)\right)\right)} \]
    8. Simplified26.7

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

      [Start]26.7

      \[ c \cdot \left(t \cdot j - z \cdot b\right) + \left(-1 \cdot \left(a \cdot \left(t \cdot x\right)\right) + -1 \cdot \left(y \cdot \left(i \cdot j\right)\right)\right) \]

      rational_best.json-simplify-1 [=>]26.7

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

      rational_best.json-simplify-47 [=>]26.7

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

      rational_best.json-simplify-2 [=>]26.7

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

      rational_best.json-simplify-12 [=>]26.7

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

      rational_best.json-simplify-2 [=>]26.7

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

    \[\leadsto \begin{array}{l} \mathbf{if}\;\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) \leq -\infty:\\ \;\;\;\;\left(y \cdot \left(z \cdot x\right) - c \cdot \left(z \cdot b\right)\right) + \left(\left(y \cdot j\right) \cdot \left(-i\right) + c \cdot \left(t \cdot j\right)\right)\\ \mathbf{elif}\;\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) \leq 10^{+307}:\\ \;\;\;\;\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)\\ \mathbf{else}:\\ \;\;\;\;\left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ \end{array} \]

Alternatives

Alternative 1
Error18.4
Cost3248
\[\begin{array}{l} t_1 := c \cdot \left(z \cdot b\right)\\ t_2 := \left(y \cdot j\right) \cdot \left(-i\right)\\ t_3 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_4 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_5 := y \cdot \left(z \cdot x\right)\\ t_6 := t_5 - t_3\\ t_7 := t_6 + t_4\\ t_8 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_9 := \left(t_8 - a \cdot \left(-b \cdot i\right)\right) + t_4\\ t_10 := t_8 - t_3\\ t_11 := c \cdot \left(t \cdot j\right)\\ \mathbf{if}\;a \leq -1.8 \cdot 10^{+147}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;a \leq -3.8 \cdot 10^{+84}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_3\right) + t_11\\ \mathbf{elif}\;a \leq -5.8 \cdot 10^{+62}:\\ \;\;\;\;t_6 + t_2\\ \mathbf{elif}\;a \leq -2.1 \cdot 10^{-86}:\\ \;\;\;\;\left(t_8 - t_1\right) + t_4\\ \mathbf{elif}\;a \leq -2.6 \cdot 10^{-120}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;a \leq -5.2 \cdot 10^{-174}:\\ \;\;\;\;\left(t_5 - t_1\right) + \left(t_2 + t_11\right)\\ \mathbf{elif}\;a \leq -6.6 \cdot 10^{-177}:\\ \;\;\;\;t_5 + t \cdot \left(c \cdot j\right)\\ \mathbf{elif}\;a \leq -1.65 \cdot 10^{-215}:\\ \;\;\;\;t_10 + t_11\\ \mathbf{elif}\;a \leq 1.2 \cdot 10^{-215}:\\ \;\;\;\;\left(t_8 - b \cdot \left(c \cdot z\right)\right) + t_4\\ \mathbf{elif}\;a \leq 2.45 \cdot 10^{-160}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;a \leq 7.5 \cdot 10^{-46}:\\ \;\;\;\;t_10 + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;a \leq 0.0056:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_3\right) + t_4\\ \mathbf{else}:\\ \;\;\;\;t_9\\ \end{array} \]
Alternative 2
Error25.5
Cost3124
\[\begin{array}{l} t_1 := -1 \cdot \left(t \cdot \left(a \cdot x\right)\right)\\ t_2 := t_1 - a \cdot \left(-b \cdot i\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ t_4 := y \cdot \left(z \cdot x\right)\\ t_5 := c \cdot \left(z \cdot b\right)\\ t_6 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_7 := \left(t_4 - t_6\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ t_8 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_9 := \left(t_4 - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + t_8\\ t_10 := \left(t_1 - t_6\right) + t_3\\ \mathbf{if}\;y \leq -7 \cdot 10^{+84}:\\ \;\;\;\;\left(t_4 - t_5\right) + t_8\\ \mathbf{elif}\;y \leq -5.1 \cdot 10^{-39}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;y \leq -1.5 \cdot 10^{-90}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;y \leq -4.2 \cdot 10^{-153}:\\ \;\;\;\;t_10\\ \mathbf{elif}\;y \leq -1.22 \cdot 10^{-267}:\\ \;\;\;\;\left(\left(t \cdot x\right) \cdot \left(-a\right) - b \cdot \left(c \cdot z\right)\right) + t_8\\ \mathbf{elif}\;y \leq 1.5 \cdot 10^{-298}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;y \leq 5 \cdot 10^{-252}:\\ \;\;\;\;t_10\\ \mathbf{elif}\;y \leq 1.32 \cdot 10^{-55}:\\ \;\;\;\;t_2 + t_8\\ \mathbf{elif}\;y \leq 1.18 \cdot 10^{+61}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;y \leq 1.2 \cdot 10^{+80}:\\ \;\;\;\;t_2 + t_3\\ \mathbf{elif}\;y \leq 1.45 \cdot 10^{+131}:\\ \;\;\;\;\left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ \mathbf{elif}\;y \leq 7.8 \cdot 10^{+264}:\\ \;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - t_5\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;y \leq 1.65 \cdot 10^{+299}:\\ \;\;\;\;t_7\\ \mathbf{else}:\\ \;\;\;\;\left(y \cdot x - c \cdot b\right) \cdot z\\ \end{array} \]
Alternative 3
Error28.8
Cost2992
\[\begin{array}{l} t_1 := b \cdot \left(c \cdot z\right)\\ t_2 := y \cdot \left(z \cdot x\right)\\ t_3 := \left(t_2 - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ t_4 := a \cdot \left(-b \cdot i\right)\\ t_5 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_6 := c \cdot \left(t \cdot j\right)\\ t_7 := c \cdot \left(z \cdot b\right)\\ \mathbf{if}\;t \leq -2.45 \cdot 10^{+42}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_4\right) + t_6\\ \mathbf{elif}\;t \leq -1.85 \cdot 10^{-109}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -4.2 \cdot 10^{-194}:\\ \;\;\;\;\left(t_2 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + t_6\\ \mathbf{elif}\;t \leq -5.3 \cdot 10^{-248}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -3.1 \cdot 10^{-278}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;t \leq -4.8 \cdot 10^{-299}:\\ \;\;\;\;\left(t_2 - t_4\right) + t_5\\ \mathbf{elif}\;t \leq 7.5 \cdot 10^{-237}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_1\right) + t_5\\ \mathbf{elif}\;t \leq 1.05 \cdot 10^{-231}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq 1.32 \cdot 10^{-199}:\\ \;\;\;\;\left(x \cdot \left(z \cdot y\right) - t_7\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;t \leq 1.4 \cdot 10^{-41}:\\ \;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - t_1\right) + t_6\\ \mathbf{elif}\;t \leq 1400:\\ \;\;\;\;\left(t_2 - t_7\right) + t_5\\ \mathbf{elif}\;t \leq 2.5 \cdot 10^{+58}:\\ \;\;\;\;\left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \end{array} \]
Alternative 4
Error27.7
Cost2928
\[\begin{array}{l} t_1 := a \cdot \left(-b \cdot i\right)\\ t_2 := c \cdot \left(t \cdot j\right)\\ t_3 := \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z\right)\right) + t_2\\ t_4 := \left(t \cdot x\right) \cdot \left(-a\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ t_5 := y \cdot \left(z \cdot x\right)\\ t_6 := \left(t_5 - t_1\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ t_7 := \left(t_5 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + t_2\\ \mathbf{if}\;b \leq -3.6 \cdot 10^{+56}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;b \leq -4 \cdot 10^{-100}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;b \leq -2.75 \cdot 10^{-117}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;b \leq -4.8 \cdot 10^{-204}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;b \leq -2.5 \cdot 10^{-236}:\\ \;\;\;\;\left(x \cdot \left(z \cdot y\right) - c \cdot \left(z \cdot b\right)\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;b \leq -4.3 \cdot 10^{-305}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;b \leq 6.4 \cdot 10^{-242}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-177}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;b \leq 4.6 \cdot 10^{-131}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_1\right) + t_2\\ \mathbf{elif}\;b \leq 5.6 \cdot 10^{-63}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;b \leq 3.8 \cdot 10^{-25}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;b \leq 180:\\ \;\;\;\;t_4\\ \mathbf{else}:\\ \;\;\;\;t_7\\ \end{array} \]
Alternative 5
Error24.7
Cost2924
\[\begin{array}{l} t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_3 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_4 := b \cdot \left(c \cdot z\right)\\ t_5 := c \cdot \left(t \cdot j\right)\\ t_6 := \left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_3\right) + t_5\\ t_7 := \left(y \cdot j\right) \cdot \left(-i\right)\\ t_8 := y \cdot \left(z \cdot x\right)\\ t_9 := \left(t_8 - a \cdot \left(-b \cdot i\right)\right) + t_2\\ t_10 := \left(t_8 - t_3\right) + t_7\\ t_11 := c \cdot \left(z \cdot b\right)\\ \mathbf{if}\;i \leq -2 \cdot 10^{+182}:\\ \;\;\;\;\left(t_8 - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + t_7\\ \mathbf{elif}\;i \leq -4.8 \cdot 10^{+120}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;i \leq -1.85 \cdot 10^{+73}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;i \leq -1.36 \cdot 10^{+20}:\\ \;\;\;\;\left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ \mathbf{elif}\;i \leq -5.2 \cdot 10^{-16}:\\ \;\;\;\;t_10\\ \mathbf{elif}\;i \leq -7 \cdot 10^{-194}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;i \leq 9 \cdot 10^{-262}:\\ \;\;\;\;\left(t_1 - t_4\right) + t_5\\ \mathbf{elif}\;i \leq 1.7 \cdot 10^{-171}:\\ \;\;\;\;\left(t_8 - t_11\right) + t_2\\ \mathbf{elif}\;i \leq 3 \cdot 10^{-131}:\\ \;\;\;\;\left(t_1 - t_11\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;i \leq 4.8 \cdot 10^{-105}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_4\right) + t_2\\ \mathbf{elif}\;i \leq 7 \cdot 10^{-11}:\\ \;\;\;\;t_6\\ \mathbf{else}:\\ \;\;\;\;t_10\\ \end{array} \]
Alternative 6
Error25.2
Cost2860
\[\begin{array}{l} t_1 := a \cdot \left(-b \cdot i\right)\\ t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_3 := \left(z \cdot \left(y \cdot x\right) - b \cdot \left(c \cdot z\right)\right) + t_2\\ t_4 := \left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ t_5 := c \cdot \left(t \cdot j\right)\\ t_6 := y \cdot \left(z \cdot x\right)\\ t_7 := \left(t_6 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + t_5\\ t_8 := \left(t_6 - t_1\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ \mathbf{if}\;b \leq -1.62 \cdot 10^{+68}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;b \leq -4.7 \cdot 10^{-55}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;b \leq -2.7 \cdot 10^{-92}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;b \leq -1.95 \cdot 10^{-187}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;b \leq -4 \cdot 10^{-202}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_1\right) + t_5\\ \mathbf{elif}\;b \leq -3 \cdot 10^{-266}:\\ \;\;\;\;\left(t_6 - c \cdot \left(z \cdot b\right)\right) + t_2\\ \mathbf{elif}\;b \leq 4.2 \cdot 10^{-288}:\\ \;\;\;\;\left(t \cdot x\right) \cdot \left(-a\right) + t_2\\ \mathbf{elif}\;b \leq 6.7 \cdot 10^{-254}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;b \leq 6.6 \cdot 10^{-132}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;b \leq 5.8 \cdot 10^{-64}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;b \leq 2.75 \cdot 10^{+53}:\\ \;\;\;\;t_4\\ \mathbf{else}:\\ \;\;\;\;t_7\\ \end{array} \]
Alternative 7
Error25.5
Cost2860
\[\begin{array}{l} t_1 := a \cdot \left(-b \cdot i\right)\\ t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_3 := \left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ t_4 := c \cdot \left(t \cdot j\right)\\ t_5 := \left(z \cdot \left(y \cdot x\right) - b \cdot \left(c \cdot z\right)\right) + t_2\\ t_6 := c \cdot \left(z \cdot b\right)\\ t_7 := y \cdot \left(z \cdot x\right)\\ t_8 := \left(t_7 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + t_4\\ t_9 := \left(t_7 - t_1\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ \mathbf{if}\;b \leq -2.35 \cdot 10^{+68}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;b \leq -2 \cdot 10^{-60}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;b \leq -5.9 \cdot 10^{-95}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;b \leq -1.95 \cdot 10^{-187}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;b \leq -7.8 \cdot 10^{-202}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_1\right) + t_4\\ \mathbf{elif}\;b \leq -1.6 \cdot 10^{-262}:\\ \;\;\;\;\left(t_7 - t_6\right) + t_2\\ \mathbf{elif}\;b \leq -3.2 \cdot 10^{-307}:\\ \;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - t_6\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;b \leq 2 \cdot 10^{-254}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;b \leq 6 \cdot 10^{-132}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;b \leq 4.4 \cdot 10^{-64}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;b \leq 1.2 \cdot 10^{+54}:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;t_8\\ \end{array} \]
Alternative 8
Error25.5
Cost2856
\[\begin{array}{l} t_1 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_2 := \left(y \cdot j\right) \cdot \left(-i\right)\\ t_3 := -1 \cdot \left(t \cdot \left(a \cdot x\right)\right)\\ t_4 := c \cdot \left(t \cdot j\right)\\ t_5 := y \cdot \left(z \cdot x\right)\\ t_6 := \left(t_5 - t_1\right) + t_2\\ t_7 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_8 := \left(t_3 - a \cdot \left(-b \cdot i\right)\right) + t_7\\ t_9 := \left(t_3 - t_1\right) + t_4\\ t_10 := t_5 - c \cdot \left(z \cdot b\right)\\ t_11 := \left(t_5 - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + t_7\\ \mathbf{if}\;y \leq -1.25 \cdot 10^{+85}:\\ \;\;\;\;t_10 + t_7\\ \mathbf{elif}\;y \leq -1.35 \cdot 10^{-39}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;y \leq -1.75 \cdot 10^{-90}:\\ \;\;\;\;t_11\\ \mathbf{elif}\;y \leq -4.4 \cdot 10^{-154}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;y \leq -1.02 \cdot 10^{-267}:\\ \;\;\;\;\left(\left(t \cdot x\right) \cdot \left(-a\right) - b \cdot \left(c \cdot z\right)\right) + t_7\\ \mathbf{elif}\;y \leq 1.5 \cdot 10^{-298}:\\ \;\;\;\;t_11\\ \mathbf{elif}\;y \leq 5 \cdot 10^{-252}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;y \leq 1.16 \cdot 10^{-56}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;y \leq 7 \cdot 10^{+66}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;y \leq 7.2 \cdot 10^{+128}:\\ \;\;\;\;t_8\\ \mathbf{else}:\\ \;\;\;\;t_10 + \left(t_2 + t_4\right)\\ \end{array} \]
Alternative 9
Error26.5
Cost2796
\[\begin{array}{l} t_1 := a \cdot \left(-b \cdot i\right)\\ t_2 := c \cdot \left(t \cdot j\right)\\ t_3 := y \cdot \left(z \cdot x\right)\\ t_4 := \left(t_3 - c \cdot \left(z \cdot b\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ t_5 := \left(t_3 - t_1\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ t_6 := \left(t_3 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + t_2\\ t_7 := \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z\right)\right) + t_2\\ \mathbf{if}\;b \leq -2.5 \cdot 10^{+55}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;b \leq -1.02 \cdot 10^{-122}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;b \leq -8.5 \cdot 10^{-202}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;b \leq 1.65 \cdot 10^{-302}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;b \leq 8.2 \cdot 10^{-242}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-177}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;b \leq 9.6 \cdot 10^{-132}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_1\right) + t_2\\ \mathbf{elif}\;b \leq 4.2 \cdot 10^{-65}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;b \leq 2.05 \cdot 10^{-24}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;b \leq 0.00172:\\ \;\;\;\;t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \mathbf{elif}\;b \leq 2.1 \cdot 10^{+19}:\\ \;\;\;\;t_4\\ \mathbf{else}:\\ \;\;\;\;t_6\\ \end{array} \]
Alternative 10
Error18.0
Cost2716
\[\begin{array}{l} t_1 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_2 := \left(i \cdot j\right) \cdot \left(-y\right)\\ t_3 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_5 := t_4 - c \cdot \left(z \cdot b\right)\\ t_6 := t_4 - t_1\\ t_7 := c \cdot \left(t \cdot j\right)\\ t_8 := \left(y \cdot \left(z \cdot x\right) - t_1\right) + \left(\left(y \cdot j\right) \cdot \left(-i\right) + t_7\right)\\ \mathbf{if}\;j \leq -1.05 \cdot 10^{+109}:\\ \;\;\;\;\left(t_4 - b \cdot \left(c \cdot z\right)\right) + t_3\\ \mathbf{elif}\;j \leq -6.8 \cdot 10^{-46}:\\ \;\;\;\;t_6 + t_2\\ \mathbf{elif}\;j \leq -5.1 \cdot 10^{-61}:\\ \;\;\;\;t_5 + t_2\\ \mathbf{elif}\;j \leq -2.1 \cdot 10^{-165}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;j \leq -4.5 \cdot 10^{-302}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_1\right) + t_3\\ \mathbf{elif}\;j \leq 3.7 \cdot 10^{-87}:\\ \;\;\;\;t_6 + t_7\\ \mathbf{elif}\;j \leq 7.8 \cdot 10^{+30}:\\ \;\;\;\;t_8\\ \mathbf{else}:\\ \;\;\;\;t_5 + t_3\\ \end{array} \]
Alternative 11
Error18.7
Cost2656
\[\begin{array}{l} t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_3 := \left(y \cdot j\right) \cdot \left(-i\right)\\ t_4 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_5 := t_1 - t_4\\ t_6 := c \cdot \left(t \cdot j\right)\\ t_7 := y \cdot \left(z \cdot x\right)\\ t_8 := \left(t_7 - c \cdot \left(z \cdot b\right)\right) + \left(t_3 + t_6\right)\\ t_9 := b \cdot \left(c \cdot z\right)\\ \mathbf{if}\;c \leq -1.06 \cdot 10^{+104}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;c \leq -8.5 \cdot 10^{+17}:\\ \;\;\;\;t_5 + t_6\\ \mathbf{elif}\;c \leq -3.2 \cdot 10^{-148}:\\ \;\;\;\;\left(t_1 - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + t_2\\ \mathbf{elif}\;c \leq -2.4 \cdot 10^{-232}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_4\right) + t_2\\ \mathbf{elif}\;c \leq 2.1 \cdot 10^{-220}:\\ \;\;\;\;t_5 + t_3\\ \mathbf{elif}\;c \leq 1.4 \cdot 10^{-125}:\\ \;\;\;\;\left(\left(t \cdot x\right) \cdot \left(-a\right) - t_9\right) + t_2\\ \mathbf{elif}\;c \leq 1.05 \cdot 10^{-104}:\\ \;\;\;\;\left(t_7 - b \cdot \left(i \cdot \left(-a\right)\right)\right) + t_3\\ \mathbf{elif}\;c \leq 3.3 \cdot 10^{+63}:\\ \;\;\;\;\left(t_1 - t_9\right) + t_2\\ \mathbf{else}:\\ \;\;\;\;t_8\\ \end{array} \]
Alternative 12
Error22.0
Cost2592
\[\begin{array}{l} t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_3 := \left(y \cdot j\right) \cdot \left(-i\right)\\ t_4 := c \cdot \left(t \cdot j\right)\\ t_5 := \left(x \cdot \left(y \cdot z - t \cdot a\right) - t_2\right) + t_4\\ t_6 := \left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - a \cdot \left(-b \cdot i\right)\right) + t_1\\ t_7 := y \cdot \left(z \cdot x\right)\\ t_8 := t_7 - c \cdot \left(z \cdot b\right)\\ \mathbf{if}\;y \leq -1 \cdot 10^{+67}:\\ \;\;\;\;t_8 + t_1\\ \mathbf{elif}\;y \leq -9.5 \cdot 10^{-40}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;y \leq -1.38 \cdot 10^{-81}:\\ \;\;\;\;\left(t_7 - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + t_1\\ \mathbf{elif}\;y \leq 3.8 \cdot 10^{-252}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;y \leq 1.75 \cdot 10^{-56}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;y \leq 9.5 \cdot 10^{+66}:\\ \;\;\;\;\left(t_7 - t_2\right) + t_3\\ \mathbf{elif}\;y \leq 1.15 \cdot 10^{+128}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;y \leq 8.2 \cdot 10^{+295}:\\ \;\;\;\;t_8 + \left(t_3 + t_4\right)\\ \mathbf{else}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_2\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \end{array} \]
Alternative 13
Error31.6
Cost2540
\[\begin{array}{l} t_1 := \left(y \cdot \left(z \cdot x\right) - b \cdot \left(i \cdot \left(-a\right)\right)\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ t_2 := \left(x \cdot \left(z \cdot y\right) - c \cdot \left(z \cdot b\right)\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ t_4 := \left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - a \cdot \left(-b \cdot i\right)\right) + t_3\\ t_5 := b \cdot \left(c \cdot z\right)\\ \mathbf{if}\;t \leq -2.9 \cdot 10^{+41}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq -24500000000:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq -1.85 \cdot 10^{-51}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq -1.15 \cdot 10^{-81}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq -1.7 \cdot 10^{-155}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq -1.02 \cdot 10^{-196}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -2.6 \cdot 10^{-247}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 2.9 \cdot 10^{-146}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 4.4 \cdot 10^{-41}:\\ \;\;\;\;\left(x \cdot \left(t \cdot \left(-a\right)\right) - t_5\right) + t_3\\ \mathbf{elif}\;t \leq 9.6 \cdot 10^{-30}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;t \leq 2.2 \cdot 10^{+57}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_5\right) + t_3\\ \mathbf{else}:\\ \;\;\;\;t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \end{array} \]
Alternative 14
Error20.9
Cost2524
\[\begin{array}{l} t_1 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_2 := \left(y \cdot \left(z \cdot x\right) - t_1\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ t_3 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_4 := -1 \cdot \left(t \cdot \left(a \cdot x\right)\right)\\ t_5 := \left(t_4 - a \cdot \left(-b \cdot i\right)\right) + t_3\\ \mathbf{if}\;t \leq -4.3 \cdot 10^{+108}:\\ \;\;\;\;\left(t_4 - t_1\right) + c \cdot \left(t \cdot j\right)\\ \mathbf{elif}\;t \leq -1.7 \cdot 10^{-51}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;t \leq -1.15 \cdot 10^{-81}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -9.5 \cdot 10^{-136}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;t \leq 1.8 \cdot 10^{-279}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_1\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;t \leq 6.1 \cdot 10^{-221}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 5.5 \cdot 10^{+165}:\\ \;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z\right)\right) + t_3\\ \mathbf{else}:\\ \;\;\;\;t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \end{array} \]
Alternative 15
Error16.2
Cost2524
\[\begin{array}{l} t_1 := c \cdot \left(z \cdot b\right)\\ t_2 := y \cdot \left(z \cdot x\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_5 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_6 := \left(t_4 - t_5\right) + t_3\\ t_7 := j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{if}\;b \leq -3.9 \cdot 10^{+77}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;b \leq -7.4 \cdot 10^{-88}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_5\right) + t_7\\ \mathbf{elif}\;b \leq 2.55 \cdot 10^{-104}:\\ \;\;\;\;\left(t_4 - t_1\right) + t_7\\ \mathbf{elif}\;b \leq 4 \cdot 10^{-36}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - a \cdot \left(-b \cdot i\right)\right) + t_7\\ \mathbf{elif}\;b \leq 7.2 \cdot 10^{-14}:\\ \;\;\;\;\left(t_4 - b \cdot \left(c \cdot z\right)\right) + t_7\\ \mathbf{elif}\;b \leq 3 \cdot 10^{+51}:\\ \;\;\;\;\left(t_2 - t_1\right) + \left(\left(y \cdot j\right) \cdot \left(-i\right) + t_3\right)\\ \mathbf{elif}\;b \leq 8.4 \cdot 10^{+220}:\\ \;\;\;\;\left(t_2 - t_5\right) + t_7\\ \mathbf{else}:\\ \;\;\;\;t_6\\ \end{array} \]
Alternative 16
Error24.7
Cost2464
\[\begin{array}{l} t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_2 := \left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ t_4 := y \cdot \left(z \cdot x\right)\\ t_5 := \left(t_4 - a \cdot \left(-b \cdot i\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ t_6 := t_4 - b \cdot \left(z \cdot c - a \cdot i\right)\\ t_7 := t_6 + \left(y \cdot j\right) \cdot \left(-i\right)\\ \mathbf{if}\;b \leq -4.5 \cdot 10^{+56}:\\ \;\;\;\;t_6 + t_3\\ \mathbf{elif}\;b \leq -3.5 \cdot 10^{-117}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;b \leq 1.9 \cdot 10^{-300}:\\ \;\;\;\;\left(t_1 - c \cdot \left(z \cdot b\right)\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;b \leq 8.2 \cdot 10^{-242}:\\ \;\;\;\;\left(t_1 - b \cdot \left(c \cdot z\right)\right) + t_3\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-187}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;b \leq 2.1 \cdot 10^{-132}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;b \leq 1.3 \cdot 10^{-62}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;b \leq 10^{+49}:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_7\\ \end{array} \]
Alternative 17
Error24.6
Cost2464
\[\begin{array}{l} t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_3 := \left(i \cdot j\right) \cdot \left(-y\right)\\ t_4 := \left(-\left(y \cdot \left(i \cdot j\right) + a \cdot \left(t \cdot x\right)\right)\right) + c \cdot \left(t \cdot j - b \cdot z\right)\\ t_5 := c \cdot \left(t \cdot j\right)\\ t_6 := y \cdot \left(z \cdot x\right)\\ t_7 := \left(t_6 - a \cdot \left(-b \cdot i\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ t_8 := t_6 - t_2\\ \mathbf{if}\;b \leq -5.5 \cdot 10^{+55}:\\ \;\;\;\;t_8 + t_5\\ \mathbf{elif}\;b \leq -4.3 \cdot 10^{-117}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;b \leq 3.8 \cdot 10^{-301}:\\ \;\;\;\;\left(t_1 - c \cdot \left(z \cdot b\right)\right) + t_3\\ \mathbf{elif}\;b \leq 6.6 \cdot 10^{-242}:\\ \;\;\;\;\left(t_1 - b \cdot \left(c \cdot z\right)\right) + t_5\\ \mathbf{elif}\;b \leq 6 \cdot 10^{-186}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_2\right) + t_3\\ \mathbf{elif}\;b \leq 1.9 \cdot 10^{-132}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;b \leq 2.7 \cdot 10^{-63}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;b \leq 5 \cdot 10^{+48}:\\ \;\;\;\;t_4\\ \mathbf{else}:\\ \;\;\;\;t_8 + \left(y \cdot j\right) \cdot \left(-i\right)\\ \end{array} \]
Alternative 18
Error18.4
Cost2460
\[\begin{array}{l} t_1 := a \cdot \left(-b \cdot i\right)\\ t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_3 := -1 \cdot \left(t \cdot \left(a \cdot x\right)\right)\\ t_4 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_5 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_6 := \left(t_5 - t_1\right) + t_2\\ \mathbf{if}\;t \leq -2.1 \cdot 10^{+105}:\\ \;\;\;\;\left(t_3 - t_4\right) + c \cdot \left(t \cdot j\right)\\ \mathbf{elif}\;t \leq -1.12 \cdot 10^{-35}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;t \leq 1.9 \cdot 10^{-148}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_4\right) + t_2\\ \mathbf{elif}\;t \leq 2.4 \cdot 10^{-70}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;t \leq 8 \cdot 10^{-13}:\\ \;\;\;\;\left(\left(t \cdot x\right) \cdot \left(-a\right) - t_4\right) + t_2\\ \mathbf{elif}\;t \leq 4 \cdot 10^{+37}:\\ \;\;\;\;\left(t_5 - t_4\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ \mathbf{elif}\;t \leq 5.3 \cdot 10^{+112}:\\ \;\;\;\;\left(t_3 - t_1\right) + t_2\\ \mathbf{else}:\\ \;\;\;\;t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \end{array} \]
Alternative 19
Error16.9
Cost2392
\[\begin{array}{l} t_1 := y \cdot \left(z \cdot x\right)\\ t_2 := c \cdot \left(z \cdot b\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_5 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_6 := \left(t_4 - t_5\right) + t_3\\ t_7 := j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{if}\;b \leq -2.3 \cdot 10^{+55}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;b \leq 1.8 \cdot 10^{-104}:\\ \;\;\;\;\left(t_4 - t_2\right) + t_7\\ \mathbf{elif}\;b \leq 1.2 \cdot 10^{-35}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - a \cdot \left(-b \cdot i\right)\right) + t_7\\ \mathbf{elif}\;b \leq 7.5 \cdot 10^{-14}:\\ \;\;\;\;\left(t_4 - b \cdot \left(c \cdot z\right)\right) + t_7\\ \mathbf{elif}\;b \leq 6.2 \cdot 10^{+52}:\\ \;\;\;\;\left(t_1 - t_2\right) + \left(\left(y \cdot j\right) \cdot \left(-i\right) + t_3\right)\\ \mathbf{elif}\;b \leq 8.6 \cdot 10^{+216}:\\ \;\;\;\;\left(t_1 - t_5\right) + t_7\\ \mathbf{else}:\\ \;\;\;\;t_6\\ \end{array} \]
Alternative 20
Error17.2
Cost2388
\[\begin{array}{l} t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_3 := -1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_2\\ t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_5 := \left(t_4 - a \cdot \left(-b \cdot i\right)\right) + t_1\\ \mathbf{if}\;t \leq -8 \cdot 10^{+108}:\\ \;\;\;\;t_3 + c \cdot \left(t \cdot j\right)\\ \mathbf{elif}\;t \leq -5.6 \cdot 10^{-37}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;t \leq 3.5 \cdot 10^{-236}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_2\right) + t_1\\ \mathbf{elif}\;t \leq 1.7 \cdot 10^{-186}:\\ \;\;\;\;\left(t_4 - t_2\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;t \leq 5.6 \cdot 10^{-70}:\\ \;\;\;\;t_5\\ \mathbf{else}:\\ \;\;\;\;t_3 + t_1\\ \end{array} \]
Alternative 21
Error23.7
Cost2332
\[\begin{array}{l} t_1 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_2 := c \cdot \left(z \cdot b\right)\\ t_3 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_4 := \left(i \cdot j\right) \cdot \left(-y\right)\\ t_5 := \left(\left(t \cdot x\right) \cdot \left(-a\right) - b \cdot \left(c \cdot z\right)\right) + t_3\\ t_6 := \left(x \cdot \left(y \cdot z - t \cdot a\right) - t_2\right) + t_4\\ t_7 := y \cdot \left(z \cdot x\right)\\ t_8 := \left(t_7 - t_1\right) + c \cdot \left(t \cdot j\right)\\ \mathbf{if}\;j \leq -1 \cdot 10^{+123}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;j \leq -2.9 \cdot 10^{-210}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;j \leq -4 \cdot 10^{-261}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;j \leq 2.6 \cdot 10^{-261}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;j \leq 5 \cdot 10^{-79}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;j \leq 1.95 \cdot 10^{+37}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_1\right) + t_4\\ \mathbf{elif}\;j \leq 6.8 \cdot 10^{+128}:\\ \;\;\;\;\left(t_7 - t_2\right) + t_3\\ \mathbf{else}:\\ \;\;\;\;t_5\\ \end{array} \]
Alternative 22
Error24.0
Cost2332
\[\begin{array}{l} t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_3 := y \cdot \left(z \cdot x\right)\\ t_4 := \left(t_3 - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + t_1\\ t_5 := t_3 - t_2\\ t_6 := c \cdot \left(t \cdot j\right)\\ t_7 := b \cdot \left(c \cdot z\right)\\ \mathbf{if}\;t \leq -2.26 \cdot 10^{+61}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - t_2\right) + t_6\\ \mathbf{elif}\;t \leq -3.3 \cdot 10^{-137}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq -8.5 \cdot 10^{-270}:\\ \;\;\;\;t_5 + \left(y \cdot j\right) \cdot \left(-i\right)\\ \mathbf{elif}\;t \leq -1.55 \cdot 10^{-298}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 8.5 \cdot 10^{-124}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_2\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;t \leq 3.8 \cdot 10^{-71}:\\ \;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - t_7\right) + t_6\\ \mathbf{elif}\;t \leq 3.8 \cdot 10^{-45}:\\ \;\;\;\;t_5 + t_6\\ \mathbf{else}:\\ \;\;\;\;\left(\left(t \cdot x\right) \cdot \left(-a\right) - t_7\right) + t_1\\ \end{array} \]
Alternative 23
Error18.6
Cost2328
\[\begin{array}{l} t_1 := a \cdot \left(-b \cdot i\right)\\ t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_3 := -1 \cdot \left(t \cdot \left(a \cdot x\right)\right)\\ t_4 := b \cdot \left(z \cdot c - a \cdot i\right)\\ t_5 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_6 := \left(t_5 - t_1\right) + t_2\\ \mathbf{if}\;t \leq -2.2 \cdot 10^{+107}:\\ \;\;\;\;\left(t_3 - t_4\right) + c \cdot \left(t \cdot j\right)\\ \mathbf{elif}\;t \leq -2 \cdot 10^{-41}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;t \leq 4.2 \cdot 10^{-147}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_4\right) + t_2\\ \mathbf{elif}\;t \leq 5.6 \cdot 10^{-70}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;t \leq 0.00125:\\ \;\;\;\;\left(y \cdot \left(z \cdot x\right) - t_4\right) + t_2\\ \mathbf{elif}\;t \leq 9.2 \cdot 10^{+26}:\\ \;\;\;\;\left(t_5 - c \cdot \left(z \cdot b\right)\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{else}:\\ \;\;\;\;\left(t_3 - t_1\right) + t_2\\ \end{array} \]
Alternative 24
Error29.2
Cost2268
\[\begin{array}{l} t_1 := \left(x \cdot \left(z \cdot y\right) - c \cdot \left(z \cdot b\right)\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ t_2 := \left(y \cdot \left(z \cdot x\right) - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ t_4 := \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z\right)\right) + t_3\\ \mathbf{if}\;t \leq -5.2 \cdot 10^{+45}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - a \cdot \left(-b \cdot i\right)\right) + t_3\\ \mathbf{elif}\;t \leq -1.02 \cdot 10^{-132}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -9.8 \cdot 10^{-193}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq -3.2 \cdot 10^{-249}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 1.16 \cdot 10^{-199}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 7.5 \cdot 10^{-41}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 4.7 \cdot 10^{-26}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;t_4\\ \end{array} \]
Alternative 25
Error31.0
Cost2144
\[\begin{array}{l} t_1 := \left(x \cdot \left(z \cdot y\right) - c \cdot \left(z \cdot b\right)\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ t_2 := \left(y \cdot \left(z \cdot x\right) - -1 \cdot \left(i \cdot \left(b \cdot a\right)\right)\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ t_3 := b \cdot \left(c \cdot z\right)\\ t_4 := c \cdot \left(t \cdot j\right)\\ \mathbf{if}\;t \leq -1.05 \cdot 10^{+44}:\\ \;\;\;\;\left(-1 \cdot \left(t \cdot \left(a \cdot x\right)\right) - a \cdot \left(-b \cdot i\right)\right) + t_4\\ \mathbf{elif}\;t \leq -1.75 \cdot 10^{-131}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -2.4 \cdot 10^{-195}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq -7 \cdot 10^{-249}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 1.9 \cdot 10^{-146}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 9.5 \cdot 10^{-42}:\\ \;\;\;\;\left(x \cdot \left(t \cdot \left(-a\right)\right) - t_3\right) + t_4\\ \mathbf{elif}\;t \leq 5.5 \cdot 10^{-31}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;t \leq 1.4 \cdot 10^{+57}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_3\right) + t_4\\ \mathbf{else}:\\ \;\;\;\;t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \end{array} \]
Alternative 26
Error33.4
Cost1884
\[\begin{array}{l} t_1 := c \cdot \left(b \cdot z\right)\\ t_2 := \left(y \cdot x - c \cdot b\right) \cdot z + c \cdot \left(t \cdot j\right)\\ t_3 := \left(c \cdot t - y \cdot i\right) \cdot j - t_1\\ t_4 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \mathbf{if}\;t \leq -2.95 \cdot 10^{+60}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq -2.35 \cdot 10^{-54}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -4.9 \cdot 10^{-175}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -6.9 \cdot 10^{-295}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq 7.5 \cdot 10^{-245}:\\ \;\;\;\;y \cdot \left(z \cdot x\right) - t_1\\ \mathbf{elif}\;t \leq 1.06 \cdot 10^{-200}:\\ \;\;\;\;y \cdot \left(i \cdot \left(-j\right)\right) - z \cdot \left(c \cdot b\right)\\ \mathbf{elif}\;t \leq 1650:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_4\\ \end{array} \]
Alternative 27
Error33.0
Cost1884
\[\begin{array}{l} t_1 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ t_2 := \left(y \cdot x - c \cdot b\right) \cdot z + c \cdot \left(t \cdot j\right)\\ t_3 := c \cdot \left(b \cdot z\right)\\ \mathbf{if}\;t \leq -3.4 \cdot 10^{+71}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq -5.4 \cdot 10^{-54}:\\ \;\;\;\;\left(t \cdot x\right) \cdot \left(-a\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{elif}\;t \leq -5 \cdot 10^{-175}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -8 \cdot 10^{-297}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - t_3\\ \mathbf{elif}\;t \leq 8.8 \cdot 10^{-243}:\\ \;\;\;\;y \cdot \left(z \cdot x\right) - t_3\\ \mathbf{elif}\;t \leq 1.4 \cdot 10^{-199}:\\ \;\;\;\;y \cdot \left(i \cdot \left(-j\right)\right) - z \cdot \left(c \cdot b\right)\\ \mathbf{elif}\;t \leq 2400:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_1\\ \end{array} \]
Alternative 28
Error33.0
Cost1884
\[\begin{array}{l} t_1 := c \cdot \left(b \cdot z\right)\\ t_2 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ \mathbf{if}\;t \leq -1.05 \cdot 10^{+72}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -6.2 \cdot 10^{-54}:\\ \;\;\;\;\left(t \cdot x\right) \cdot \left(-a\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{elif}\;t \leq -4.9 \cdot 10^{-175}:\\ \;\;\;\;\left(x \cdot \left(z \cdot y\right) - b \cdot \left(c \cdot z\right)\right) + t_3\\ \mathbf{elif}\;t \leq -1.08 \cdot 10^{-296}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - t_1\\ \mathbf{elif}\;t \leq 3.35 \cdot 10^{-245}:\\ \;\;\;\;y \cdot \left(z \cdot x\right) - t_1\\ \mathbf{elif}\;t \leq 1.4 \cdot 10^{-200}:\\ \;\;\;\;y \cdot \left(i \cdot \left(-j\right)\right) - z \cdot \left(c \cdot b\right)\\ \mathbf{elif}\;t \leq 6400:\\ \;\;\;\;\left(y \cdot x - c \cdot b\right) \cdot z + t_3\\ \mathbf{else}:\\ \;\;\;\;t_2\\ \end{array} \]
Alternative 29
Error32.9
Cost1884
\[\begin{array}{l} t_1 := b \cdot \left(c \cdot z\right)\\ t_2 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ \mathbf{if}\;t \leq -1.15 \cdot 10^{+71}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -4.9 \cdot 10^{-54}:\\ \;\;\;\;\left(t \cdot x\right) \cdot \left(-a\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{elif}\;t \leq -5 \cdot 10^{-175}:\\ \;\;\;\;\left(x \cdot \left(z \cdot y\right) - t_1\right) + t_3\\ \mathbf{elif}\;t \leq -5.5 \cdot 10^{-298}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;t \leq 3.2 \cdot 10^{-242}:\\ \;\;\;\;\left(y \cdot \left(z \cdot x\right) - t_1\right) + t_3\\ \mathbf{elif}\;t \leq 3.9 \cdot 10^{-200}:\\ \;\;\;\;y \cdot \left(i \cdot \left(-j\right)\right) - z \cdot \left(c \cdot b\right)\\ \mathbf{elif}\;t \leq 6800:\\ \;\;\;\;\left(y \cdot x - c \cdot b\right) \cdot z + t_3\\ \mathbf{else}:\\ \;\;\;\;t_2\\ \end{array} \]
Alternative 30
Error32.9
Cost1884
\[\begin{array}{l} t_1 := b \cdot \left(c \cdot z\right)\\ t_2 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ t_3 := c \cdot \left(t \cdot j\right)\\ \mathbf{if}\;t \leq -1.35 \cdot 10^{+71}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -2.35 \cdot 10^{-54}:\\ \;\;\;\;\left(t \cdot x\right) \cdot \left(-a\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{elif}\;t \leq -5 \cdot 10^{-175}:\\ \;\;\;\;\left(x \cdot \left(z \cdot y\right) - t_1\right) + t_3\\ \mathbf{elif}\;t \leq -1.05 \cdot 10^{-293}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;t \leq 4.6 \cdot 10^{-243}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_1\right) + t_3\\ \mathbf{elif}\;t \leq 3.5 \cdot 10^{-200}:\\ \;\;\;\;y \cdot \left(i \cdot \left(-j\right)\right) - z \cdot \left(c \cdot b\right)\\ \mathbf{elif}\;t \leq 5200:\\ \;\;\;\;\left(y \cdot x - c \cdot b\right) \cdot z + t_3\\ \mathbf{else}:\\ \;\;\;\;t_2\\ \end{array} \]
Alternative 31
Error30.2
Cost1880
\[\begin{array}{l} t_1 := b \cdot \left(c \cdot z\right)\\ t_2 := c \cdot \left(t \cdot j\right)\\ t_3 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \mathbf{if}\;t \leq -7 \cdot 10^{+71}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -1.08 \cdot 10^{-54}:\\ \;\;\;\;\left(t \cdot x\right) \cdot \left(-a\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{elif}\;t \leq 2.9 \cdot 10^{-146}:\\ \;\;\;\;\left(x \cdot \left(z \cdot y\right) - c \cdot \left(z \cdot b\right)\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;t \leq 2.2 \cdot 10^{-42}:\\ \;\;\;\;\left(x \cdot \left(t \cdot \left(-a\right)\right) - t_1\right) + t_2\\ \mathbf{elif}\;t \leq 1.48 \cdot 10^{-30}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;t \leq 2.4 \cdot 10^{+58}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_1\right) + t_2\\ \mathbf{else}:\\ \;\;\;\;t_3\\ \end{array} \]
Alternative 32
Error30.8
Cost1880
\[\begin{array}{l} t_1 := b \cdot \left(c \cdot z\right)\\ t_2 := c \cdot \left(t \cdot j\right)\\ t_3 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \mathbf{if}\;t \leq -8 \cdot 10^{+43}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -3.9 \cdot 10^{-132}:\\ \;\;\;\;\left(y \cdot \left(z \cdot x\right) - a \cdot \left(-b \cdot i\right)\right) + \left(y \cdot j\right) \cdot \left(-i\right)\\ \mathbf{elif}\;t \leq 1.95 \cdot 10^{-146}:\\ \;\;\;\;\left(x \cdot \left(z \cdot y\right) - c \cdot \left(z \cdot b\right)\right) + \left(i \cdot j\right) \cdot \left(-y\right)\\ \mathbf{elif}\;t \leq 1.45 \cdot 10^{-41}:\\ \;\;\;\;\left(x \cdot \left(t \cdot \left(-a\right)\right) - t_1\right) + t_2\\ \mathbf{elif}\;t \leq 5.5 \cdot 10^{-31}:\\ \;\;\;\;\left(c \cdot t - y \cdot i\right) \cdot j - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;t \leq 1.7 \cdot 10^{+58}:\\ \;\;\;\;\left(z \cdot \left(y \cdot x\right) - t_1\right) + t_2\\ \mathbf{else}:\\ \;\;\;\;t_3\\ \end{array} \]
Alternative 33
Error34.2
Cost1752
\[\begin{array}{l} t_1 := y \cdot \left(i \cdot \left(-j\right)\right) - z \cdot \left(c \cdot b\right)\\ t_2 := \left(y \cdot x - c \cdot b\right) \cdot z + c \cdot \left(t \cdot j\right)\\ t_3 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \mathbf{if}\;t \leq -8.2 \cdot 10^{-46}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -5 \cdot 10^{-175}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -1.85 \cdot 10^{-298}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 5 \cdot 10^{-243}:\\ \;\;\;\;y \cdot \left(z \cdot x\right) - c \cdot \left(b \cdot z\right)\\ \mathbf{elif}\;t \leq 1.25 \cdot 10^{-200}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 7000:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_3\\ \end{array} \]
Alternative 34
Error38.1
Cost1696
\[\begin{array}{l} t_1 := y \cdot \left(z \cdot x\right) - c \cdot \left(b \cdot z\right)\\ t_2 := \left(c \cdot t - i \cdot y\right) \cdot j\\ t_3 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ t_4 := \left(y \cdot x - c \cdot b\right) \cdot z\\ \mathbf{if}\;t \leq -1 \cdot 10^{+58}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -1.05 \cdot 10^{-135}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -2.1 \cdot 10^{-269}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq -2.4 \cdot 10^{-293}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 6 \cdot 10^{-278}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 2.6 \cdot 10^{-237}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 5.4 \cdot 10^{-200}:\\ \;\;\;\;y \cdot \left(i \cdot \left(-j\right)\right)\\ \mathbf{elif}\;t \leq 1.3 \cdot 10^{+56}:\\ \;\;\;\;t_4\\ \mathbf{else}:\\ \;\;\;\;t_3\\ \end{array} \]
Alternative 35
Error37.3
Cost1564
\[\begin{array}{l} t_1 := y \cdot \left(z \cdot x\right) - c \cdot \left(b \cdot z\right)\\ t_2 := y \cdot \left(i \cdot \left(-j\right)\right) - z \cdot \left(c \cdot b\right)\\ t_3 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \mathbf{if}\;t \leq -2.15 \cdot 10^{+57}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -6.4 \cdot 10^{-143}:\\ \;\;\;\;\left(c \cdot t - i \cdot y\right) \cdot j\\ \mathbf{elif}\;t \leq -5.5 \cdot 10^{-207}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq -1.75 \cdot 10^{-293}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 3 \cdot 10^{-242}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.25 \cdot 10^{-200}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 1.5 \cdot 10^{+56}:\\ \;\;\;\;\left(y \cdot x - c \cdot b\right) \cdot z\\ \mathbf{else}:\\ \;\;\;\;t_3\\ \end{array} \]
Alternative 36
Error38.7
Cost1432
\[\begin{array}{l} t_1 := \left(y \cdot x - c \cdot b\right) \cdot z\\ t_2 := t \cdot \left(j \cdot c + x \cdot \left(-a\right)\right)\\ \mathbf{if}\;t \leq -3.9 \cdot 10^{+58}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -2.55 \cdot 10^{-110}:\\ \;\;\;\;\left(c \cdot t - i \cdot y\right) \cdot j\\ \mathbf{elif}\;t \leq -4.2 \cdot 10^{-305}:\\ \;\;\;\;c \cdot \left(t \cdot j - z \cdot b\right)\\ \mathbf{elif}\;t \leq 3.15 \cdot 10^{-232}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.9 \cdot 10^{-200}:\\ \;\;\;\;y \cdot \left(i \cdot \left(-j\right)\right)\\ \mathbf{elif}\;t \leq 6.5 \cdot 10^{+57}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;t_2\\ \end{array} \]
Alternative 37
Error49.8
Cost1044
\[\begin{array}{l} t_1 := y \cdot \left(i \cdot \left(-j\right)\right)\\ t_2 := b \cdot \left(c \cdot \left(-z\right)\right)\\ \mathbf{if}\;b \leq -5.2 \cdot 10^{+56}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;b \leq 2.9 \cdot 10^{-303}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;b \leq 4 \cdot 10^{-242}:\\ \;\;\;\;c \cdot \left(t \cdot j\right)\\ \mathbf{elif}\;b \leq 3.4 \cdot 10^{-173}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;b \leq 4.5 \cdot 10^{+23}:\\ \;\;\;\;t \cdot \left(c \cdot j\right)\\ \mathbf{else}:\\ \;\;\;\;t_2\\ \end{array} \]
Alternative 38
Error39.8
Cost972
\[\begin{array}{l} t_1 := c \cdot \left(t \cdot j - z \cdot b\right)\\ \mathbf{if}\;c \leq -2.6 \cdot 10^{+17}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;c \leq 6.5 \cdot 10^{-178}:\\ \;\;\;\;\left(c \cdot t - i \cdot y\right) \cdot j\\ \mathbf{elif}\;c \leq 2.6 \cdot 10^{+34}:\\ \;\;\;\;\left(y \cdot x - c \cdot b\right) \cdot z\\ \mathbf{else}:\\ \;\;\;\;t_1\\ \end{array} \]
Alternative 39
Error42.5
Cost840
\[\begin{array}{l} t_1 := c \cdot \left(t \cdot j - z \cdot b\right)\\ \mathbf{if}\;c \leq -3.1 \cdot 10^{-27}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;c \leq 2.3 \cdot 10^{-98}:\\ \;\;\;\;y \cdot \left(i \cdot \left(-j\right)\right)\\ \mathbf{else}:\\ \;\;\;\;t_1\\ \end{array} \]
Alternative 40
Error39.7
Cost840
\[\begin{array}{l} t_1 := c \cdot \left(t \cdot j - z \cdot b\right)\\ \mathbf{if}\;c \leq -2.2 \cdot 10^{+18}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;c \leq 1.85 \cdot 10^{-26}:\\ \;\;\;\;\left(c \cdot t - i \cdot y\right) \cdot j\\ \mathbf{else}:\\ \;\;\;\;t_1\\ \end{array} \]
Alternative 41
Error50.1
Cost648
\[\begin{array}{l} t_1 := t \cdot \left(c \cdot j\right)\\ \mathbf{if}\;t \leq -2.8 \cdot 10^{+45}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 2.3 \cdot 10^{+56}:\\ \;\;\;\;b \cdot \left(c \cdot \left(-z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;t_1\\ \end{array} \]
Alternative 42
Error49.8
Cost648
\[\begin{array}{l} t_1 := t \cdot \left(c \cdot j\right)\\ \mathbf{if}\;t \leq -2.5 \cdot 10^{+42}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 5.5 \cdot 10^{+56}:\\ \;\;\;\;c \cdot \left(b \cdot \left(-z\right)\right)\\ \mathbf{else}:\\ \;\;\;\;t_1\\ \end{array} \]
Alternative 43
Error53.7
Cost320
\[c \cdot \left(t \cdot j\right) \]
Alternative 44
Error53.5
Cost320
\[t \cdot \left(c \cdot j\right) \]

Error

Reproduce?

herbie shell --seed 2023088 
(FPCore (x y z t a b c i j)
  :name "Linear.Matrix:det33 from linear-1.19.1.3"
  :precision binary64

  :herbie-target
  (if (< t -8.120978919195912e-33) (- (* x (- (* z y) (* a t))) (- (* b (- (* z c) (* a i))) (* (- (* c t) (* y i)) j))) (if (< t -4.712553818218485e-169) (+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (/ (* j (- (pow (* c t) 2.0) (pow (* i y) 2.0))) (+ (* c t) (* i y)))) (if (< t -7.633533346031584e-308) (- (* x (- (* z y) (* a t))) (- (* b (- (* z c) (* a i))) (* (- (* c t) (* y i)) j))) (if (< t 1.0535888557455487e-139) (+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (/ (* j (- (pow (* c t) 2.0) (pow (* i y) 2.0))) (+ (* c t) (* i y)))) (- (* x (- (* z y) (* a t))) (- (* b (- (* z c) (* a i))) (* (- (* c t) (* y i)) j)))))))

  (+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (* j (- (* c t) (* i y)))))