| Alternative 1 |
|---|
| Error | 0.4 |
|---|
| Cost | 13508 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0004:\\
\;\;\;\;\tan \left(\frac{x}{2}\right) \cdot \frac{\sin x}{x \cdot x}\\
\mathbf{elif}\;x \leq 0.0052:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{x} + \cos x \cdot \frac{-1}{x}}{x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.1 |
|---|
| Cost | 13376 |
|---|
\[\frac{\sin x}{x} \cdot \frac{\tan \left(\frac{x}{2}\right)}{x}
\]
| Alternative 3 |
|---|
| Error | 0.4 |
|---|
| Cost | 7368 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0055:\\
\;\;\;\;\frac{-1}{\frac{x \cdot x}{\cos x + -1}}\\
\mathbf{elif}\;x \leq 0.0052:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{x} + \cos x \cdot \frac{-1}{x}}{x}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.4 |
|---|
| Cost | 7240 |
|---|
\[\begin{array}{l}
t_0 := 1 - \cos x\\
\mathbf{if}\;x \leq -0.0055:\\
\;\;\;\;\frac{t_0}{x \cdot x}\\
\mathbf{elif}\;x \leq 0.0055:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x} \cdot \frac{t_0}{x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.4 |
|---|
| Cost | 7240 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0055:\\
\;\;\;\;\frac{-1}{\frac{x \cdot x}{\cos x + -1}}\\
\mathbf{elif}\;x \leq 0.0055:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{x} \cdot \frac{1 - \cos x}{x}\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.5 |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0055 \lor \neg \left(x \leq 0.0055\right):\\
\;\;\;\;\frac{1 - \cos x}{x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.4 |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
t_0 := 1 - \cos x\\
\mathbf{if}\;x \leq -0.0055:\\
\;\;\;\;\frac{t_0}{x \cdot x}\\
\mathbf{elif}\;x \leq 0.0055:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{t_0}{x}}{x}\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 13.3 |
|---|
| Cost | 1096 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.2:\\
\;\;\;\;\frac{6}{x \cdot x}\\
\mathbf{elif}\;x \leq 2.1:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{0.16666666666666666 + \frac{2}{x \cdot x}}}{x \cdot x}\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 13.3 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.2 \lor \neg \left(x \leq 3.25\right):\\
\;\;\;\;\frac{6}{x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 13.5 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.5 \lor \neg \left(x \leq 3.5\right):\\
\;\;\;\;\frac{6}{x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 11 |
|---|
| Error | 14.9 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.02 \cdot 10^{+77}:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 1.2 \cdot 10^{+77}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]