| Alternative 1 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.75:\\
\;\;\;\;\left(x \cdot x\right) \cdot 0.16666666666666666\\
\mathbf{elif}\;x \leq 1.75:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x \cdot x}{6}\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 98.4% |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 5 \cdot 10^{-5}:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot x\right) \cdot 0.16666666666666666\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 448 |
|---|
\[\left(x \cdot x\right) \cdot 0.16666666666666666 - 0.5
\]