| Alternative 1 |
|---|
| Error | 12.7 |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 10^{-164} \lor \neg \left(x \cdot x \leq 1.95 \cdot 10^{-73}\right) \land x \cdot x \leq 4.3 \cdot 10^{-45}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 11.2 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4 \cdot 10^{-80} \lor \neg \left(x \leq 4.9 \cdot 10^{-88}\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[3 \cdot \left(y \cdot y\right) + x \cdot x
\]
| Alternative 4 |
|---|
| Error | 26.2 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.8 \cdot 10^{-143}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 3.5 \cdot 10^{-153}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]