| Alternative 1 |
|---|
| Error | 11.9 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.8 \cdot 10^{-49}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\mathbf{elif}\;y \leq 1.92 \cdot 10^{-79}:\\
\;\;\;\;x \cdot x + y \cdot y\\
\mathbf{else}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.6 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -5.9 \cdot 10^{-49} \lor \neg \left(y \leq 1.78 \cdot 10^{-84}\right):\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -6 \cdot 10^{-50}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\mathbf{elif}\;y \leq 1.64 \cdot 10^{-80}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[y \cdot \left(y \cdot 3\right) + x \cdot x
\]
| Alternative 5 |
|---|
| Error | 26.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.4 \cdot 10^{-161}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 4.5 \cdot 10^{-150}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]