\[\left(-x \cdot \frac{1}{\tan B}\right) + \frac{F}{\sin B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}
\]
↓
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -3.147328501440944 \cdot 10^{+40}:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 15:\\
\;\;\;\;\frac{F}{\frac{\sin B}{{\left(\mathsf{fma}\left(F, F, \mathsf{fma}\left(2, x, 2\right)\right)\right)}^{-0.5}}} - t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B}\\
\end{array}
\]
(FPCore (F B x)
:precision binary64
(+
(- (* x (/ 1.0 (tan B))))
(* (/ F (sin B)) (pow (+ (+ (* F F) 2.0) (* 2.0 x)) (- (/ 1.0 2.0))))))
↓
(FPCore (F B x)
:precision binary64
(let* ((t_0 (/ x (tan B))))
(if (<= F -3.147328501440944e+40)
(- (/ -1.0 (sin B)) t_0)
(if (<= F 15.0)
(- (/ F (/ (sin B) (pow (fma F F (fma 2.0 x 2.0)) -0.5))) t_0)
(+
(* x (/ -1.0 (tan B)))
(/ (+ 1.0 (/ (- -1.0 x) (* F F))) (sin B)))))))double code(double F, double B, double x) {
return -(x * (1.0 / tan(B))) + ((F / sin(B)) * pow((((F * F) + 2.0) + (2.0 * x)), -(1.0 / 2.0)));
}
↓
double code(double F, double B, double x) {
double t_0 = x / tan(B);
double tmp;
if (F <= -3.147328501440944e+40) {
tmp = (-1.0 / sin(B)) - t_0;
} else if (F <= 15.0) {
tmp = (F / (sin(B) / pow(fma(F, F, fma(2.0, x, 2.0)), -0.5))) - t_0;
} else {
tmp = (x * (-1.0 / tan(B))) + ((1.0 + ((-1.0 - x) / (F * F))) / sin(B));
}
return tmp;
}
function code(F, B, x)
return Float64(Float64(-Float64(x * Float64(1.0 / tan(B)))) + Float64(Float64(F / sin(B)) * (Float64(Float64(Float64(F * F) + 2.0) + Float64(2.0 * x)) ^ Float64(-Float64(1.0 / 2.0)))))
end
↓
function code(F, B, x)
t_0 = Float64(x / tan(B))
tmp = 0.0
if (F <= -3.147328501440944e+40)
tmp = Float64(Float64(-1.0 / sin(B)) - t_0);
elseif (F <= 15.0)
tmp = Float64(Float64(F / Float64(sin(B) / (fma(F, F, fma(2.0, x, 2.0)) ^ -0.5))) - t_0);
else
tmp = Float64(Float64(x * Float64(-1.0 / tan(B))) + Float64(Float64(1.0 + Float64(Float64(-1.0 - x) / Float64(F * F))) / sin(B)));
end
return tmp
end
code[F_, B_, x_] := N[((-N[(x * N[(1.0 / N[Tan[B], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]) + N[(N[(F / N[Sin[B], $MachinePrecision]), $MachinePrecision] * N[Power[N[(N[(N[(F * F), $MachinePrecision] + 2.0), $MachinePrecision] + N[(2.0 * x), $MachinePrecision]), $MachinePrecision], (-N[(1.0 / 2.0), $MachinePrecision])], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[F_, B_, x_] := Block[{t$95$0 = N[(x / N[Tan[B], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[F, -3.147328501440944e+40], N[(N[(-1.0 / N[Sin[B], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision], If[LessEqual[F, 15.0], N[(N[(F / N[(N[Sin[B], $MachinePrecision] / N[Power[N[(F * F + N[(2.0 * x + 2.0), $MachinePrecision]), $MachinePrecision], -0.5], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision], N[(N[(x * N[(-1.0 / N[Tan[B], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(N[(1.0 + N[(N[(-1.0 - x), $MachinePrecision] / N[(F * F), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Sin[B], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]
\left(-x \cdot \frac{1}{\tan B}\right) + \frac{F}{\sin B} \cdot {\left(\left(F \cdot F + 2\right) + 2 \cdot x\right)}^{\left(-\frac{1}{2}\right)}
↓
\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -3.147328501440944 \cdot 10^{+40}:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 15:\\
\;\;\;\;\frac{F}{\frac{\sin B}{{\left(\mathsf{fma}\left(F, F, \mathsf{fma}\left(2, x, 2\right)\right)\right)}^{-0.5}}} - t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B}\\
\end{array}
Alternatives
| Alternative 1 |
|---|
| Error | 0.3 |
|---|
| Cost | 20616 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -2.9085804288576213 \cdot 10^{+27}:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 9.6 \cdot 10^{+19}:\\
\;\;\;\;\frac{F}{\sin B} \cdot {\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} - t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{1}{\sin B}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.7 |
|---|
| Cost | 20424 |
|---|
\[\begin{array}{l}
t_0 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -0.005:\\
\;\;\;\;\frac{-1}{\sin B} - t_0\\
\mathbf{elif}\;F \leq 0.12:\\
\;\;\;\;\frac{F}{\sin B} \cdot \sqrt{\frac{1}{2 + x \cdot 2}} - t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 7.5 |
|---|
| Cost | 14480 |
|---|
\[\begin{array}{l}
t_0 := \frac{F}{\sin B} \cdot {\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} - \frac{x}{B}\\
\mathbf{if}\;F \leq -27000000:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{\tan B}\\
\mathbf{elif}\;F \leq -1.06 \cdot 10^{-128}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 2.3 \cdot 10^{-211}:\\
\;\;\;\;\frac{x \cdot \left(-\cos B\right)}{\sin B}\\
\mathbf{elif}\;F \leq 9.6 \cdot 10^{+19}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{1}{\sin B}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 5.2 |
|---|
| Cost | 14480 |
|---|
\[\begin{array}{l}
t_0 := {\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5}\\
t_1 := \frac{F}{\sin B} \cdot t_0 - \frac{x}{B}\\
t_2 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -27000000:\\
\;\;\;\;\frac{-1}{\sin B} - t_2\\
\mathbf{elif}\;F \leq -1 \cdot 10^{-130}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;F \leq 10^{-110}:\\
\;\;\;\;t_0 \cdot \frac{F}{B} - t_2\\
\mathbf{elif}\;F \leq 9.6 \cdot 10^{+19}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{1}{\sin B}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 5.2 |
|---|
| Cost | 14480 |
|---|
\[\begin{array}{l}
t_0 := {\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5}\\
t_1 := \frac{x}{\tan B}\\
t_2 := \frac{1}{\sin B}\\
\mathbf{if}\;F \leq -27000000:\\
\;\;\;\;\frac{-1}{\sin B} - t_1\\
\mathbf{elif}\;F \leq -1 \cdot 10^{-130}:\\
\;\;\;\;t_0 \cdot \left(F \cdot t_2\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 10^{-110}:\\
\;\;\;\;t_0 \cdot \frac{F}{B} - t_1\\
\mathbf{elif}\;F \leq 9.6 \cdot 10^{+19}:\\
\;\;\;\;\frac{F}{\sin B} \cdot t_0 - \frac{x}{B}\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + t_2\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 9.6 |
|---|
| Cost | 14288 |
|---|
\[\begin{array}{l}
t_0 := \frac{F}{\sin B} \cdot \sqrt{\frac{1}{2 + x \cdot 2}} - \frac{x}{B}\\
\mathbf{if}\;F \leq -9.4 \cdot 10^{-76}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{\tan B}\\
\mathbf{elif}\;F \leq -1.06 \cdot 10^{-128}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 2.3 \cdot 10^{-211}:\\
\;\;\;\;\frac{x \cdot \left(-\cos B\right)}{\sin B}\\
\mathbf{elif}\;F \leq 9 \cdot 10^{-18}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{1}{\sin B}\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 10.7 |
|---|
| Cost | 13772 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -9.5 \cdot 10^{-77}:\\
\;\;\;\;\frac{-1}{\sin B} - \frac{x}{\tan B}\\
\mathbf{elif}\;F \leq 3.2 \cdot 10^{-82}:\\
\;\;\;\;\frac{x \cdot \left(-\cos B\right)}{\sin B}\\
\mathbf{elif}\;F \leq 15:\\
\;\;\;\;{\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \left(\frac{F}{B} + 0.16666666666666666 \cdot \left(F \cdot B\right)\right) - \frac{x}{B}\\
\mathbf{else}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{1}{\sin B}\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 22.4 |
|---|
| Cost | 13448 |
|---|
\[\begin{array}{l}
t_0 := \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B} - \frac{x}{B}\\
\mathbf{if}\;F \leq -1.4 \cdot 10^{-6}:\\
\;\;\;\;\frac{-1}{\sin B}\\
\mathbf{elif}\;F \leq 3.2 \cdot 10^{-82}:\\
\;\;\;\;\left(-x\right) \cdot \frac{\cos B}{\sin B}\\
\mathbf{elif}\;F \leq 15:\\
\;\;\;\;{\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \left(\frac{F}{B} + 0.16666666666666666 \cdot \left(F \cdot B\right)\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 3.300253322507031 \cdot 10^{+94}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 2.1296333206450497 \cdot 10^{+170}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{\tan B}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 9 |
|---|
| Error | 22.4 |
|---|
| Cost | 13448 |
|---|
\[\begin{array}{l}
t_0 := \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B} - \frac{x}{B}\\
\mathbf{if}\;F \leq -1.4 \cdot 10^{-6}:\\
\;\;\;\;\frac{-1}{\sin B}\\
\mathbf{elif}\;F \leq 3.2 \cdot 10^{-82}:\\
\;\;\;\;\frac{x \cdot \left(-\cos B\right)}{\sin B}\\
\mathbf{elif}\;F \leq 15:\\
\;\;\;\;{\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \left(\frac{F}{B} + 0.16666666666666666 \cdot \left(F \cdot B\right)\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 3.300253322507031 \cdot 10^{+94}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 2.1296333206450497 \cdot 10^{+170}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{\tan B}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 10 |
|---|
| Error | 15.6 |
|---|
| Cost | 13448 |
|---|
\[\begin{array}{l}
t_0 := \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B} - \frac{x}{B}\\
t_1 := \frac{x}{\tan B}\\
\mathbf{if}\;F \leq -9.5 \cdot 10^{-77}:\\
\;\;\;\;\frac{-1}{\sin B} - t_1\\
\mathbf{elif}\;F \leq 3.2 \cdot 10^{-82}:\\
\;\;\;\;\frac{x \cdot \left(-\cos B\right)}{\sin B}\\
\mathbf{elif}\;F \leq 15:\\
\;\;\;\;{\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \left(\frac{F}{B} + 0.16666666666666666 \cdot \left(F \cdot B\right)\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 3.300253322507031 \cdot 10^{+94}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 2.1296333206450497 \cdot 10^{+170}:\\
\;\;\;\;\frac{1}{B} - t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 11 |
|---|
| Error | 28.1 |
|---|
| Cost | 8332 |
|---|
\[\begin{array}{l}
t_0 := \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B} - \frac{x}{B}\\
\mathbf{if}\;F \leq -1.4 \cdot 10^{-6}:\\
\;\;\;\;\frac{-1}{\sin B}\\
\mathbf{elif}\;F \leq 9.5 \cdot 10^{-299}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{\frac{1}{F}}{\frac{B}{F}}\\
\mathbf{elif}\;F \leq 15:\\
\;\;\;\;{\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \left(\frac{F}{B} + 0.16666666666666666 \cdot \left(F \cdot B\right)\right) - \frac{x}{B}\\
\mathbf{elif}\;F \leq 3.300253322507031 \cdot 10^{+94}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 2.1296333206450497 \cdot 10^{+170}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{\tan B}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 12 |
|---|
| Error | 29.1 |
|---|
| Cost | 8152 |
|---|
\[\begin{array}{l}
t_0 := \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B} - \frac{x}{B}\\
\mathbf{if}\;F \leq -1.4 \cdot 10^{-6}:\\
\;\;\;\;\frac{-1}{\sin B}\\
\mathbf{elif}\;F \leq 9.5 \cdot 10^{-299}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{\frac{1}{F}}{\frac{B}{F}}\\
\mathbf{elif}\;F \leq 4 \cdot 10^{-170}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{elif}\;F \leq 14.5:\\
\;\;\;\;\frac{1}{B} - x \cdot \frac{1}{\tan B}\\
\mathbf{elif}\;F \leq 3.300253322507031 \cdot 10^{+94}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 2.1296333206450497 \cdot 10^{+170}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{\tan B}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 13 |
|---|
| Error | 28.1 |
|---|
| Cost | 8020 |
|---|
\[\begin{array}{l}
t_0 := \frac{1 + \frac{-1 - x}{F \cdot F}}{\sin B} - \frac{x}{B}\\
\mathbf{if}\;F \leq -1.4 \cdot 10^{-6}:\\
\;\;\;\;\frac{-1}{\sin B}\\
\mathbf{elif}\;F \leq 9.5 \cdot 10^{-299}:\\
\;\;\;\;x \cdot \frac{-1}{\tan B} + \frac{\frac{1}{F}}{\frac{B}{F}}\\
\mathbf{elif}\;F \leq 15:\\
\;\;\;\;{\left(\left(2 + F \cdot F\right) + x \cdot 2\right)}^{-0.5} \cdot \frac{F}{B} - \frac{x}{B}\\
\mathbf{elif}\;F \leq 3.300253322507031 \cdot 10^{+94}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;F \leq 2.1296333206450497 \cdot 10^{+170}:\\
\;\;\;\;\frac{1}{B} - \frac{x}{\tan B}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 14 |
|---|
| Error | 30.8 |
|---|
| Cost | 7772 |
|---|
\[\begin{array}{l}
t_0 := \frac{1}{\sin B}\\
t_1 := \frac{-1}{\sin B}\\
t_2 := \frac{1}{B} - \frac{x}{\tan B}\\
\mathbf{if}\;x \leq -2.6975116082396976 \cdot 10^{-58}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;x \leq -6.637572555071356 \cdot 10^{-120}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -6.103977516044037 \cdot 10^{-192}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 1.0964795611971737 \cdot 10^{-260}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.2120149042996737 \cdot 10^{-139}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 3.075813121129917 \cdot 10^{-90}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.572321028543265 \cdot 10^{-11}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
| Alternative 15 |
|---|
| Error | 38.1 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -9.5 \cdot 10^{-77}:\\
\;\;\;\;\frac{-1 - x}{B}\\
\mathbf{elif}\;F \leq 0.057:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B}\\
\end{array}
\]
| Alternative 16 |
|---|
| Error | 35.3 |
|---|
| Cost | 6856 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -6.5 \cdot 10^{-11}:\\
\;\;\;\;\frac{-1}{\sin B}\\
\mathbf{elif}\;F \leq 0.057:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\sin B}\\
\end{array}
\]
| Alternative 17 |
|---|
| Error | 40.1 |
|---|
| Cost | 1096 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -9.5 \cdot 10^{-77}:\\
\;\;\;\;\frac{-1 - x}{B}\\
\mathbf{elif}\;F \leq 7.5 \cdot 10^{-23}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\left(\frac{1}{B} + 0.3333333333333333 \cdot \left(B \cdot x\right)\right) - \frac{x}{B}\\
\end{array}
\]
| Alternative 18 |
|---|
| Error | 40.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -9.5 \cdot 10^{-77}:\\
\;\;\;\;\frac{-1 - x}{B}\\
\mathbf{elif}\;F \leq 5.15 \cdot 10^{-23}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1 - x}{B}\\
\end{array}
\]
| Alternative 19 |
|---|
| Error | 45.2 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -1.46 \cdot 10^{-6}:\\
\;\;\;\;\frac{-1}{B}\\
\mathbf{elif}\;F \leq 1.4549648841079346 \cdot 10^{+23}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{B}\\
\end{array}
\]
| Alternative 20 |
|---|
| Error | 42.9 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq -9.5 \cdot 10^{-77}:\\
\;\;\;\;\frac{-1 - x}{B}\\
\mathbf{elif}\;F \leq 1.4549648841079346 \cdot 10^{+23}:\\
\;\;\;\;\frac{-x}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{B}\\
\end{array}
\]
| Alternative 21 |
|---|
| Error | 52.3 |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;F \leq 7.5 \cdot 10^{-23}:\\
\;\;\;\;\frac{-1}{B}\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{B}\\
\end{array}
\]
| Alternative 22 |
|---|
| Error | 57.3 |
|---|
| Cost | 192 |
|---|
\[\frac{1}{B}
\]