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