| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 3456 |
|---|
\[\frac{1}{e^{\frac{-x}{s}} + 1}
\]
| Alternative 2 |
|---|
| Error | 2.4 |
|---|
| Cost | 776 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -5:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 1:\\
\;\;\;\;0.5 + \frac{x}{s} \cdot 0.25\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + \left(x \cdot \frac{x}{s \cdot \left(-s\right)}\right) \cdot -0.5}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 2.9 |
|---|
| Cost | 772 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq -5:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + \left(\left(1 - \frac{x}{s}\right) - x \cdot \frac{\frac{x}{s \cdot -2}}{s}\right)}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 3.0 |
|---|
| Cost | 744 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -5:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 1:\\
\;\;\;\;0.5 + \frac{x}{s} \cdot 0.25\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + 0.5 \cdot \frac{x \cdot x}{s \cdot s}}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 4.0 |
|---|
| Cost | 616 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -5:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 1:\\
\;\;\;\;0.5 + \frac{x}{s} \cdot 0.25\\
\mathbf{else}:\\
\;\;\;\;2 \cdot \left(s \cdot \frac{s}{x \cdot x}\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 3.1 |
|---|
| Cost | 616 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -5:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 1:\\
\;\;\;\;0.5 + \frac{x}{s} \cdot 0.25\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(s \cdot s\right) \cdot 2}{x \cdot x}\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 7.1 |
|---|
| Cost | 552 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -5:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 1:\\
\;\;\;\;0.5 + \frac{x}{s} \cdot 0.25\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{t_0}\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 7.8 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -5:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 1:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{t_0}\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 7.3 |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq -5:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{2 - \frac{x}{s}}\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 10.0 |
|---|
| Cost | 228 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.000000026702864 \cdot 10^{-10}:\\
\;\;\;\;s \cdot \frac{-1}{x}\\
\mathbf{elif}\;x \leq 2.000000047484456 \cdot 10^{-32}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
| Alternative 11 |
|---|
| Error | 10.0 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.000000026702864 \cdot 10^{-10}:\\
\;\;\;\;\frac{-s}{x}\\
\mathbf{elif}\;x \leq 2.000000047484456 \cdot 10^{-32}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
| Alternative 12 |
|---|
| Error | 10.0 |
|---|
| Cost | 168 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.03999999910593033:\\
\;\;\;\;\frac{s}{x}\\
\mathbf{elif}\;x \leq 2.000000047484456 \cdot 10^{-32}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]
| Alternative 13 |
|---|
| Error | 13.6 |
|---|
| Cost | 100 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 2.000000047484456 \cdot 10^{-32}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]