| Alternative 1 |
|---|
| Error | 0.3 |
|---|
| Cost | 7304 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{1 - \cos x}\\
\mathbf{if}\;x \leq -0.0056:\\
\;\;\;\;\frac{\frac{1}{x}}{t_0}\\
\mathbf{elif}\;x \leq 0.0051:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{-1}{t_0}}{-x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.5 |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0056 \lor \neg \left(x \leq 0.0051\right):\\
\;\;\;\;\frac{1 - \cos x}{x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.3 |
|---|
| Cost | 7113 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0056 \lor \neg \left(x \leq 0.0051\right):\\
\;\;\;\;\frac{\frac{1 - \cos x}{x}}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.3 |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
t_0 := \frac{1 - \cos x}{x}\\
\mathbf{if}\;x \leq -0.0056:\\
\;\;\;\;\frac{1}{x} \cdot t_0\\
\mathbf{elif}\;x \leq 0.0051:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{t_0}{x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.3 |
|---|
| Cost | 7112 |
|---|
\[\begin{array}{l}
t_0 := 1 - \cos x\\
\mathbf{if}\;x \leq -0.0056:\\
\;\;\;\;\frac{\frac{1}{x}}{\frac{x}{t_0}}\\
\mathbf{elif}\;x \leq 0.0051:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{\frac{t_0}{x}}{x}\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 15.2 |
|---|
| Cost | 905 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.45 \lor \neg \left(x \leq 3.5\right):\\
\;\;\;\;\frac{x - x}{x \cdot \left(x \cdot \left(-x\right)\right)}\\
\mathbf{else}:\\
\;\;\;\;0.5 + -0.041666666666666664 \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 13.6 |
|---|
| Cost | 832 |
|---|
\[\frac{\frac{1}{x}}{x \cdot 0.16666666666666666 + 2 \cdot \frac{1}{x}}
\]