| Alternative 1 |
|---|
| Error | 1.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4279664386679.3286:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 1.9528963858121105 \cdot 10^{-8}:\\
\;\;\;\;x \cdot \left(1 - x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.9227707933154306 \cdot 10^{+39}:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 23.744287494643725:\\
\;\;\;\;\frac{x}{1 + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4279664386679.3286:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 1.9528963858121105 \cdot 10^{-8}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x}\\
\end{array}
\]