| Alternative 1 |
|---|
| Error | 1.2 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.7 \lor \neg \left(x \leq 2.7\right):\\
\;\;\;\;x \cdot \left(-0.12900613773279798 \cdot \left(x \cdot x\right)\right)\\
\mathbf{else}:\\
\;\;\;\;0.954929658551372 \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.2 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.7:\\
\;\;\;\;\left(x \cdot x\right) \cdot \left(x \cdot -0.12900613773279798\right)\\
\mathbf{elif}\;x \leq 2.7:\\
\;\;\;\;0.954929658551372 \cdot x\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(-0.12900613773279798 \cdot \left(x \cdot x\right)\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.3 |
|---|
| Cost | 704 |
|---|
\[0.954929658551372 \cdot x + -0.12900613773279798 \cdot \left(x \cdot \left(x \cdot x\right)\right)
\]
| 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.8 |
|---|
| Cost | 192 |
|---|
\[0.954929658551372 \cdot x
\]