| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 22848 |
|---|
\[\begin{array}{l}
t_0 := \sqrt[3]{{e}^{\left(\frac{x}{s}\right)}}\\
\frac{1}{1 + \frac{\frac{1}{{t_0}^{2}}}{t_0}}
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.1 |
|---|
| Cost | 19744 |
|---|
\[\frac{1}{1 + \frac{\frac{1}{{\left(\sqrt[3]{{e}^{\left(\frac{x}{s}\right)}}\right)}^{2}}}{\frac{1}{\sqrt[3]{e^{\frac{-x}{s}}}}}}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 19648 |
|---|
\[\frac{1}{1 + \frac{\frac{1}{{\left(\sqrt[3]{{e}^{\left(\frac{x}{s}\right)}}\right)}^{2}}}{\sqrt[3]{e^{\frac{x}{s}}}}}
\]
| Alternative 4 |
|---|
| Error | 0.1 |
|---|
| Cost | 16512 |
|---|
\[\frac{1}{1 + \frac{\frac{1}{{\left(\sqrt{e^{\frac{x}{\frac{s}{0.6666666666666666}}}}\right)}^{2}}}{\sqrt[3]{e^{\frac{x}{s}}}}}
\]
| Alternative 5 |
|---|
| Error | 0.1 |
|---|
| Cost | 9856 |
|---|
\[\frac{1}{1 + \mathsf{expm1}\left(\mathsf{log1p}\left(e^{\frac{-x}{s}}\right)\right)}
\]
| Alternative 6 |
|---|
| Error | 0.1 |
|---|
| Cost | 3456 |
|---|
\[\frac{1}{1 + e^{\frac{-x}{s}}}
\]
| Alternative 7 |
|---|
| Error | 0.7 |
|---|
| 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}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 0.7 |
|---|
| 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{0.25}{\frac{s}{x}}\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 1.4 |
|---|
| Cost | 360 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq -1:\\
\;\;\;\;1\\
\mathbf{elif}\;t_0 \leq 20:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 13.9 |
|---|
| Cost | 100 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 5.000000015855384 \cdot 10^{-31}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\]