| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 3456 |
|---|
\[\frac{1}{1 + e^{\frac{-x}{s}}}
\]
| Alternative 2 |
|---|
| Error | 0.9 |
|---|
| Cost | 836 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 20:\\
\;\;\;\;\frac{1}{1 + \frac{1}{\left(1 + \frac{x}{s}\right) + \frac{x}{s} \cdot \frac{x \cdot 0.5}{s}}}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.7 |
|---|
| Cost | 552 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -2:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 2:\\
\;\;\;\;0.5 + \frac{x \cdot 0.25}{s}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.3 |
|---|
| Cost | 516 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 20:\\
\;\;\;\;\frac{1}{1 + \frac{1}{1 + \frac{x}{s}}}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.3 |
|---|
| Cost | 360 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -2:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 20:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 13.7 |
|---|
| Cost | 100 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 4.999999980020986 \cdot 10^{-13}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]