| Alternative 1 |
|---|
| Error | 0.5 |
|---|
| Cost | 1096 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -350:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 350:\\
\;\;\;\;1 + \left(x \cdot x\right) \cdot \left(\left(x \cdot x\right) \cdot 0.20833333333333334 + -0.5\right)\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.5 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 1.4:\\
\;\;\;\;1 + \left(x \cdot x\right) \cdot -0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.5 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -360:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 360:\\
\;\;\;\;\frac{2}{x \cdot x + 2}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.7 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -350:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 360:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]