| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 10048 |
|---|
\[\frac{1}{1 + \sqrt[3]{e^{\frac{-x}{s}}} \cdot e^{\frac{x}{s} \cdot -0.6666666666666666}}
\]
| Alternative 2 |
|---|
| Error | 0.1 |
|---|
| Cost | 6656 |
|---|
\[\frac{1}{1 + {e}^{\left(\frac{-x}{s}\right)}}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 3456 |
|---|
\[\frac{1}{1 + e^{\frac{-x}{s}}}
\]
| Alternative 4 |
|---|
| Error | 1.5 |
|---|
| Cost | 552 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -20:\\
\;\;\;\;1 - \frac{s}{x}\\
\mathbf{elif}\;t_0 \leq 50:\\
\;\;\;\;\frac{1}{2 - \frac{x}{s}}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.2 |
|---|
| Cost | 552 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -20:\\
\;\;\;\;1 - \frac{s}{x}\\
\mathbf{elif}\;t_0 \leq 2:\\
\;\;\;\;0.5 + \frac{x}{s} \cdot 0.25\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 1.4 |
|---|
| Cost | 516 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 50:\\
\;\;\;\;\frac{1}{1 + \frac{1}{1 + \frac{x}{s}}}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 1.9 |
|---|
| Cost | 360 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -20:\\
\;\;\;\;1 - \frac{s}{x}\\
\mathbf{elif}\;t_0 \leq 50:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 11.7 |
|---|
| Cost | 100 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.999999935100636 \cdot 10^{-17}:\\
\;\;\;\;0\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]