| Alternative 1 |
|---|
| Error | 27.47% |
|---|
| Cost | 20104 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \sqrt{z}\\
\mathbf{if}\;t_0 \leq -5 \cdot 10^{-102}:\\
\;\;\;\;0.5 \cdot t_0\\
\mathbf{elif}\;t_0 \leq 2 \cdot 10^{-19}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{else}:\\
\;\;\;\;\frac{0.5 \cdot y}{{z}^{-0.5}}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 27.47% |
|---|
| Cost | 20041 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \sqrt{z}\\
\mathbf{if}\;t_0 \leq -5 \cdot 10^{-102} \lor \neg \left(t_0 \leq 2 \cdot 10^{-19}\right):\\
\;\;\;\;0.5 \cdot t_0\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.22% |
|---|
| Cost | 6848 |
|---|
\[0.5 \cdot \left(x + y \cdot \sqrt{z}\right)
\]