| Alternative 1 |
|---|
| Error | 1.3 |
|---|
| 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 |
|---|
| Error | 1.3 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.75:\\
\;\;\;\;x \cdot \left(x \cdot \left(x \cdot -0.12900613773279798\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 |
|---|
| Error | 0.2 |
|---|
| Cost | 704 |
|---|
\[x \cdot \left(x \cdot \left(x \cdot -0.12900613773279798\right)\right) + x \cdot 0.954929658551372
\]
| Alternative 4 |
|---|
| Error | 0.2 |
|---|
| Cost | 576 |
|---|
\[x \cdot \left(0.954929658551372 + -0.12900613773279798 \cdot \left(x \cdot x\right)\right)
\]
| Alternative 5 |
|---|
| Error | 16.3 |
|---|
| Cost | 192 |
|---|
\[x \cdot 0.954929658551372
\]