| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 13248 |
|---|
\[\cos y \cdot x - \sin y \cdot z
\]
| Alternative 2 |
|---|
| Error | 8.8 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot x\\
\mathbf{if}\;x \leq -0.0135:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.00082:\\
\;\;\;\;x - \sin y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.1 |
|---|
| Cost | 6920 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot x\\
\mathbf{if}\;x \leq -8 \cdot 10^{-54}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.15 \cdot 10^{-23}:\\
\;\;\;\;\sin y \cdot \left(-z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 16.4 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot x\\
\mathbf{if}\;y \leq -0.00033:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 3100000000000:\\
\;\;\;\;x + y \cdot \left(y \cdot \left(x \cdot -0.5\right) - z\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 37.5 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.26 \cdot 10^{-191}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1.15 \cdot 10^{-125}:\\
\;\;\;\;y \cdot \left(-z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]