| Alternative 1 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.75:\\
\;\;\;\;x \cdot \left(x \cdot 0.16666666666666666\right)\\
\mathbf{elif}\;x \leq 1.7:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot x\right) \cdot 0.16666666666666666\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 98.4% |
|---|
| 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 |
|---|
| Accuracy | 98.3% |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 2 \cdot 10^{-7}:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{x}{6}\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.7% |
|---|
| Cost | 448 |
|---|
\[\left(x \cdot x\right) \cdot 0.16666666666666666 + -0.5
\]