| Alternative 1 |
|---|
| Error | 12.6 |
|---|
| Cost | 772 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq -10:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + \left(\left(1 - \frac{x}{s}\right) + \frac{x}{\frac{s}{x}} \cdot \frac{0.5}{s}\right)}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 11.6 |
|---|
| Cost | 772 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 0.019999999552965164:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + \left(\left(1 - \frac{x}{s}\right) - x \cdot \left(x \cdot \frac{\frac{-0.5}{s}}{s}\right)\right)}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.5 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 100:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{1 + \frac{x \cdot \left(x \cdot 0.5\right)}{s \cdot s}}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.6 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 100:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;2 \cdot \frac{s \cdot s}{x \cdot x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 16.4 |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq -10:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{2 - \frac{x}{s}}\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 16.9 |
|---|
| Cost | 356 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq 2:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{t_0}\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 17.4 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.999999987376214 \cdot 10^{-7}:\\
\;\;\;\;\frac{-s}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 17.4 |
|---|
| Cost | 164 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0020000000949949026:\\
\;\;\;\;\frac{s}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]