| Alternative 1 |
|---|
| Accuracy | 98.2% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.75 \lor \neg \left(x \leq 2.7\right):\\
\;\;\;\;x \cdot \left(-0.12900613773279798 \cdot \left(x \cdot x\right)\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.954929658551372\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 98.2% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.75:\\
\;\;\;\;x \cdot \left(x \cdot \left(-0.12900613773279798 \cdot x\right)\right)\\
\mathbf{elif}\;x \leq 2.7:\\
\;\;\;\;x \cdot 0.954929658551372\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(-0.12900613773279798 \cdot \left(x \cdot x\right)\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 99.6% |
|---|
| Cost | 704 |
|---|
\[x \cdot 0.954929658551372 + -0.12900613773279798 \cdot \left(x \cdot \left(x \cdot x\right)\right)
\]
| Alternative 4 |
|---|
| Accuracy | 99.7% |
|---|
| Cost | 576 |
|---|
\[x \cdot \left(0.954929658551372 + x \cdot \left(-0.12900613773279798 \cdot x\right)\right)
\]
| Alternative 5 |
|---|
| Accuracy | 73.8% |
|---|
| Cost | 192 |
|---|
\[x \cdot 0.954929658551372
\]