| Alternative 1 |
|---|
| Error | 0.8 |
|---|
| Cost | 840 |
|---|
\[\begin{array}{l}
t_0 := \frac{\frac{-2}{x}}{x}\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.55:\\
\;\;\;\;\left(1 - x\right) - \frac{1}{x - 1}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \frac{\frac{-2}{x}}{x}\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;2 + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.4 |
|---|
| Cost | 576 |
|---|
\[\frac{2}{\left(1 - x\right) \cdot \left(1 + x\right)}
\]