| Alternative 1 |
|---|
| Accuracy | 99.4% |
|---|
| Cost | 1096 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -350:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 340:\\
\;\;\;\;1 + \left(x \cdot x\right) \cdot \left(x \cdot \left(x \cdot 0.20833333333333334\right) + -0.5\right)\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 99.2% |
|---|
| Cost | 840 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.42:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 1.45:\\
\;\;\;\;\left(2 + \left(x \cdot x\right) \cdot -0.5\right) + -1\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 99.2% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.42:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 1.45:\\
\;\;\;\;1 + \left(x \cdot x\right) \cdot -0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 59.0% |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -360:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 350:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 99.0% |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -360:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 350:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]