| Alternative 1 |
|---|
| Error | 2.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := \left(-2 \cdot x\right) \cdot \left(x \cdot x\right)\\
\mathbf{if}\;x \leq -1.5:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.5:\\
\;\;\;\;x \cdot \left(3 \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 2.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.5:\\
\;\;\;\;\frac{x}{\frac{-0.5}{x \cdot x}}\\
\mathbf{elif}\;x \leq 1.5:\\
\;\;\;\;x \cdot \left(3 \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\left(-2 \cdot x\right) \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.7 |
|---|
| Cost | 320 |
|---|
\[3 \cdot \left(x \cdot x\right)
\]
| Alternative 4 |
|---|
| Error | 16.7 |
|---|
| Cost | 320 |
|---|
\[x \cdot \left(3 \cdot x\right)
\]