| Alternative 1 |
|---|
| Error | 1.1 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(x \cdot x\right) \cdot 0.16666666666666666\\
\mathbf{if}\;x \leq -1.75:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.75:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.75:\\
\;\;\;\;x \cdot \left(x \cdot 0.16666666666666666\right)\\
\mathbf{elif}\;x \leq 1.75:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot x\right) \cdot 0.16666666666666666\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \frac{x}{6}\\
\mathbf{if}\;x \leq -1.75:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.75:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.75:\\
\;\;\;\;x \cdot \frac{x}{6}\\
\mathbf{elif}\;x \leq 1.75:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{\frac{6}{x}}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.75:\\
\;\;\;\;\frac{x \cdot x}{6}\\
\mathbf{elif}\;x \leq 1.75:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{\frac{6}{x}}\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.1 |
|---|
| Cost | 448 |
|---|
\[\frac{x}{\frac{6}{x}} + -0.5
\]
| Alternative 7 |
|---|
| Error | 0.1 |
|---|
| Cost | 448 |
|---|
\[\frac{-3 + x \cdot x}{6}
\]