| Alternative 1 | |
|---|---|
| Accuracy | 71.9% |
| Cost | 40596 |
(FPCore (d h l M D) :precision binary64 (* (* (pow (/ d h) (/ 1.0 2.0)) (pow (/ d l) (/ 1.0 2.0))) (- 1.0 (* (* (/ 1.0 2.0) (pow (/ (* M D) (* 2.0 d)) 2.0)) (/ h l)))))
(FPCore (d h l M D)
:precision binary64
(let* ((t_0 (sqrt (- d)))
(t_1 (sqrt (/ d l)))
(t_2 (sqrt (/ d h)))
(t_3 (/ t_0 (sqrt (- l))))
(t_4 (* (* 0.5 (/ (* M D) d)) (sqrt 0.5))))
(if (<= l -1.8e+157)
(*
(* t_2 t_3)
(- 1.0 (pow (* (* M (* 0.5 (/ D d))) (sqrt (/ (* h 0.5) l))) 2.0)))
(if (<= l -2.5e-93)
(*
(* (/ t_0 (sqrt (- h))) (pow (/ d l) 0.5))
(- 1.0 (* (* 0.5 (pow (/ (* M D) (* d 2.0)) 2.0)) (/ h l))))
(if (<= l -5e-310)
(*
t_2
(*
t_3
(-
1.0
(* 0.5 (* 0.25 (* (/ (* (/ D l) (* M D)) d) (/ M (/ d h))))))))
(if (<= l 1.15e-12)
(*
(* (pow (/ d h) 0.5) t_1)
(- 1.0 (pow (* (/ (sqrt h) (sqrt l)) t_4) 2.0)))
(if (<= l 1.15e+198)
(*
(/ (sqrt d) (sqrt h))
(*
t_1
(- 1.0 (* 0.5 (* (/ h l) (pow (* (/ D d) (/ M 2.0)) 2.0))))))
(*
(* t_2 (/ (sqrt d) (sqrt l)))
(- 1.0 (pow (* t_4 (sqrt (/ h l))) 2.0))))))))))double code(double d, double h, double l, double M, double D) {
return (pow((d / h), (1.0 / 2.0)) * pow((d / l), (1.0 / 2.0))) * (1.0 - (((1.0 / 2.0) * pow(((M * D) / (2.0 * d)), 2.0)) * (h / l)));
}
double code(double d, double h, double l, double M, double D) {
double t_0 = sqrt(-d);
double t_1 = sqrt((d / l));
double t_2 = sqrt((d / h));
double t_3 = t_0 / sqrt(-l);
double t_4 = (0.5 * ((M * D) / d)) * sqrt(0.5);
double tmp;
if (l <= -1.8e+157) {
tmp = (t_2 * t_3) * (1.0 - pow(((M * (0.5 * (D / d))) * sqrt(((h * 0.5) / l))), 2.0));
} else if (l <= -2.5e-93) {
tmp = ((t_0 / sqrt(-h)) * pow((d / l), 0.5)) * (1.0 - ((0.5 * pow(((M * D) / (d * 2.0)), 2.0)) * (h / l)));
} else if (l <= -5e-310) {
tmp = t_2 * (t_3 * (1.0 - (0.5 * (0.25 * ((((D / l) * (M * D)) / d) * (M / (d / h)))))));
} else if (l <= 1.15e-12) {
tmp = (pow((d / h), 0.5) * t_1) * (1.0 - pow(((sqrt(h) / sqrt(l)) * t_4), 2.0));
} else if (l <= 1.15e+198) {
tmp = (sqrt(d) / sqrt(h)) * (t_1 * (1.0 - (0.5 * ((h / l) * pow(((D / d) * (M / 2.0)), 2.0)))));
} else {
tmp = (t_2 * (sqrt(d) / sqrt(l))) * (1.0 - pow((t_4 * sqrt((h / l))), 2.0));
}
return tmp;
}
real(8) function code(d, h, l, m, d_1)
real(8), intent (in) :: d
real(8), intent (in) :: h
real(8), intent (in) :: l
real(8), intent (in) :: m
real(8), intent (in) :: d_1
code = (((d / h) ** (1.0d0 / 2.0d0)) * ((d / l) ** (1.0d0 / 2.0d0))) * (1.0d0 - (((1.0d0 / 2.0d0) * (((m * d_1) / (2.0d0 * d)) ** 2.0d0)) * (h / l)))
end function
real(8) function code(d, h, l, m, d_1)
real(8), intent (in) :: d
real(8), intent (in) :: h
real(8), intent (in) :: l
real(8), intent (in) :: m
real(8), intent (in) :: d_1
real(8) :: t_0
real(8) :: t_1
real(8) :: t_2
real(8) :: t_3
real(8) :: t_4
real(8) :: tmp
t_0 = sqrt(-d)
t_1 = sqrt((d / l))
t_2 = sqrt((d / h))
t_3 = t_0 / sqrt(-l)
t_4 = (0.5d0 * ((m * d_1) / d)) * sqrt(0.5d0)
if (l <= (-1.8d+157)) then
tmp = (t_2 * t_3) * (1.0d0 - (((m * (0.5d0 * (d_1 / d))) * sqrt(((h * 0.5d0) / l))) ** 2.0d0))
else if (l <= (-2.5d-93)) then
tmp = ((t_0 / sqrt(-h)) * ((d / l) ** 0.5d0)) * (1.0d0 - ((0.5d0 * (((m * d_1) / (d * 2.0d0)) ** 2.0d0)) * (h / l)))
else if (l <= (-5d-310)) then
tmp = t_2 * (t_3 * (1.0d0 - (0.5d0 * (0.25d0 * ((((d_1 / l) * (m * d_1)) / d) * (m / (d / h)))))))
else if (l <= 1.15d-12) then
tmp = (((d / h) ** 0.5d0) * t_1) * (1.0d0 - (((sqrt(h) / sqrt(l)) * t_4) ** 2.0d0))
else if (l <= 1.15d+198) then
tmp = (sqrt(d) / sqrt(h)) * (t_1 * (1.0d0 - (0.5d0 * ((h / l) * (((d_1 / d) * (m / 2.0d0)) ** 2.0d0)))))
else
tmp = (t_2 * (sqrt(d) / sqrt(l))) * (1.0d0 - ((t_4 * sqrt((h / l))) ** 2.0d0))
end if
code = tmp
end function
public static double code(double d, double h, double l, double M, double D) {
return (Math.pow((d / h), (1.0 / 2.0)) * Math.pow((d / l), (1.0 / 2.0))) * (1.0 - (((1.0 / 2.0) * Math.pow(((M * D) / (2.0 * d)), 2.0)) * (h / l)));
}
public static double code(double d, double h, double l, double M, double D) {
double t_0 = Math.sqrt(-d);
double t_1 = Math.sqrt((d / l));
double t_2 = Math.sqrt((d / h));
double t_3 = t_0 / Math.sqrt(-l);
double t_4 = (0.5 * ((M * D) / d)) * Math.sqrt(0.5);
double tmp;
if (l <= -1.8e+157) {
tmp = (t_2 * t_3) * (1.0 - Math.pow(((M * (0.5 * (D / d))) * Math.sqrt(((h * 0.5) / l))), 2.0));
} else if (l <= -2.5e-93) {
tmp = ((t_0 / Math.sqrt(-h)) * Math.pow((d / l), 0.5)) * (1.0 - ((0.5 * Math.pow(((M * D) / (d * 2.0)), 2.0)) * (h / l)));
} else if (l <= -5e-310) {
tmp = t_2 * (t_3 * (1.0 - (0.5 * (0.25 * ((((D / l) * (M * D)) / d) * (M / (d / h)))))));
} else if (l <= 1.15e-12) {
tmp = (Math.pow((d / h), 0.5) * t_1) * (1.0 - Math.pow(((Math.sqrt(h) / Math.sqrt(l)) * t_4), 2.0));
} else if (l <= 1.15e+198) {
tmp = (Math.sqrt(d) / Math.sqrt(h)) * (t_1 * (1.0 - (0.5 * ((h / l) * Math.pow(((D / d) * (M / 2.0)), 2.0)))));
} else {
tmp = (t_2 * (Math.sqrt(d) / Math.sqrt(l))) * (1.0 - Math.pow((t_4 * Math.sqrt((h / l))), 2.0));
}
return tmp;
}
def code(d, h, l, M, D): return (math.pow((d / h), (1.0 / 2.0)) * math.pow((d / l), (1.0 / 2.0))) * (1.0 - (((1.0 / 2.0) * math.pow(((M * D) / (2.0 * d)), 2.0)) * (h / l)))
def code(d, h, l, M, D): t_0 = math.sqrt(-d) t_1 = math.sqrt((d / l)) t_2 = math.sqrt((d / h)) t_3 = t_0 / math.sqrt(-l) t_4 = (0.5 * ((M * D) / d)) * math.sqrt(0.5) tmp = 0 if l <= -1.8e+157: tmp = (t_2 * t_3) * (1.0 - math.pow(((M * (0.5 * (D / d))) * math.sqrt(((h * 0.5) / l))), 2.0)) elif l <= -2.5e-93: tmp = ((t_0 / math.sqrt(-h)) * math.pow((d / l), 0.5)) * (1.0 - ((0.5 * math.pow(((M * D) / (d * 2.0)), 2.0)) * (h / l))) elif l <= -5e-310: tmp = t_2 * (t_3 * (1.0 - (0.5 * (0.25 * ((((D / l) * (M * D)) / d) * (M / (d / h))))))) elif l <= 1.15e-12: tmp = (math.pow((d / h), 0.5) * t_1) * (1.0 - math.pow(((math.sqrt(h) / math.sqrt(l)) * t_4), 2.0)) elif l <= 1.15e+198: tmp = (math.sqrt(d) / math.sqrt(h)) * (t_1 * (1.0 - (0.5 * ((h / l) * math.pow(((D / d) * (M / 2.0)), 2.0))))) else: tmp = (t_2 * (math.sqrt(d) / math.sqrt(l))) * (1.0 - math.pow((t_4 * math.sqrt((h / l))), 2.0)) return tmp
function code(d, h, l, M, D) return Float64(Float64((Float64(d / h) ^ Float64(1.0 / 2.0)) * (Float64(d / l) ^ Float64(1.0 / 2.0))) * Float64(1.0 - Float64(Float64(Float64(1.0 / 2.0) * (Float64(Float64(M * D) / Float64(2.0 * d)) ^ 2.0)) * Float64(h / l)))) end
function code(d, h, l, M, D) t_0 = sqrt(Float64(-d)) t_1 = sqrt(Float64(d / l)) t_2 = sqrt(Float64(d / h)) t_3 = Float64(t_0 / sqrt(Float64(-l))) t_4 = Float64(Float64(0.5 * Float64(Float64(M * D) / d)) * sqrt(0.5)) tmp = 0.0 if (l <= -1.8e+157) tmp = Float64(Float64(t_2 * t_3) * Float64(1.0 - (Float64(Float64(M * Float64(0.5 * Float64(D / d))) * sqrt(Float64(Float64(h * 0.5) / l))) ^ 2.0))); elseif (l <= -2.5e-93) tmp = Float64(Float64(Float64(t_0 / sqrt(Float64(-h))) * (Float64(d / l) ^ 0.5)) * Float64(1.0 - Float64(Float64(0.5 * (Float64(Float64(M * D) / Float64(d * 2.0)) ^ 2.0)) * Float64(h / l)))); elseif (l <= -5e-310) tmp = Float64(t_2 * Float64(t_3 * Float64(1.0 - Float64(0.5 * Float64(0.25 * Float64(Float64(Float64(Float64(D / l) * Float64(M * D)) / d) * Float64(M / Float64(d / h)))))))); elseif (l <= 1.15e-12) tmp = Float64(Float64((Float64(d / h) ^ 0.5) * t_1) * Float64(1.0 - (Float64(Float64(sqrt(h) / sqrt(l)) * t_4) ^ 2.0))); elseif (l <= 1.15e+198) tmp = Float64(Float64(sqrt(d) / sqrt(h)) * Float64(t_1 * Float64(1.0 - Float64(0.5 * Float64(Float64(h / l) * (Float64(Float64(D / d) * Float64(M / 2.0)) ^ 2.0)))))); else tmp = Float64(Float64(t_2 * Float64(sqrt(d) / sqrt(l))) * Float64(1.0 - (Float64(t_4 * sqrt(Float64(h / l))) ^ 2.0))); end return tmp end
function tmp = code(d, h, l, M, D) tmp = (((d / h) ^ (1.0 / 2.0)) * ((d / l) ^ (1.0 / 2.0))) * (1.0 - (((1.0 / 2.0) * (((M * D) / (2.0 * d)) ^ 2.0)) * (h / l))); end
function tmp_2 = code(d, h, l, M, D) t_0 = sqrt(-d); t_1 = sqrt((d / l)); t_2 = sqrt((d / h)); t_3 = t_0 / sqrt(-l); t_4 = (0.5 * ((M * D) / d)) * sqrt(0.5); tmp = 0.0; if (l <= -1.8e+157) tmp = (t_2 * t_3) * (1.0 - (((M * (0.5 * (D / d))) * sqrt(((h * 0.5) / l))) ^ 2.0)); elseif (l <= -2.5e-93) tmp = ((t_0 / sqrt(-h)) * ((d / l) ^ 0.5)) * (1.0 - ((0.5 * (((M * D) / (d * 2.0)) ^ 2.0)) * (h / l))); elseif (l <= -5e-310) tmp = t_2 * (t_3 * (1.0 - (0.5 * (0.25 * ((((D / l) * (M * D)) / d) * (M / (d / h))))))); elseif (l <= 1.15e-12) tmp = (((d / h) ^ 0.5) * t_1) * (1.0 - (((sqrt(h) / sqrt(l)) * t_4) ^ 2.0)); elseif (l <= 1.15e+198) tmp = (sqrt(d) / sqrt(h)) * (t_1 * (1.0 - (0.5 * ((h / l) * (((D / d) * (M / 2.0)) ^ 2.0))))); else tmp = (t_2 * (sqrt(d) / sqrt(l))) * (1.0 - ((t_4 * sqrt((h / l))) ^ 2.0)); end tmp_2 = tmp; end
code[d_, h_, l_, M_, D_] := N[(N[(N[Power[N[(d / h), $MachinePrecision], N[(1.0 / 2.0), $MachinePrecision]], $MachinePrecision] * N[Power[N[(d / l), $MachinePrecision], N[(1.0 / 2.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * N[(1.0 - N[(N[(N[(1.0 / 2.0), $MachinePrecision] * N[Power[N[(N[(M * D), $MachinePrecision] / N[(2.0 * d), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(h / l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[d_, h_, l_, M_, D_] := Block[{t$95$0 = N[Sqrt[(-d)], $MachinePrecision]}, Block[{t$95$1 = N[Sqrt[N[(d / l), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$2 = N[Sqrt[N[(d / h), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$3 = N[(t$95$0 / N[Sqrt[(-l)], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$4 = N[(N[(0.5 * N[(N[(M * D), $MachinePrecision] / d), $MachinePrecision]), $MachinePrecision] * N[Sqrt[0.5], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[l, -1.8e+157], N[(N[(t$95$2 * t$95$3), $MachinePrecision] * N[(1.0 - N[Power[N[(N[(M * N[(0.5 * N[(D / d), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[Sqrt[N[(N[(h * 0.5), $MachinePrecision] / l), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[l, -2.5e-93], N[(N[(N[(t$95$0 / N[Sqrt[(-h)], $MachinePrecision]), $MachinePrecision] * N[Power[N[(d / l), $MachinePrecision], 0.5], $MachinePrecision]), $MachinePrecision] * N[(1.0 - N[(N[(0.5 * N[Power[N[(N[(M * D), $MachinePrecision] / N[(d * 2.0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * N[(h / l), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[l, -5e-310], N[(t$95$2 * N[(t$95$3 * N[(1.0 - N[(0.5 * N[(0.25 * N[(N[(N[(N[(D / l), $MachinePrecision] * N[(M * D), $MachinePrecision]), $MachinePrecision] / d), $MachinePrecision] * N[(M / N[(d / h), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[l, 1.15e-12], N[(N[(N[Power[N[(d / h), $MachinePrecision], 0.5], $MachinePrecision] * t$95$1), $MachinePrecision] * N[(1.0 - N[Power[N[(N[(N[Sqrt[h], $MachinePrecision] / N[Sqrt[l], $MachinePrecision]), $MachinePrecision] * t$95$4), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[l, 1.15e+198], N[(N[(N[Sqrt[d], $MachinePrecision] / N[Sqrt[h], $MachinePrecision]), $MachinePrecision] * N[(t$95$1 * N[(1.0 - N[(0.5 * N[(N[(h / l), $MachinePrecision] * N[Power[N[(N[(D / d), $MachinePrecision] * N[(M / 2.0), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(t$95$2 * N[(N[Sqrt[d], $MachinePrecision] / N[Sqrt[l], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(1.0 - N[Power[N[(t$95$4 * N[Sqrt[N[(h / l), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]]]]]]]
\left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\begin{array}{l}
t_0 := \sqrt{-d}\\
t_1 := \sqrt{\frac{d}{\ell}}\\
t_2 := \sqrt{\frac{d}{h}}\\
t_3 := \frac{t_0}{\sqrt{-\ell}}\\
t_4 := \left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\\
\mathbf{if}\;\ell \leq -1.8 \cdot 10^{+157}:\\
\;\;\;\;\left(t_2 \cdot t_3\right) \cdot \left(1 - {\left(\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right) \cdot \sqrt{\frac{h \cdot 0.5}{\ell}}\right)}^{2}\right)\\
\mathbf{elif}\;\ell \leq -2.5 \cdot 10^{-93}:\\
\;\;\;\;\left(\frac{t_0}{\sqrt{-h}} \cdot {\left(\frac{d}{\ell}\right)}^{0.5}\right) \cdot \left(1 - \left(0.5 \cdot {\left(\frac{M \cdot D}{d \cdot 2}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\\
\mathbf{elif}\;\ell \leq -5 \cdot 10^{-310}:\\
\;\;\;\;t_2 \cdot \left(t_3 \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\frac{D}{\ell} \cdot \left(M \cdot D\right)}{d} \cdot \frac{M}{\frac{d}{h}}\right)\right)\right)\right)\\
\mathbf{elif}\;\ell \leq 1.15 \cdot 10^{-12}:\\
\;\;\;\;\left({\left(\frac{d}{h}\right)}^{0.5} \cdot t_1\right) \cdot \left(1 - {\left(\frac{\sqrt{h}}{\sqrt{\ell}} \cdot t_4\right)}^{2}\right)\\
\mathbf{elif}\;\ell \leq 1.15 \cdot 10^{+198}:\\
\;\;\;\;\frac{\sqrt{d}}{\sqrt{h}} \cdot \left(t_1 \cdot \left(1 - 0.5 \cdot \left(\frac{h}{\ell} \cdot {\left(\frac{D}{d} \cdot \frac{M}{2}\right)}^{2}\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\left(t_2 \cdot \frac{\sqrt{d}}{\sqrt{\ell}}\right) \cdot \left(1 - {\left(t_4 \cdot \sqrt{\frac{h}{\ell}}\right)}^{2}\right)\\
\end{array}
Results
if l < -1.80000000000000012e157Initial program 53.2%
Simplified53.2%
[Start]53.2 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
|---|---|
metadata-eval [=>]53.2 | \[ \left({\left(\frac{d}{h}\right)}^{\color{blue}{0.5}} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
unpow1/2 [=>]53.2 | \[ \left(\color{blue}{\sqrt{\frac{d}{h}}} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
metadata-eval [=>]53.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot {\left(\frac{d}{\ell}\right)}^{\color{blue}{0.5}}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
unpow1/2 [=>]53.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \color{blue}{\sqrt{\frac{d}{\ell}}}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
*-commutative [=>]53.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - \color{blue}{\left({\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2} \cdot \frac{1}{2}\right)} \cdot \frac{h}{\ell}\right)
\] |
associate-*l* [=>]53.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - \color{blue}{{\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2} \cdot \left(\frac{1}{2} \cdot \frac{h}{\ell}\right)}\right)
\] |
times-frac [=>]53.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\color{blue}{\left(\frac{M}{2} \cdot \frac{D}{d}\right)}}^{2} \cdot \left(\frac{1}{2} \cdot \frac{h}{\ell}\right)\right)
\] |
metadata-eval [=>]53.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(\color{blue}{0.5} \cdot \frac{h}{\ell}\right)\right)
\] |
Applied egg-rr62.5%
[Start]53.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)\right)
\] |
|---|---|
frac-2neg [=>]53.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\color{blue}{\frac{-d}{-\ell}}}\right) \cdot \left(1 - {\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)\right)
\] |
sqrt-div [=>]62.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \color{blue}{\frac{\sqrt{-d}}{\sqrt{-\ell}}}\right) \cdot \left(1 - {\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)\right)
\] |
Applied egg-rr67.7%
[Start]62.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)\right)
\] |
|---|---|
add-sqr-sqrt [=>]62.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - \color{blue}{\sqrt{{\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)} \cdot \sqrt{{\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)}}\right)
\] |
pow2 [=>]62.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - \color{blue}{{\left(\sqrt{{\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)}\right)}^{2}}\right)
\] |
sqrt-prod [=>]62.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\color{blue}{\left(\sqrt{{\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2}} \cdot \sqrt{0.5 \cdot \frac{h}{\ell}}\right)}}^{2}\right)
\] |
unpow2 [=>]62.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\left(\sqrt{\color{blue}{\left(\frac{M}{2} \cdot \frac{D}{d}\right) \cdot \left(\frac{M}{2} \cdot \frac{D}{d}\right)}} \cdot \sqrt{0.5 \cdot \frac{h}{\ell}}\right)}^{2}\right)
\] |
sqrt-prod [=>]43.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\left(\color{blue}{\left(\sqrt{\frac{M}{2} \cdot \frac{D}{d}} \cdot \sqrt{\frac{M}{2} \cdot \frac{D}{d}}\right)} \cdot \sqrt{0.5 \cdot \frac{h}{\ell}}\right)}^{2}\right)
\] |
add-sqr-sqrt [<=]67.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\left(\color{blue}{\left(\frac{M}{2} \cdot \frac{D}{d}\right)} \cdot \sqrt{0.5 \cdot \frac{h}{\ell}}\right)}^{2}\right)
\] |
div-inv [=>]67.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\left(\left(\color{blue}{\left(M \cdot \frac{1}{2}\right)} \cdot \frac{D}{d}\right) \cdot \sqrt{0.5 \cdot \frac{h}{\ell}}\right)}^{2}\right)
\] |
metadata-eval [=>]67.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\left(\left(\left(M \cdot \color{blue}{0.5}\right) \cdot \frac{D}{d}\right) \cdot \sqrt{0.5 \cdot \frac{h}{\ell}}\right)}^{2}\right)
\] |
associate-*l* [=>]67.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\left(\color{blue}{\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)} \cdot \sqrt{0.5 \cdot \frac{h}{\ell}}\right)}^{2}\right)
\] |
associate-*r/ [=>]67.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\sqrt{-d}}{\sqrt{-\ell}}\right) \cdot \left(1 - {\left(\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right) \cdot \sqrt{\color{blue}{\frac{0.5 \cdot h}{\ell}}}\right)}^{2}\right)
\] |
if -1.80000000000000012e157 < l < -2.49999999999999997e-93Initial program 67.3%
Applied egg-rr78.0%
[Start]67.3 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
|---|---|
metadata-eval [=>]67.3 | \[ \left({\left(\frac{d}{h}\right)}^{\color{blue}{0.5}} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
unpow1/2 [=>]67.3 | \[ \left(\color{blue}{\sqrt{\frac{d}{h}}} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
frac-2neg [=>]67.3 | \[ \left(\sqrt{\color{blue}{\frac{-d}{-h}}} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
sqrt-div [=>]78.0 | \[ \left(\color{blue}{\frac{\sqrt{-d}}{\sqrt{-h}}} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
if -2.49999999999999997e-93 < l < -4.999999999999985e-310Initial program 49.8%
Simplified48.6%
[Start]49.8 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
|---|---|
associate-*l* [=>]49.1 | \[ \color{blue}{{\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)}
\] |
metadata-eval [=>]49.1 | \[ {\left(\frac{d}{h}\right)}^{\color{blue}{0.5}} \cdot \left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)
\] |
unpow1/2 [=>]49.1 | \[ \color{blue}{\sqrt{\frac{d}{h}}} \cdot \left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)
\] |
metadata-eval [=>]49.1 | \[ \sqrt{\frac{d}{h}} \cdot \left({\left(\frac{d}{\ell}\right)}^{\color{blue}{0.5}} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)
\] |
unpow1/2 [=>]49.1 | \[ \sqrt{\frac{d}{h}} \cdot \left(\color{blue}{\sqrt{\frac{d}{\ell}}} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)
\] |
associate-*l* [=>]49.1 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - \color{blue}{\frac{1}{2} \cdot \left({\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2} \cdot \frac{h}{\ell}\right)}\right)\right)
\] |
metadata-eval [=>]49.1 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - \color{blue}{0.5} \cdot \left({\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
times-frac [=>]48.6 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left({\color{blue}{\left(\frac{M}{2} \cdot \frac{D}{d}\right)}}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
Taylor expanded in M around 0 25.7%
Simplified34.2%
[Start]25.7 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{\ell \cdot {d}^{2}}\right)\right)\right)
\] |
|---|---|
*-commutative [=>]25.7 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{{D}^{2} \cdot \color{blue}{\left(h \cdot {M}^{2}\right)}}{\ell \cdot {d}^{2}}\right)\right)\right)
\] |
times-frac [=>]34.2 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\left(\frac{{D}^{2}}{\ell} \cdot \frac{h \cdot {M}^{2}}{{d}^{2}}\right)}\right)\right)\right)
\] |
unpow2 [=>]34.2 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\color{blue}{D \cdot D}}{\ell} \cdot \frac{h \cdot {M}^{2}}{{d}^{2}}\right)\right)\right)\right)
\] |
*-commutative [<=]34.2 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot D}{\ell} \cdot \frac{\color{blue}{{M}^{2} \cdot h}}{{d}^{2}}\right)\right)\right)\right)
\] |
unpow2 [=>]34.2 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot D}{\ell} \cdot \frac{\color{blue}{\left(M \cdot M\right)} \cdot h}{{d}^{2}}\right)\right)\right)\right)
\] |
unpow2 [=>]34.2 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot D}{\ell} \cdot \frac{\left(M \cdot M\right) \cdot h}{\color{blue}{d \cdot d}}\right)\right)\right)\right)
\] |
Applied egg-rr39.8%
[Start]34.2 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot D}{\ell} \cdot \frac{\left(M \cdot M\right) \cdot h}{d \cdot d}\right)\right)\right)\right)
\] |
|---|---|
associate-/l* [=>]33.2 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot D}{\ell} \cdot \color{blue}{\frac{M \cdot M}{\frac{d \cdot d}{h}}}\right)\right)\right)\right)
\] |
associate-*r/ [=>]33.3 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{\frac{D \cdot D}{\ell} \cdot \left(M \cdot M\right)}{\frac{d \cdot d}{h}}}\right)\right)\right)
\] |
associate-/l* [=>]34.8 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\color{blue}{\frac{D}{\frac{\ell}{D}}} \cdot \left(M \cdot M\right)}{\frac{d \cdot d}{h}}\right)\right)\right)
\] |
associate-/r/ [=>]34.8 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\color{blue}{\left(\frac{D}{\ell} \cdot D\right)} \cdot \left(M \cdot M\right)}{\frac{d \cdot d}{h}}\right)\right)\right)
\] |
associate-/l* [=>]39.8 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\left(\frac{D}{\ell} \cdot D\right) \cdot \left(M \cdot M\right)}{\color{blue}{\frac{d}{\frac{h}{d}}}}\right)\right)\right)
\] |
Applied egg-rr53.2%
[Start]39.8 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\left(\frac{D}{\ell} \cdot D\right) \cdot \left(M \cdot M\right)}{\frac{d}{\frac{h}{d}}}\right)\right)\right)
\] |
|---|---|
associate-*r* [=>]42.7 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\color{blue}{\left(\left(\frac{D}{\ell} \cdot D\right) \cdot M\right) \cdot M}}{\frac{d}{\frac{h}{d}}}\right)\right)\right)
\] |
div-inv [=>]42.7 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\left(\left(\frac{D}{\ell} \cdot D\right) \cdot M\right) \cdot M}{\color{blue}{d \cdot \frac{1}{\frac{h}{d}}}}\right)\right)\right)
\] |
times-frac [=>]49.3 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\left(\frac{\left(\frac{D}{\ell} \cdot D\right) \cdot M}{d} \cdot \frac{M}{\frac{1}{\frac{h}{d}}}\right)}\right)\right)\right)
\] |
associate-*l* [=>]52.9 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\color{blue}{\frac{D}{\ell} \cdot \left(D \cdot M\right)}}{d} \cdot \frac{M}{\frac{1}{\frac{h}{d}}}\right)\right)\right)\right)
\] |
clear-num [<=]53.2 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\frac{D}{\ell} \cdot \left(D \cdot M\right)}{d} \cdot \frac{M}{\color{blue}{\frac{d}{h}}}\right)\right)\right)\right)
\] |
Applied egg-rr73.8%
[Start]49.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)\right)
\] |
|---|---|
frac-2neg [=>]49.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\color{blue}{\frac{-d}{-\ell}}}\right) \cdot \left(1 - {\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)\right)
\] |
sqrt-div [=>]59.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \color{blue}{\frac{\sqrt{-d}}{\sqrt{-\ell}}}\right) \cdot \left(1 - {\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \left(0.5 \cdot \frac{h}{\ell}\right)\right)
\] |
if -4.999999999999985e-310 < l < 1.14999999999999995e-12Initial program 54.8%
Applied egg-rr55.9%
[Start]54.8 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
|---|---|
add-sqr-sqrt [=>]54.8 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \color{blue}{\sqrt{\left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}} \cdot \sqrt{\left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}}}\right)
\] |
pow2 [=>]54.8 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \color{blue}{{\left(\sqrt{\left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}}\right)}^{2}}\right)
\] |
Applied egg-rr40.9%
[Start]55.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
expm1-log1p-u [=>]53.1 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right)\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
expm1-udef [=>]40.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \color{blue}{\left(e^{\mathsf{log1p}\left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right)} - 1\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
metadata-eval [=>]40.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(e^{\mathsf{log1p}\left({\left(\frac{d}{\ell}\right)}^{\color{blue}{0.5}}\right)} - 1\right)\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
unpow1/2 [=>]40.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(e^{\mathsf{log1p}\left(\color{blue}{\sqrt{\frac{d}{\ell}}}\right)} - 1\right)\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Simplified55.9%
[Start]40.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(e^{\mathsf{log1p}\left(\sqrt{\frac{d}{\ell}}\right)} - 1\right)\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
expm1-def [=>]53.1 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left(\sqrt{\frac{d}{\ell}}\right)\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
expm1-log1p [=>]55.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \color{blue}{\sqrt{\frac{d}{\ell}}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Applied egg-rr65.2%
[Start]55.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
sqrt-div [=>]65.2 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\color{blue}{\frac{\sqrt{h}}{\sqrt{\ell}}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
clear-num [=>]65.2 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\color{blue}{\frac{1}{\frac{\sqrt{\ell}}{\sqrt{h}}}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Simplified65.2%
[Start]65.2 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\frac{1}{\frac{\sqrt{\ell}}{\sqrt{h}}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
associate-/l* [<=]65.2 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\color{blue}{\frac{1 \cdot \sqrt{h}}{\sqrt{\ell}}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
*-lft-identity [=>]65.2 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\frac{\color{blue}{\sqrt{h}}}{\sqrt{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
if 1.14999999999999995e-12 < l < 1.15e198Initial program 64.1%
Simplified62.5%
[Start]64.1 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
|---|---|
associate-*l* [=>]64.0 | \[ \color{blue}{{\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)}
\] |
metadata-eval [=>]64.0 | \[ {\left(\frac{d}{h}\right)}^{\color{blue}{0.5}} \cdot \left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)
\] |
unpow1/2 [=>]64.0 | \[ \color{blue}{\sqrt{\frac{d}{h}}} \cdot \left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)
\] |
metadata-eval [=>]64.0 | \[ \sqrt{\frac{d}{h}} \cdot \left({\left(\frac{d}{\ell}\right)}^{\color{blue}{0.5}} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)
\] |
unpow1/2 [=>]64.0 | \[ \sqrt{\frac{d}{h}} \cdot \left(\color{blue}{\sqrt{\frac{d}{\ell}}} \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)\right)
\] |
associate-*l* [=>]64.0 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - \color{blue}{\frac{1}{2} \cdot \left({\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2} \cdot \frac{h}{\ell}\right)}\right)\right)
\] |
metadata-eval [=>]64.0 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - \color{blue}{0.5} \cdot \left({\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
times-frac [=>]62.5 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left({\color{blue}{\left(\frac{M}{2} \cdot \frac{D}{d}\right)}}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
Applied egg-rr74.1%
[Start]62.5 | \[ \sqrt{\frac{d}{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left({\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
|---|---|
sqrt-div [=>]74.2 | \[ \color{blue}{\frac{\sqrt{d}}{\sqrt{h}}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left({\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
div-inv [=>]74.1 | \[ \color{blue}{\left(\sqrt{d} \cdot \frac{1}{\sqrt{h}}\right)} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left({\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
Simplified74.2%
[Start]74.1 | \[ \left(\sqrt{d} \cdot \frac{1}{\sqrt{h}}\right) \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left({\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
|---|---|
associate-*r/ [=>]74.2 | \[ \color{blue}{\frac{\sqrt{d} \cdot 1}{\sqrt{h}}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left({\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
*-rgt-identity [=>]74.2 | \[ \frac{\color{blue}{\sqrt{d}}}{\sqrt{h}} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 - 0.5 \cdot \left({\left(\frac{M}{2} \cdot \frac{D}{d}\right)}^{2} \cdot \frac{h}{\ell}\right)\right)\right)
\] |
if 1.15e198 < l Initial program 50.9%
Applied egg-rr53.6%
[Start]50.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}\right)
\] |
|---|---|
add-sqr-sqrt [=>]50.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \color{blue}{\sqrt{\left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}} \cdot \sqrt{\left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}}}\right)
\] |
pow2 [=>]50.9 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - \color{blue}{{\left(\sqrt{\left(\frac{1}{2} \cdot {\left(\frac{M \cdot D}{2 \cdot d}\right)}^{2}\right) \cdot \frac{h}{\ell}}\right)}^{2}}\right)
\] |
Applied egg-rr17.5%
[Start]53.6 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot {\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
expm1-log1p-u [=>]53.4 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right)\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
expm1-udef [=>]17.5 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \color{blue}{\left(e^{\mathsf{log1p}\left({\left(\frac{d}{\ell}\right)}^{\left(\frac{1}{2}\right)}\right)} - 1\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
metadata-eval [=>]17.5 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(e^{\mathsf{log1p}\left({\left(\frac{d}{\ell}\right)}^{\color{blue}{0.5}}\right)} - 1\right)\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
unpow1/2 [=>]17.5 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(e^{\mathsf{log1p}\left(\color{blue}{\sqrt{\frac{d}{\ell}}}\right)} - 1\right)\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Simplified53.6%
[Start]17.5 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \left(e^{\mathsf{log1p}\left(\sqrt{\frac{d}{\ell}}\right)} - 1\right)\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
expm1-def [=>]53.4 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left(\sqrt{\frac{d}{\ell}}\right)\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
expm1-log1p [=>]53.6 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \color{blue}{\sqrt{\frac{d}{\ell}}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Applied egg-rr38.5%
[Start]53.6 | \[ \left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
expm1-log1p-u [=>]51.7 | \[ \left(\color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)}\right)\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
expm1-udef [=>]38.5 | \[ \left(\color{blue}{\left(e^{\mathsf{log1p}\left({\left(\frac{d}{h}\right)}^{\left(\frac{1}{2}\right)}\right)} - 1\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
metadata-eval [=>]38.5 | \[ \left(\left(e^{\mathsf{log1p}\left({\left(\frac{d}{h}\right)}^{\color{blue}{0.5}}\right)} - 1\right) \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
unpow1/2 [=>]38.5 | \[ \left(\left(e^{\mathsf{log1p}\left(\color{blue}{\sqrt{\frac{d}{h}}}\right)} - 1\right) \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Simplified53.6%
[Start]38.5 | \[ \left(\left(e^{\mathsf{log1p}\left(\sqrt{\frac{d}{h}}\right)} - 1\right) \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
expm1-def [=>]51.7 | \[ \left(\color{blue}{\mathsf{expm1}\left(\mathsf{log1p}\left(\sqrt{\frac{d}{h}}\right)\right)} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
expm1-log1p [=>]53.6 | \[ \left(\color{blue}{\sqrt{\frac{d}{h}}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Applied egg-rr66.3%
[Start]53.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
sqrt-div [=>]66.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \color{blue}{\frac{\sqrt{d}}{\sqrt{\ell}}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
div-inv [=>]66.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \color{blue}{\left(\sqrt{d} \cdot \frac{1}{\sqrt{\ell}}\right)}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Simplified66.3%
[Start]66.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \left(\sqrt{d} \cdot \frac{1}{\sqrt{\ell}}\right)\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
|---|---|
associate-*r/ [=>]66.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \color{blue}{\frac{\sqrt{d} \cdot 1}{\sqrt{\ell}}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
*-rgt-identity [=>]66.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \frac{\color{blue}{\sqrt{d}}}{\sqrt{\ell}}\right) \cdot \left(1 - {\left(\sqrt{\frac{h}{\ell}} \cdot \left(\left(0.5 \cdot \frac{M \cdot D}{d}\right) \cdot \sqrt{0.5}\right)\right)}^{2}\right)
\] |
Final simplification71.4%
| Alternative 1 | |
|---|---|
| Accuracy | 71.9% |
| Cost | 40596 |
| Alternative 2 | |
|---|---|
| Accuracy | 68.9% |
| Cost | 27928 |
| Alternative 3 | |
|---|---|
| Accuracy | 68.9% |
| Cost | 27928 |
| Alternative 4 | |
|---|---|
| Accuracy | 71.2% |
| Cost | 27924 |
| Alternative 5 | |
|---|---|
| Accuracy | 64.2% |
| Cost | 21980 |
| Alternative 6 | |
|---|---|
| Accuracy | 67.2% |
| Cost | 21848 |
| Alternative 7 | |
|---|---|
| Accuracy | 66.3% |
| Cost | 21848 |
| Alternative 8 | |
|---|---|
| Accuracy | 67.9% |
| Cost | 21584 |
| Alternative 9 | |
|---|---|
| Accuracy | 68.9% |
| Cost | 21452 |
| Alternative 10 | |
|---|---|
| Accuracy | 67.1% |
| Cost | 21132 |
| Alternative 11 | |
|---|---|
| Accuracy | 68.5% |
| Cost | 21068 |
| Alternative 12 | |
|---|---|
| Accuracy | 67.1% |
| Cost | 19908 |
| Alternative 13 | |
|---|---|
| Accuracy | 64.5% |
| Cost | 15316 |
| Alternative 14 | |
|---|---|
| Accuracy | 66.6% |
| Cost | 15316 |
| Alternative 15 | |
|---|---|
| Accuracy | 63.0% |
| Cost | 15188 |
| Alternative 16 | |
|---|---|
| Accuracy | 65.3% |
| Cost | 15184 |
| Alternative 17 | |
|---|---|
| Accuracy | 64.9% |
| Cost | 14924 |
| Alternative 18 | |
|---|---|
| Accuracy | 66.9% |
| Cost | 14920 |
| Alternative 19 | |
|---|---|
| Accuracy | 63.9% |
| Cost | 14792 |
| Alternative 20 | |
|---|---|
| Accuracy | 64.6% |
| Cost | 13644 |
| Alternative 21 | |
|---|---|
| Accuracy | 64.8% |
| Cost | 13644 |
| Alternative 22 | |
|---|---|
| Accuracy | 64.8% |
| Cost | 13644 |
| Alternative 23 | |
|---|---|
| Accuracy | 63.3% |
| Cost | 13516 |
| Alternative 24 | |
|---|---|
| Accuracy | 62.8% |
| Cost | 13252 |
| Alternative 25 | |
|---|---|
| Accuracy | 58.1% |
| Cost | 7044 |
| Alternative 26 | |
|---|---|
| Accuracy | 58.3% |
| Cost | 7044 |
| Alternative 27 | |
|---|---|
| Accuracy | 48.6% |
| Cost | 6980 |
| Alternative 28 | |
|---|---|
| Accuracy | 48.4% |
| Cost | 6980 |
| Alternative 29 | |
|---|---|
| Accuracy | 48.5% |
| Cost | 6980 |
| Alternative 30 | |
|---|---|
| Accuracy | 48.6% |
| Cost | 6980 |
| Alternative 31 | |
|---|---|
| Accuracy | 31.6% |
| Cost | 6720 |
herbie shell --seed 2023151
(FPCore (d h l M D)
:name "Henrywood and Agarwal, Equation (12)"
:precision binary64
(* (* (pow (/ d h) (/ 1.0 2.0)) (pow (/ d l) (/ 1.0 2.0))) (- 1.0 (* (* (/ 1.0 2.0) (pow (/ (* M D) (* 2.0 d)) 2.0)) (/ h l)))))