| Alternative 1 |
|---|
| Error | 16.8 |
|---|
| Cost | 7048 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.55 \cdot 10^{-46}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;x \leq 1.2 \cdot 10^{+54}:\\
\;\;\;\;\frac{0.5 \cdot y}{{z}^{-0.5}}\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.8 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.72 \cdot 10^{-38}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;x \leq 1.5 \cdot 10^{+58}:\\
\;\;\;\;0.5 \cdot \left(y \cdot \sqrt{z}\right)\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 6848 |
|---|
\[0.5 \cdot \left(x + y \cdot \sqrt{z}\right)
\]