| Alternative 1 |
|---|
| Error | 0.9 |
|---|
| Cost | 13124 |
|---|
\[\begin{array}{l}
\mathbf{if}\;e^{x} \leq 0:\\
\;\;\;\;e^{x} \cdot -0.5\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot 0.08333333333333333 + \frac{1}{x}\right) + 0.5\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.9 |
|---|
| Cost | 7104 |
|---|
\[e^{x} \cdot \left(\left(x \cdot 0.08333333333333333 + \frac{1}{x}\right) + -0.5\right)
\]
| Alternative 3 |
|---|
| Error | 1.2 |
|---|
| Cost | 6848 |
|---|
\[e^{x} \cdot \left(\frac{1}{x} + -0.5\right)
\]
| Alternative 4 |
|---|
| Error | 10.7 |
|---|
| Cost | 836 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4:\\
\;\;\;\;\frac{\frac{-1}{x \cdot x}}{0.5 + \frac{-1}{x}}\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot 0.08333333333333333 + \frac{1}{x}\right) + 0.5\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 11.3 |
|---|
| Cost | 832 |
|---|
\[\frac{1}{x} \cdot \frac{\frac{1}{\frac{1}{x} + -0.5}}{x}
\]
| Alternative 6 |
|---|
| Error | 10.7 |
|---|
| Cost | 708 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.5:\\
\;\;\;\;\frac{-2}{x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot 0.08333333333333333 + \frac{1}{x}\right) + 0.5\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 10.9 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.8:\\
\;\;\;\;\frac{-2}{x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x} + 0.5\\
\end{array}
\]