| Alternative 1 |
|---|
| Error | 0.2% |
|---|
| Cost | 13248 |
|---|
\[\cos y \cdot x - z \cdot \sin y
\]
| Alternative 2 |
|---|
| Error | 27.53% |
|---|
| Cost | 7448 |
|---|
\[\begin{array}{l}
t_0 := \cos y \cdot x\\
t_1 := z \cdot \left(-\sin y\right)\\
\mathbf{if}\;x \leq -3.4 \cdot 10^{-15}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -3.8 \cdot 10^{-48}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -5 \cdot 10^{-113}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.6 \cdot 10^{-139}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 1.15 \cdot 10^{-10}:\\
\;\;\;\;x - y \cdot z\\
\mathbf{elif}\;x \leq 1.4 \cdot 10^{+21}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.83% |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3.5 \cdot 10^{-15} \lor \neg \left(z \leq 2.95 \cdot 10^{-92}\right):\\
\;\;\;\;x - z \cdot \sin y\\
\mathbf{else}:\\
\;\;\;\;\cos y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 25.47% |
|---|
| Cost | 6857 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -0.00028 \lor \neg \left(y \leq 8.4 \cdot 10^{-14}\right):\\
\;\;\;\;\cos y \cdot x\\
\mathbf{else}:\\
\;\;\;\;x - y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 59.37% |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.8 \cdot 10^{-116}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 2.35 \cdot 10^{-287}:\\
\;\;\;\;y \cdot \left(-z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]