| Alternative 1 |
|---|
| Error | 35.29% |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.5 \cdot 10^{-11}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -5.7 \cdot 10^{-86}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq -9.6 \cdot 10^{-144}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq -3.6 \cdot 10^{-187}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 9.5 \cdot 10^{-145}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2.7 \cdot 10^{-107}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 2.1 \cdot 10^{-49}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;x + x\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 5.89% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -140 \lor \neg \left(x \leq 9.6 \cdot 10^{-8}\right):\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.84% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -140 \lor \neg \left(x \leq 2\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.26% |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 10^{-95}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.02% |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 6 |
|---|
| Error | 37.56% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -86000000:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 3.1 \cdot 10^{-7}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]