| Alternative 1 |
|---|
| Error | 2.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -140.1741965090909:\\
\;\;\;\;-9 \cdot \left(x \cdot x\right)\\
\mathbf{elif}\;x \leq 7.357464671497419 \cdot 10^{-7}:\\
\;\;\;\;x \cdot 6\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\frac{\frac{-0.1111111111111111}{x}}{x}}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 2.1 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := -9 \cdot \left(x \cdot x\right)\\
\mathbf{if}\;x \leq -140.1741965090909:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.357464671497419 \cdot 10^{-7}:\\
\;\;\;\;x \cdot 6\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.2 |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(6 + x \cdot -9\right)
\]