| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 6656 |
|---|
\[\frac{1}{1 + {\left(e^{-1}\right)}^{\left(\frac{x}{s}\right)}}
\]
| Alternative 2 |
|---|
| Error | 0.1 |
|---|
| Cost | 3456 |
|---|
\[\frac{1}{e^{\frac{-x}{s}} + 1}
\]
| Alternative 3 |
|---|
| Error | 1.2 |
|---|
| Cost | 552 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -20:\\
\;\;\;\;\frac{1}{1 + \frac{s}{x}}\\
\mathbf{elif}\;t_0 \leq 0.5:\\
\;\;\;\;0.5 + \frac{x}{s} \cdot 0.25\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.4 |
|---|
| Cost | 516 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 40:\\
\;\;\;\;\frac{1}{1 + \frac{1}{1 + \frac{x}{s}}}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.9 |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -20:\\
\;\;\;\;\frac{1}{1 + \frac{s}{x}}\\
\mathbf{elif}\;t_0 \leq 40:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 6 |
|---|
| 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 40:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 11.7 |
|---|
| Cost | 100 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9.9999998245167 \cdot 10^{-14}:\\
\;\;\;\;0\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]