| Alternative 1 |
|---|
| Error | 12.2 |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 2.2 \cdot 10^{-225} \lor \neg \left(y \cdot y \leq 1.45 \cdot 10^{-208}\right) \land y \cdot y \leq 4.75 \cdot 10^{-153}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.2 |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 5 \cdot 10^{-231} \lor \neg \left(y \cdot y \leq 5 \cdot 10^{-209}\right) \land y \cdot y \leq 4 \cdot 10^{-153}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.2 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.4 \cdot 10^{-12}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\mathbf{elif}\;y \leq 1.08 \cdot 10^{-79}:\\
\;\;\;\;x \cdot x + y \cdot y\\
\mathbf{else}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[x \cdot x + y \cdot \left(y \cdot 3\right)
\]
| Alternative 5 |
|---|
| Error | 26.2 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.5 \cdot 10^{-160}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 5.2 \cdot 10^{-151}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]