| Alternative 1 |
|---|
| Accuracy | 99.5% |
|---|
| Cost | 13508 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.002:\\
\;\;\;\;\tan \left(x \cdot 0.5\right) \cdot \frac{\sin x}{x \cdot x}\\
\mathbf{elif}\;x \leq 0.0042:\\
\;\;\;\;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 |
|---|
| Accuracy | 99.5% |
|---|
| Cost | 7368 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.005:\\
\;\;\;\;\left(1 - \cos x\right) \cdot \left(\frac{1}{x} \cdot \frac{1}{x}\right)\\
\mathbf{elif}\;x \leq 0.0042:\\
\;\;\;\;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 3 |
|---|
| Accuracy | 99.4% |
|---|
| Cost | 7240 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.005:\\
\;\;\;\;\frac{-1}{x \cdot x} \cdot \left(\cos x + -1\right)\\
\mathbf{elif}\;x \leq 0.0052:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{x} \cdot \left(1 - \cos x\right)}{x}\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.6% |
|---|
| Cost | 7240 |
|---|
\[\begin{array}{l}
t_0 := 1 - \cos x\\
\mathbf{if}\;x \leq -0.005:\\
\;\;\;\;t_0 \cdot \left(\frac{1}{x} \cdot \frac{1}{x}\right)\\
\mathbf{elif}\;x \leq 0.0052:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{1}{x} \cdot t_0}{x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 99.2% |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.005 \lor \neg \left(x \leq 0.0052\right):\\
\;\;\;\;\frac{1 - \cos x}{x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 99.4% |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
t_0 := 1 - \cos x\\
\mathbf{if}\;x \leq -0.005:\\
\;\;\;\;\frac{t_0}{x \cdot x}\\
\mathbf{elif}\;x \leq 0.0052:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{t_0}{x}}{x}\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 99.4% |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.005:\\
\;\;\;\;\frac{-1}{x \cdot x} \cdot \left(\cos x + -1\right)\\
\mathbf{elif}\;x \leq 0.0052:\\
\;\;\;\;0.5 + \left(x \cdot x\right) \cdot -0.041666666666666664\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{1 - \cos x}{x}}{x}\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 78.2% |
|---|
| Cost | 896 |
|---|
\[\frac{\frac{-1}{x \cdot 0.16666666666666666 + \frac{1}{x} \cdot 2}}{-x}
\]
| Alternative 9 |
|---|
| Accuracy | 75.9% |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.1 \cdot 10^{+77}:\\
\;\;\;\;0\\
\mathbf{elif}\;x \leq 9.5 \cdot 10^{+76}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;0\\
\end{array}
\]