| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 3456 |
|---|
\[\frac{1}{1 + e^{\frac{-x}{s}}}
\]
| Alternative 2 |
|---|
| Error | 3.5 |
|---|
| Cost | 740 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.999999936531045 \cdot 10^{-20}:\\
\;\;\;\;\frac{1}{2 + \left(0.5 \cdot \left(\frac{1}{s \cdot s} \cdot \frac{x}{\frac{1}{x}}\right) - \frac{x}{s}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + \frac{1}{1 + \frac{x}{s}}}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 3.5 |
|---|
| Cost | 644 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 100000:\\
\;\;\;\;\frac{1}{1 + \frac{1}{1 + \frac{x}{s}}}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\frac{x \cdot \left(-x\right)}{\frac{2}{\frac{1}{-s \cdot s}}}}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 3.2 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 0.4000000059604645:\\
\;\;\;\;\frac{1}{1 + \frac{1}{1 + \frac{x}{s}}}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{2 + 0.5 \cdot \left(x \cdot \frac{x}{s \cdot s}\right)}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 3.3 |
|---|
| Cost | 516 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 0.4000000059604645:\\
\;\;\;\;\frac{1}{1 + \frac{1}{1 + \frac{x}{s}}}\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{-2}{x}}{\frac{-x}{s \cdot s}}\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 11.9 |
|---|
| Cost | 484 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 0.4000000059604645:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{-2}{x}}{\frac{-x}{s \cdot s}}\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 13.3 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 100000:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;s \cdot \left(2 \cdot \frac{s}{x \cdot x}\right)\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 13.3 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 0.4000000059604645:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;2 \cdot \left(\frac{s}{x} \cdot \frac{s}{x}\right)\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 12.9 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 0.4000000059604645:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{2}{x} \cdot \left(s \cdot \frac{s}{x}\right)\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 12.4 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 100000:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{2 \cdot \left(s \cdot s\right)}{x \cdot x}\\
\end{array}
\]
| Alternative 11 |
|---|
| Error | 16.2 |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq -1:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{2 - \frac{x}{s}}\\
\end{array}
\]
| Alternative 12 |
|---|
| Error | 16.7 |
|---|
| Cost | 356 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq 0.4000000059604645:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{t_0}\\
\end{array}
\]
| Alternative 13 |
|---|
| Error | 17.2 |
|---|
| Cost | 164 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.20000000298023224:\\
\;\;\;\;\frac{s}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]