| Alternative 1 |
|---|
| Error | 1.63% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.72 \lor \neg \left(x \leq 1.75\right):\\
\;\;\;\;\frac{x}{\frac{6}{x}}\\
\mathbf{else}:\\
\;\;\;\;-0.5\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.67% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.72:\\
\;\;\;\;\frac{x \cdot x}{6}\\
\mathbf{elif}\;x \leq 1.75:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{\frac{6}{x}}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.7% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.72:\\
\;\;\;\;\frac{1}{\frac{6}{x \cdot x}}\\
\mathbf{elif}\;x \leq 1.75:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{\frac{6}{x}}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.76% |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 3:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot x\right) \cdot 0.16666666666666666\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.69% |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 0.4:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(x \cdot 0.16666666666666666\right)\\
\end{array}
\]