| Alternative 1 | |
|---|---|
| Accuracy | 71.9% |
| Cost | 34064 |
(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
(+ 1.0 (* 0.5 (* (/ (* D M) (* (* d (/ d h)) (/ l (* D M)))) -0.25))))
(t_1 (sqrt (/ d l)))
(t_2 (sqrt (/ d h)))
(t_3 (sqrt (- d))))
(if (<= h -1.65e+61)
(* (* t_2 (/ t_3 (sqrt (- l)))) t_0)
(if (<= h -5e-310)
(*
(* (/ t_3 (sqrt (- h))) t_1)
(+ 1.0 (* 0.5 (* (/ (* D (* M (/ h d))) (* (/ d D) (/ l M))) -0.25))))
(if (<= h 1.95e-153)
(/
(*
(* t_1 (sqrt d))
(+ 1.0 (* -0.125 (/ (* D (/ h (/ d M))) (* (/ d M) (/ l D))))))
(sqrt h))
(if (<= h 1.15e+61)
(*
(* (pow (/ d h) 0.5) (/ (sqrt d) (sqrt l)))
(-
1.0
(pow
(* (/ (* (sqrt 0.5) (* M (* 0.5 D))) d) (sqrt (/ h l)))
2.0)))
(if (<= h 7.6e+150)
(*
(/ d (* (sqrt h) (sqrt l)))
(+ 1.0 (* (pow (* M (* 0.5 (/ D d))) 2.0) (* (/ h l) -0.5))))
(if (<= h 1.85e+264)
(* t_0 (* t_2 (/ 1.0 (/ (sqrt l) (sqrt d)))))
(*
(* t_2 t_1)
(+
1.0
(*
0.5
(*
(pow (* (* M (/ D (sqrt l))) (/ (sqrt h) d)) 2.0)
-0.25))))))))))))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 = 1.0 + (0.5 * (((D * M) / ((d * (d / h)) * (l / (D * M)))) * -0.25));
double t_1 = sqrt((d / l));
double t_2 = sqrt((d / h));
double t_3 = sqrt(-d);
double tmp;
if (h <= -1.65e+61) {
tmp = (t_2 * (t_3 / sqrt(-l))) * t_0;
} else if (h <= -5e-310) {
tmp = ((t_3 / sqrt(-h)) * t_1) * (1.0 + (0.5 * (((D * (M * (h / d))) / ((d / D) * (l / M))) * -0.25)));
} else if (h <= 1.95e-153) {
tmp = ((t_1 * sqrt(d)) * (1.0 + (-0.125 * ((D * (h / (d / M))) / ((d / M) * (l / D)))))) / sqrt(h);
} else if (h <= 1.15e+61) {
tmp = (pow((d / h), 0.5) * (sqrt(d) / sqrt(l))) * (1.0 - pow((((sqrt(0.5) * (M * (0.5 * D))) / d) * sqrt((h / l))), 2.0));
} else if (h <= 7.6e+150) {
tmp = (d / (sqrt(h) * sqrt(l))) * (1.0 + (pow((M * (0.5 * (D / d))), 2.0) * ((h / l) * -0.5)));
} else if (h <= 1.85e+264) {
tmp = t_0 * (t_2 * (1.0 / (sqrt(l) / sqrt(d))));
} else {
tmp = (t_2 * t_1) * (1.0 + (0.5 * (pow(((M * (D / sqrt(l))) * (sqrt(h) / d)), 2.0) * -0.25)));
}
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) :: tmp
t_0 = 1.0d0 + (0.5d0 * (((d_1 * m) / ((d * (d / h)) * (l / (d_1 * m)))) * (-0.25d0)))
t_1 = sqrt((d / l))
t_2 = sqrt((d / h))
t_3 = sqrt(-d)
if (h <= (-1.65d+61)) then
tmp = (t_2 * (t_3 / sqrt(-l))) * t_0
else if (h <= (-5d-310)) then
tmp = ((t_3 / sqrt(-h)) * t_1) * (1.0d0 + (0.5d0 * (((d_1 * (m * (h / d))) / ((d / d_1) * (l / m))) * (-0.25d0))))
else if (h <= 1.95d-153) then
tmp = ((t_1 * sqrt(d)) * (1.0d0 + ((-0.125d0) * ((d_1 * (h / (d / m))) / ((d / m) * (l / d_1)))))) / sqrt(h)
else if (h <= 1.15d+61) then
tmp = (((d / h) ** 0.5d0) * (sqrt(d) / sqrt(l))) * (1.0d0 - ((((sqrt(0.5d0) * (m * (0.5d0 * d_1))) / d) * sqrt((h / l))) ** 2.0d0))
else if (h <= 7.6d+150) then
tmp = (d / (sqrt(h) * sqrt(l))) * (1.0d0 + (((m * (0.5d0 * (d_1 / d))) ** 2.0d0) * ((h / l) * (-0.5d0))))
else if (h <= 1.85d+264) then
tmp = t_0 * (t_2 * (1.0d0 / (sqrt(l) / sqrt(d))))
else
tmp = (t_2 * t_1) * (1.0d0 + (0.5d0 * ((((m * (d_1 / sqrt(l))) * (sqrt(h) / d)) ** 2.0d0) * (-0.25d0))))
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 = 1.0 + (0.5 * (((D * M) / ((d * (d / h)) * (l / (D * M)))) * -0.25));
double t_1 = Math.sqrt((d / l));
double t_2 = Math.sqrt((d / h));
double t_3 = Math.sqrt(-d);
double tmp;
if (h <= -1.65e+61) {
tmp = (t_2 * (t_3 / Math.sqrt(-l))) * t_0;
} else if (h <= -5e-310) {
tmp = ((t_3 / Math.sqrt(-h)) * t_1) * (1.0 + (0.5 * (((D * (M * (h / d))) / ((d / D) * (l / M))) * -0.25)));
} else if (h <= 1.95e-153) {
tmp = ((t_1 * Math.sqrt(d)) * (1.0 + (-0.125 * ((D * (h / (d / M))) / ((d / M) * (l / D)))))) / Math.sqrt(h);
} else if (h <= 1.15e+61) {
tmp = (Math.pow((d / h), 0.5) * (Math.sqrt(d) / Math.sqrt(l))) * (1.0 - Math.pow((((Math.sqrt(0.5) * (M * (0.5 * D))) / d) * Math.sqrt((h / l))), 2.0));
} else if (h <= 7.6e+150) {
tmp = (d / (Math.sqrt(h) * Math.sqrt(l))) * (1.0 + (Math.pow((M * (0.5 * (D / d))), 2.0) * ((h / l) * -0.5)));
} else if (h <= 1.85e+264) {
tmp = t_0 * (t_2 * (1.0 / (Math.sqrt(l) / Math.sqrt(d))));
} else {
tmp = (t_2 * t_1) * (1.0 + (0.5 * (Math.pow(((M * (D / Math.sqrt(l))) * (Math.sqrt(h) / d)), 2.0) * -0.25)));
}
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 = 1.0 + (0.5 * (((D * M) / ((d * (d / h)) * (l / (D * M)))) * -0.25)) t_1 = math.sqrt((d / l)) t_2 = math.sqrt((d / h)) t_3 = math.sqrt(-d) tmp = 0 if h <= -1.65e+61: tmp = (t_2 * (t_3 / math.sqrt(-l))) * t_0 elif h <= -5e-310: tmp = ((t_3 / math.sqrt(-h)) * t_1) * (1.0 + (0.5 * (((D * (M * (h / d))) / ((d / D) * (l / M))) * -0.25))) elif h <= 1.95e-153: tmp = ((t_1 * math.sqrt(d)) * (1.0 + (-0.125 * ((D * (h / (d / M))) / ((d / M) * (l / D)))))) / math.sqrt(h) elif h <= 1.15e+61: tmp = (math.pow((d / h), 0.5) * (math.sqrt(d) / math.sqrt(l))) * (1.0 - math.pow((((math.sqrt(0.5) * (M * (0.5 * D))) / d) * math.sqrt((h / l))), 2.0)) elif h <= 7.6e+150: tmp = (d / (math.sqrt(h) * math.sqrt(l))) * (1.0 + (math.pow((M * (0.5 * (D / d))), 2.0) * ((h / l) * -0.5))) elif h <= 1.85e+264: tmp = t_0 * (t_2 * (1.0 / (math.sqrt(l) / math.sqrt(d)))) else: tmp = (t_2 * t_1) * (1.0 + (0.5 * (math.pow(((M * (D / math.sqrt(l))) * (math.sqrt(h) / d)), 2.0) * -0.25))) 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 = Float64(1.0 + Float64(0.5 * Float64(Float64(Float64(D * M) / Float64(Float64(d * Float64(d / h)) * Float64(l / Float64(D * M)))) * -0.25))) t_1 = sqrt(Float64(d / l)) t_2 = sqrt(Float64(d / h)) t_3 = sqrt(Float64(-d)) tmp = 0.0 if (h <= -1.65e+61) tmp = Float64(Float64(t_2 * Float64(t_3 / sqrt(Float64(-l)))) * t_0); elseif (h <= -5e-310) tmp = Float64(Float64(Float64(t_3 / sqrt(Float64(-h))) * t_1) * Float64(1.0 + Float64(0.5 * Float64(Float64(Float64(D * Float64(M * Float64(h / d))) / Float64(Float64(d / D) * Float64(l / M))) * -0.25)))); elseif (h <= 1.95e-153) tmp = Float64(Float64(Float64(t_1 * sqrt(d)) * Float64(1.0 + Float64(-0.125 * Float64(Float64(D * Float64(h / Float64(d / M))) / Float64(Float64(d / M) * Float64(l / D)))))) / sqrt(h)); elseif (h <= 1.15e+61) tmp = Float64(Float64((Float64(d / h) ^ 0.5) * Float64(sqrt(d) / sqrt(l))) * Float64(1.0 - (Float64(Float64(Float64(sqrt(0.5) * Float64(M * Float64(0.5 * D))) / d) * sqrt(Float64(h / l))) ^ 2.0))); elseif (h <= 7.6e+150) tmp = Float64(Float64(d / Float64(sqrt(h) * sqrt(l))) * Float64(1.0 + Float64((Float64(M * Float64(0.5 * Float64(D / d))) ^ 2.0) * Float64(Float64(h / l) * -0.5)))); elseif (h <= 1.85e+264) tmp = Float64(t_0 * Float64(t_2 * Float64(1.0 / Float64(sqrt(l) / sqrt(d))))); else tmp = Float64(Float64(t_2 * t_1) * Float64(1.0 + Float64(0.5 * Float64((Float64(Float64(M * Float64(D / sqrt(l))) * Float64(sqrt(h) / d)) ^ 2.0) * -0.25)))); 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 = 1.0 + (0.5 * (((D * M) / ((d * (d / h)) * (l / (D * M)))) * -0.25)); t_1 = sqrt((d / l)); t_2 = sqrt((d / h)); t_3 = sqrt(-d); tmp = 0.0; if (h <= -1.65e+61) tmp = (t_2 * (t_3 / sqrt(-l))) * t_0; elseif (h <= -5e-310) tmp = ((t_3 / sqrt(-h)) * t_1) * (1.0 + (0.5 * (((D * (M * (h / d))) / ((d / D) * (l / M))) * -0.25))); elseif (h <= 1.95e-153) tmp = ((t_1 * sqrt(d)) * (1.0 + (-0.125 * ((D * (h / (d / M))) / ((d / M) * (l / D)))))) / sqrt(h); elseif (h <= 1.15e+61) tmp = (((d / h) ^ 0.5) * (sqrt(d) / sqrt(l))) * (1.0 - ((((sqrt(0.5) * (M * (0.5 * D))) / d) * sqrt((h / l))) ^ 2.0)); elseif (h <= 7.6e+150) tmp = (d / (sqrt(h) * sqrt(l))) * (1.0 + (((M * (0.5 * (D / d))) ^ 2.0) * ((h / l) * -0.5))); elseif (h <= 1.85e+264) tmp = t_0 * (t_2 * (1.0 / (sqrt(l) / sqrt(d)))); else tmp = (t_2 * t_1) * (1.0 + (0.5 * ((((M * (D / sqrt(l))) * (sqrt(h) / d)) ^ 2.0) * -0.25))); 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[(1.0 + N[(0.5 * N[(N[(N[(D * M), $MachinePrecision] / N[(N[(d * N[(d / h), $MachinePrecision]), $MachinePrecision] * N[(l / N[(D * M), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * -0.25), $MachinePrecision]), $MachinePrecision]), $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[Sqrt[(-d)], $MachinePrecision]}, If[LessEqual[h, -1.65e+61], N[(N[(t$95$2 * N[(t$95$3 / N[Sqrt[(-l)], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * t$95$0), $MachinePrecision], If[LessEqual[h, -5e-310], N[(N[(N[(t$95$3 / N[Sqrt[(-h)], $MachinePrecision]), $MachinePrecision] * t$95$1), $MachinePrecision] * N[(1.0 + N[(0.5 * N[(N[(N[(D * N[(M * N[(h / d), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(N[(d / D), $MachinePrecision] * N[(l / M), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * -0.25), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[h, 1.95e-153], N[(N[(N[(t$95$1 * N[Sqrt[d], $MachinePrecision]), $MachinePrecision] * N[(1.0 + N[(-0.125 * N[(N[(D * N[(h / N[(d / M), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(N[(d / M), $MachinePrecision] * N[(l / D), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[Sqrt[h], $MachinePrecision]), $MachinePrecision], If[LessEqual[h, 1.15e+61], N[(N[(N[Power[N[(d / h), $MachinePrecision], 0.5], $MachinePrecision] * N[(N[Sqrt[d], $MachinePrecision] / N[Sqrt[l], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(1.0 - N[Power[N[(N[(N[(N[Sqrt[0.5], $MachinePrecision] * N[(M * N[(0.5 * D), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / d), $MachinePrecision] * N[Sqrt[N[(h / l), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[h, 7.6e+150], N[(N[(d / N[(N[Sqrt[h], $MachinePrecision] * N[Sqrt[l], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(1.0 + N[(N[Power[N[(M * N[(0.5 * N[(D / d), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] * N[(N[(h / l), $MachinePrecision] * -0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[h, 1.85e+264], N[(t$95$0 * N[(t$95$2 * N[(1.0 / N[(N[Sqrt[l], $MachinePrecision] / N[Sqrt[d], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(t$95$2 * t$95$1), $MachinePrecision] * N[(1.0 + N[(0.5 * N[(N[Power[N[(N[(M * N[(D / N[Sqrt[l], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[Sqrt[h], $MachinePrecision] / d), $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] * -0.25), $MachinePrecision]), $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 := 1 + 0.5 \cdot \left(\frac{D \cdot M}{\left(d \cdot \frac{d}{h}\right) \cdot \frac{\ell}{D \cdot M}} \cdot -0.25\right)\\
t_1 := \sqrt{\frac{d}{\ell}}\\
t_2 := \sqrt{\frac{d}{h}}\\
t_3 := \sqrt{-d}\\
\mathbf{if}\;h \leq -1.65 \cdot 10^{+61}:\\
\;\;\;\;\left(t_2 \cdot \frac{t_3}{\sqrt{-\ell}}\right) \cdot t_0\\
\mathbf{elif}\;h \leq -5 \cdot 10^{-310}:\\
\;\;\;\;\left(\frac{t_3}{\sqrt{-h}} \cdot t_1\right) \cdot \left(1 + 0.5 \cdot \left(\frac{D \cdot \left(M \cdot \frac{h}{d}\right)}{\frac{d}{D} \cdot \frac{\ell}{M}} \cdot -0.25\right)\right)\\
\mathbf{elif}\;h \leq 1.95 \cdot 10^{-153}:\\
\;\;\;\;\frac{\left(t_1 \cdot \sqrt{d}\right) \cdot \left(1 + -0.125 \cdot \frac{D \cdot \frac{h}{\frac{d}{M}}}{\frac{d}{M} \cdot \frac{\ell}{D}}\right)}{\sqrt{h}}\\
\mathbf{elif}\;h \leq 1.15 \cdot 10^{+61}:\\
\;\;\;\;\left({\left(\frac{d}{h}\right)}^{0.5} \cdot \frac{\sqrt{d}}{\sqrt{\ell}}\right) \cdot \left(1 - {\left(\frac{\sqrt{0.5} \cdot \left(M \cdot \left(0.5 \cdot D\right)\right)}{d} \cdot \sqrt{\frac{h}{\ell}}\right)}^{2}\right)\\
\mathbf{elif}\;h \leq 7.6 \cdot 10^{+150}:\\
\;\;\;\;\frac{d}{\sqrt{h} \cdot \sqrt{\ell}} \cdot \left(1 + {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2} \cdot \left(\frac{h}{\ell} \cdot -0.5\right)\right)\\
\mathbf{elif}\;h \leq 1.85 \cdot 10^{+264}:\\
\;\;\;\;t_0 \cdot \left(t_2 \cdot \frac{1}{\frac{\sqrt{\ell}}{\sqrt{d}}}\right)\\
\mathbf{else}:\\
\;\;\;\;\left(t_2 \cdot t_1\right) \cdot \left(1 + 0.5 \cdot \left({\left(\left(M \cdot \frac{D}{\sqrt{\ell}}\right) \cdot \frac{\sqrt{h}}{d}\right)}^{2} \cdot -0.25\right)\right)\\
\end{array}
Results
if h < -1.6499999999999999e61Initial program 58.4%
Simplified58.3%
[Start]58.4 | \[ \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 [=>]58.4 | \[ \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 [=>]58.4 | \[ \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 [=>]58.4 | \[ \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 [=>]58.4 | \[ \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)
\] |
associate-*l* [=>]58.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
metadata-eval [=>]58.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
times-frac [=>]58.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
Taylor expanded in M around 0 32.8%
Simplified41.9%
[Start]32.8 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
|---|---|
associate-/r* [=>]34.1 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{\ell}}{{d}^{2}}}\right)\right)
\] |
associate-/l/ [=>]32.8 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{{d}^{2} \cdot \ell}}\right)\right)
\] |
associate-*r* [=>]37.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\color{blue}{\left({D}^{2} \cdot {M}^{2}\right) \cdot h}}{{d}^{2} \cdot \ell}\right)\right)
\] |
*-commutative [<=]37.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\left({D}^{2} \cdot {M}^{2}\right) \cdot h}{\color{blue}{\ell \cdot {d}^{2}}}\right)\right)
\] |
times-frac [=>]36.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\left(\frac{{D}^{2} \cdot {M}^{2}}{\ell} \cdot \frac{h}{{d}^{2}}\right)}\right)\right)
\] |
unpow2 [=>]36.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{{D}^{2} \cdot \color{blue}{\left(M \cdot M\right)}}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
associate-*r* [=>]41.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\color{blue}{\left({D}^{2} \cdot M\right) \cdot M}}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
unpow2 [=>]41.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\color{blue}{\left(D \cdot D\right)} \cdot M\right) \cdot M}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
unpow2 [=>]41.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\left(D \cdot D\right) \cdot M\right) \cdot M}{\ell} \cdot \frac{h}{\color{blue}{d \cdot d}}\right)\right)\right)
\] |
associate-/r* [=>]41.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\left(D \cdot D\right) \cdot M\right) \cdot M}{\ell} \cdot \color{blue}{\frac{\frac{h}{d}}{d}}\right)\right)\right)
\] |
Applied egg-rr53.9%
Applied egg-rr63.7%
if -1.6499999999999999e61 < h < -4.999999999999985e-310Initial program 58.7%
Simplified57.9%
[Start]58.7 | \[ \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 [=>]58.7 | \[ \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 [=>]58.7 | \[ \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 [=>]58.7 | \[ \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 [=>]58.7 | \[ \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)
\] |
associate-*l* [=>]58.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
metadata-eval [=>]58.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
times-frac [=>]57.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
Taylor expanded in M around 0 33.4%
Simplified44.5%
[Start]33.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
|---|---|
associate-/r* [=>]36.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{\ell}}{{d}^{2}}}\right)\right)
\] |
associate-/l/ [=>]33.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{{d}^{2} \cdot \ell}}\right)\right)
\] |
associate-*r* [=>]33.1 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\color{blue}{\left({D}^{2} \cdot {M}^{2}\right) \cdot h}}{{d}^{2} \cdot \ell}\right)\right)
\] |
*-commutative [<=]33.1 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\left({D}^{2} \cdot {M}^{2}\right) \cdot h}{\color{blue}{\ell \cdot {d}^{2}}}\right)\right)
\] |
times-frac [=>]35.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\left(\frac{{D}^{2} \cdot {M}^{2}}{\ell} \cdot \frac{h}{{d}^{2}}\right)}\right)\right)
\] |
unpow2 [=>]35.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{{D}^{2} \cdot \color{blue}{\left(M \cdot M\right)}}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
associate-*r* [=>]40.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\color{blue}{\left({D}^{2} \cdot M\right) \cdot M}}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
unpow2 [=>]40.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\color{blue}{\left(D \cdot D\right)} \cdot M\right) \cdot M}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
unpow2 [=>]40.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\left(D \cdot D\right) \cdot M\right) \cdot M}{\ell} \cdot \frac{h}{\color{blue}{d \cdot d}}\right)\right)\right)
\] |
associate-/r* [=>]44.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\left(D \cdot D\right) \cdot M\right) \cdot M}{\ell} \cdot \color{blue}{\frac{\frac{h}{d}}{d}}\right)\right)\right)
\] |
Applied egg-rr49.0%
Simplified57.5%
[Start]49.0 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\left(D \cdot \left(D \cdot M\right)\right) \cdot \left(-h\right)}{d \cdot \left(\frac{\ell}{M} \cdot \left(-d\right)\right)}\right)\right)
\] |
|---|---|
times-frac [=>]53.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\left(\frac{D \cdot \left(D \cdot M\right)}{d} \cdot \frac{-h}{\frac{\ell}{M} \cdot \left(-d\right)}\right)}\right)\right)
\] |
*-commutative [=>]53.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\color{blue}{\left(D \cdot M\right) \cdot D}}{d} \cdot \frac{-h}{\frac{\ell}{M} \cdot \left(-d\right)}\right)\right)\right)
\] |
associate-/l* [=>]55.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\color{blue}{\frac{D \cdot M}{\frac{d}{D}}} \cdot \frac{-h}{\frac{\ell}{M} \cdot \left(-d\right)}\right)\right)\right)
\] |
*-commutative [<=]55.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot M}{\frac{d}{D}} \cdot \frac{-h}{\color{blue}{\left(-d\right) \cdot \frac{\ell}{M}}}\right)\right)\right)
\] |
associate-/r* [=>]57.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot M}{\frac{d}{D}} \cdot \color{blue}{\frac{\frac{-h}{-d}}{\frac{\ell}{M}}}\right)\right)\right)
\] |
neg-mul-1 [=>]57.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot M}{\frac{d}{D}} \cdot \frac{\frac{\color{blue}{-1 \cdot h}}{-d}}{\frac{\ell}{M}}\right)\right)\right)
\] |
neg-mul-1 [=>]57.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot M}{\frac{d}{D}} \cdot \frac{\frac{-1 \cdot h}{\color{blue}{-1 \cdot d}}}{\frac{\ell}{M}}\right)\right)\right)
\] |
times-frac [=>]57.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot M}{\frac{d}{D}} \cdot \frac{\color{blue}{\frac{-1}{-1} \cdot \frac{h}{d}}}{\frac{\ell}{M}}\right)\right)\right)
\] |
metadata-eval [=>]57.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{D \cdot M}{\frac{d}{D}} \cdot \frac{\color{blue}{1} \cdot \frac{h}{d}}{\frac{\ell}{M}}\right)\right)\right)
\] |
Applied egg-rr60.7%
Applied egg-rr73.8%
if -4.999999999999985e-310 < h < 1.9500000000000001e-153Initial program 46.1%
Simplified44.2%
[Start]46.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)
\] |
|---|---|
metadata-eval [=>]46.1 | \[ \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 [=>]46.1 | \[ \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 [=>]46.1 | \[ \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 [=>]46.1 | \[ \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)
\] |
associate-*l* [=>]46.1 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
metadata-eval [=>]46.1 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
times-frac [=>]44.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
Applied egg-rr68.9%
Simplified68.9%
[Start]68.9 | \[ \frac{\sqrt{d} \cdot \left(\sqrt{\frac{d}{\ell}} \cdot \left(1 + \left(-0.5 \cdot \frac{h}{\ell}\right) \cdot {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2}\right)\right)}{\sqrt{h}}
\] |
|---|---|
associate-*r* [=>]68.9 | \[ \frac{\color{blue}{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + \left(-0.5 \cdot \frac{h}{\ell}\right) \cdot {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2}\right)}}{\sqrt{h}}
\] |
*-commutative [=>]68.9 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + \color{blue}{{\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2} \cdot \left(-0.5 \cdot \frac{h}{\ell}\right)}\right)}{\sqrt{h}}
\] |
*-commutative [=>]68.9 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2} \cdot \color{blue}{\left(\frac{h}{\ell} \cdot -0.5\right)}\right)}{\sqrt{h}}
\] |
Taylor expanded in M around 0 41.6%
Simplified57.2%
[Start]41.6 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{\ell \cdot {d}^{2}}\right)}{\sqrt{h}}
\] |
|---|---|
associate-/r* [=>]45.5 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \color{blue}{\frac{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{\ell}}{{d}^{2}}}\right)}{\sqrt{h}}
\] |
*-commutative [<=]45.5 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \frac{\frac{{D}^{2} \cdot \color{blue}{\left(h \cdot {M}^{2}\right)}}{\ell}}{{d}^{2}}\right)}{\sqrt{h}}
\] |
associate-/r* [<=]41.6 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \color{blue}{\frac{{D}^{2} \cdot \left(h \cdot {M}^{2}\right)}{\ell \cdot {d}^{2}}}\right)}{\sqrt{h}}
\] |
times-frac [=>]44.7 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \color{blue}{\left(\frac{{D}^{2}}{\ell} \cdot \frac{h \cdot {M}^{2}}{{d}^{2}}\right)}\right)}{\sqrt{h}}
\] |
unpow2 [=>]44.7 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \left(\frac{\color{blue}{D \cdot D}}{\ell} \cdot \frac{h \cdot {M}^{2}}{{d}^{2}}\right)\right)}{\sqrt{h}}
\] |
associate-/l* [=>]49.9 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \left(\color{blue}{\frac{D}{\frac{\ell}{D}}} \cdot \frac{h \cdot {M}^{2}}{{d}^{2}}\right)\right)}{\sqrt{h}}
\] |
unpow2 [=>]49.9 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \left(\frac{D}{\frac{\ell}{D}} \cdot \frac{h \cdot {M}^{2}}{\color{blue}{d \cdot d}}\right)\right)}{\sqrt{h}}
\] |
times-frac [=>]57.2 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \left(\frac{D}{\frac{\ell}{D}} \cdot \color{blue}{\left(\frac{h}{d} \cdot \frac{{M}^{2}}{d}\right)}\right)\right)}{\sqrt{h}}
\] |
unpow2 [=>]57.2 | \[ \frac{\left(\sqrt{d} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 + -0.125 \cdot \left(\frac{D}{\frac{\ell}{D}} \cdot \left(\frac{h}{d} \cdot \frac{\color{blue}{M \cdot M}}{d}\right)\right)\right)}{\sqrt{h}}
\] |
Applied egg-rr66.5%
Applied egg-rr76.2%
if 1.9500000000000001e-153 < h < 1.15e61Initial program 67.5%
Applied egg-rr69.8%
Simplified70.7%
[Start]69.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(\left(\left(M \cdot \left(D \cdot \frac{0.5}{d}\right)\right) \cdot \sqrt{0.5}\right) \cdot \sqrt{\frac{h}{\ell}}\right)}^{2}\right)
\] |
|---|---|
*-commutative [=>]69.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(\color{blue}{\left(\sqrt{0.5} \cdot \left(M \cdot \left(D \cdot \frac{0.5}{d}\right)\right)\right)} \cdot \sqrt{\frac{h}{\ell}}\right)}^{2}\right)
\] |
associate-*r/ [=>]69.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(\left(\sqrt{0.5} \cdot \left(M \cdot \color{blue}{\frac{D \cdot 0.5}{d}}\right)\right) \cdot \sqrt{\frac{h}{\ell}}\right)}^{2}\right)
\] |
associate-*r/ [=>]70.7 | \[ \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(\left(\sqrt{0.5} \cdot \color{blue}{\frac{M \cdot \left(D \cdot 0.5\right)}{d}}\right) \cdot \sqrt{\frac{h}{\ell}}\right)}^{2}\right)
\] |
associate-*r/ [=>]70.7 | \[ \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(\color{blue}{\frac{\sqrt{0.5} \cdot \left(M \cdot \left(D \cdot 0.5\right)\right)}{d}} \cdot \sqrt{\frac{h}{\ell}}\right)}^{2}\right)
\] |
Applied egg-rr82.2%
if 1.15e61 < h < 7.59999999999999978e150Initial program 65.3%
Simplified65.5%
[Start]65.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 [=>]65.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 [=>]65.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)
\] |
metadata-eval [=>]65.3 | \[ \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 [=>]65.3 | \[ \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)
\] |
associate-*l* [=>]65.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
metadata-eval [=>]65.3 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
times-frac [=>]65.5 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
Applied egg-rr74.6%
Simplified74.6%
[Start]74.6 | \[ \frac{d}{\sqrt{h} \cdot \sqrt{\ell}} + \frac{d}{\sqrt{h} \cdot \sqrt{\ell}} \cdot \left(\left(-0.5 \cdot \frac{h}{\ell}\right) \cdot {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2}\right)
\] |
|---|---|
*-lft-identity [<=]74.6 | \[ \color{blue}{1 \cdot \frac{d}{\sqrt{h} \cdot \sqrt{\ell}}} + \frac{d}{\sqrt{h} \cdot \sqrt{\ell}} \cdot \left(\left(-0.5 \cdot \frac{h}{\ell}\right) \cdot {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2}\right)
\] |
*-commutative [<=]74.6 | \[ 1 \cdot \frac{d}{\sqrt{h} \cdot \sqrt{\ell}} + \color{blue}{\left(\left(-0.5 \cdot \frac{h}{\ell}\right) \cdot {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2}\right) \cdot \frac{d}{\sqrt{h} \cdot \sqrt{\ell}}}
\] |
distribute-rgt-in [<=]74.6 | \[ \color{blue}{\frac{d}{\sqrt{h} \cdot \sqrt{\ell}} \cdot \left(1 + \left(-0.5 \cdot \frac{h}{\ell}\right) \cdot {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2}\right)}
\] |
*-commutative [=>]74.6 | \[ \frac{d}{\color{blue}{\sqrt{\ell} \cdot \sqrt{h}}} \cdot \left(1 + \left(-0.5 \cdot \frac{h}{\ell}\right) \cdot {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2}\right)
\] |
*-commutative [=>]74.6 | \[ \frac{d}{\sqrt{\ell} \cdot \sqrt{h}} \cdot \left(1 + \color{blue}{{\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2} \cdot \left(-0.5 \cdot \frac{h}{\ell}\right)}\right)
\] |
*-commutative [=>]74.6 | \[ \frac{d}{\sqrt{\ell} \cdot \sqrt{h}} \cdot \left(1 + {\left(M \cdot \left(0.5 \cdot \frac{D}{d}\right)\right)}^{2} \cdot \color{blue}{\left(\frac{h}{\ell} \cdot -0.5\right)}\right)
\] |
if 7.59999999999999978e150 < h < 1.85e264Initial program 55.2%
Simplified54.8%
[Start]55.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 [=>]55.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 [=>]55.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 [=>]55.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 [=>]55.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)
\] |
associate-*l* [=>]55.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
metadata-eval [=>]55.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
times-frac [=>]54.8 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
Taylor expanded in M around 0 31.9%
Simplified38.8%
[Start]31.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
|---|---|
associate-/r* [=>]32.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{\ell}}{{d}^{2}}}\right)\right)
\] |
associate-/l/ [=>]31.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{{d}^{2} \cdot \ell}}\right)\right)
\] |
associate-*r* [=>]36.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\color{blue}{\left({D}^{2} \cdot {M}^{2}\right) \cdot h}}{{d}^{2} \cdot \ell}\right)\right)
\] |
*-commutative [<=]36.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\left({D}^{2} \cdot {M}^{2}\right) \cdot h}{\color{blue}{\ell \cdot {d}^{2}}}\right)\right)
\] |
times-frac [=>]34.8 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\left(\frac{{D}^{2} \cdot {M}^{2}}{\ell} \cdot \frac{h}{{d}^{2}}\right)}\right)\right)
\] |
unpow2 [=>]34.8 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{{D}^{2} \cdot \color{blue}{\left(M \cdot M\right)}}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
associate-*r* [=>]38.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\color{blue}{\left({D}^{2} \cdot M\right) \cdot M}}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
unpow2 [=>]38.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\color{blue}{\left(D \cdot D\right)} \cdot M\right) \cdot M}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
unpow2 [=>]38.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\left(D \cdot D\right) \cdot M\right) \cdot M}{\ell} \cdot \frac{h}{\color{blue}{d \cdot d}}\right)\right)\right)
\] |
associate-/r* [=>]38.8 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\left(D \cdot D\right) \cdot M\right) \cdot M}{\ell} \cdot \color{blue}{\frac{\frac{h}{d}}{d}}\right)\right)\right)
\] |
Applied egg-rr50.6%
Applied egg-rr61.0%
if 1.85e264 < h Initial program 40.7%
Simplified41.8%
[Start]40.7 | \[ \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 [=>]40.7 | \[ \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 [=>]40.7 | \[ \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 [=>]40.7 | \[ \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 [=>]40.7 | \[ \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)
\] |
associate-*l* [=>]40.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
metadata-eval [=>]40.7 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
times-frac [=>]41.8 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
Taylor expanded in M around 0 28.1%
Simplified36.0%
[Start]28.1 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \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)
\] |
|---|---|
associate-/r* [=>]28.6 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{\ell}}{{d}^{2}}}\right)\right)
\] |
associate-/l/ [=>]28.1 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\frac{{D}^{2} \cdot \left({M}^{2} \cdot h\right)}{{d}^{2} \cdot \ell}}\right)\right)
\] |
associate-*r* [=>]31.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\color{blue}{\left({D}^{2} \cdot {M}^{2}\right) \cdot h}}{{d}^{2} \cdot \ell}\right)\right)
\] |
*-commutative [<=]31.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \frac{\left({D}^{2} \cdot {M}^{2}\right) \cdot h}{\color{blue}{\ell \cdot {d}^{2}}}\right)\right)
\] |
times-frac [=>]31.0 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \color{blue}{\left(\frac{{D}^{2} \cdot {M}^{2}}{\ell} \cdot \frac{h}{{d}^{2}}\right)}\right)\right)
\] |
unpow2 [=>]31.0 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{{D}^{2} \cdot \color{blue}{\left(M \cdot M\right)}}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
associate-*r* [=>]34.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\color{blue}{\left({D}^{2} \cdot M\right) \cdot M}}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
unpow2 [=>]34.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\color{blue}{\left(D \cdot D\right)} \cdot M\right) \cdot M}{\ell} \cdot \frac{h}{{d}^{2}}\right)\right)\right)
\] |
unpow2 [=>]34.2 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\left(D \cdot D\right) \cdot M\right) \cdot M}{\ell} \cdot \frac{h}{\color{blue}{d \cdot d}}\right)\right)\right)
\] |
associate-/r* [=>]36.0 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot \left(\frac{\left(\left(D \cdot D\right) \cdot M\right) \cdot M}{\ell} \cdot \color{blue}{\frac{\frac{h}{d}}{d}}\right)\right)\right)
\] |
Applied egg-rr51.4%
Simplified52.9%
[Start]51.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot {\left(\frac{D \cdot M}{\sqrt{\ell}} \cdot \frac{\sqrt{h}}{d}\right)}^{2}\right)\right)
\] |
|---|---|
associate-/l* [=>]52.4 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot {\left(\color{blue}{\frac{D}{\frac{\sqrt{\ell}}{M}}} \cdot \frac{\sqrt{h}}{d}\right)}^{2}\right)\right)
\] |
associate-/r/ [=>]52.9 | \[ \left(\sqrt{\frac{d}{h}} \cdot \sqrt{\frac{d}{\ell}}\right) \cdot \left(1 - 0.5 \cdot \left(0.25 \cdot {\left(\color{blue}{\left(\frac{D}{\sqrt{\ell}} \cdot M\right)} \cdot \frac{\sqrt{h}}{d}\right)}^{2}\right)\right)
\] |
Final simplification71.8%
| Alternative 1 | |
|---|---|
| Accuracy | 71.9% |
| Cost | 34064 |
| Alternative 2 | |
|---|---|
| Accuracy | 67.8% |
| Cost | 22116 |
| Alternative 3 | |
|---|---|
| Accuracy | 69.6% |
| Cost | 21844 |
| Alternative 4 | |
|---|---|
| Accuracy | 69.0% |
| Cost | 21844 |
| Alternative 5 | |
|---|---|
| Accuracy | 66.6% |
| Cost | 21532 |
| Alternative 6 | |
|---|---|
| Accuracy | 72.5% |
| Cost | 21448 |
| Alternative 7 | |
|---|---|
| Accuracy | 64.2% |
| Cost | 15580 |
| Alternative 8 | |
|---|---|
| Accuracy | 65.7% |
| Cost | 15448 |
| Alternative 9 | |
|---|---|
| Accuracy | 64.9% |
| Cost | 15448 |
| Alternative 10 | |
|---|---|
| Accuracy | 64.7% |
| Cost | 15448 |
| Alternative 11 | |
|---|---|
| Accuracy | 65.8% |
| Cost | 15184 |
| Alternative 12 | |
|---|---|
| Accuracy | 63.6% |
| Cost | 13580 |
| Alternative 13 | |
|---|---|
| Accuracy | 62.4% |
| Cost | 13316 |
| Alternative 14 | |
|---|---|
| Accuracy | 62.5% |
| Cost | 13252 |
| Alternative 15 | |
|---|---|
| Accuracy | 46.7% |
| Cost | 7508 |
| Alternative 16 | |
|---|---|
| Accuracy | 46.7% |
| Cost | 7508 |
| Alternative 17 | |
|---|---|
| Accuracy | 46.6% |
| Cost | 7508 |
| Alternative 18 | |
|---|---|
| Accuracy | 46.7% |
| Cost | 7508 |
| Alternative 19 | |
|---|---|
| Accuracy | 54.5% |
| Cost | 7376 |
| Alternative 20 | |
|---|---|
| Accuracy | 46.9% |
| Cost | 7244 |
| Alternative 21 | |
|---|---|
| Accuracy | 31.5% |
| Cost | 6784 |
| Alternative 22 | |
|---|---|
| Accuracy | 31.6% |
| Cost | 6720 |
herbie shell --seed 2023125
(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)))))