| Alternative 1 |
|---|
| Error | 18.88% |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \cdot z \leq 1.7 \cdot 10^{-81} \lor \neg \left(z \cdot z \leq 3.8 \cdot 10^{-47}\right) \land z \cdot z \leq 1.2 \cdot 10^{+23}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;\left(z \cdot z\right) \cdot 3\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.74% |
|---|
| Cost | 1100 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \cdot z \leq 5 \cdot 10^{-82}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;z \cdot z \leq 4 \cdot 10^{-47}:\\
\;\;\;\;z \cdot \left(z \cdot 3\right)\\
\mathbf{elif}\;z \cdot z \leq 5 \cdot 10^{+17}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;\left(z \cdot z\right) \cdot 3\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.22% |
|---|
| Cost | 576 |
|---|
\[x \cdot y + z \cdot \frac{z}{0.3333333333333333}
\]
| Alternative 4 |
|---|
| Error | 0.19% |
|---|
| Cost | 576 |
|---|
\[x \cdot y + \left(z \cdot z\right) \cdot 3
\]