| Alternative 1 |
|---|
| Error | 1.1 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -103406897440.48567:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 1.3683424085043775 \cdot 10^{-7}:\\
\;\;\;\;x \cdot \left(1 - x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.2 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.8611764585819585 \cdot 10^{+29}:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 3.7720436768118772:\\
\;\;\;\;\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 -103406897440.48567:\\
\;\;\;\;\frac{1}{x}\\
\mathbf{elif}\;x \leq 1.3683424085043775 \cdot 10^{-7}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x}\\
\end{array}
\]