| Alternative 1 |
|---|
| Error | 1.1 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.7:\\
\;\;\;\;x \cdot \left(x \cdot 0.16666666666666666\right)\\
\mathbf{elif}\;x \leq 1.72:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot x\right) \cdot 0.16666666666666666\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.1 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 3:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot x\right) \cdot 0.16666666666666666\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.0 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 0.04:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{\frac{6}{x}}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.1 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 0.04:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x \cdot x}{6}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.2 |
|---|
| Cost | 448 |
|---|
\[-0.5 + \left(x \cdot x\right) \cdot 0.16666666666666666
\]