\[ \begin{array}{c}[a1, a2] = \mathsf{sort}([a1, a2])\\ \end{array} \]
\[\frac{\cos th}{\sqrt{2}} \cdot \left(a1 \cdot a1\right) + \frac{\cos th}{\sqrt{2}} \cdot \left(a2 \cdot a2\right)
\]
↓
\[\cos th \cdot \left(\frac{a2 \cdot a2}{\sqrt{2}} + a1 \cdot \left(a1 \cdot {2}^{-0.5}\right)\right)
\]
(FPCore (a1 a2 th)
:precision binary64
(+
(* (/ (cos th) (sqrt 2.0)) (* a1 a1))
(* (/ (cos th) (sqrt 2.0)) (* a2 a2))))
↓
(FPCore (a1 a2 th)
:precision binary64
(* (cos th) (+ (/ (* a2 a2) (sqrt 2.0)) (* a1 (* a1 (pow 2.0 -0.5))))))
double code(double a1, double a2, double th) {
return ((cos(th) / sqrt(2.0)) * (a1 * a1)) + ((cos(th) / sqrt(2.0)) * (a2 * a2));
}
↓
double code(double a1, double a2, double th) {
return cos(th) * (((a2 * a2) / sqrt(2.0)) + (a1 * (a1 * pow(2.0, -0.5))));
}
real(8) function code(a1, a2, th)
real(8), intent (in) :: a1
real(8), intent (in) :: a2
real(8), intent (in) :: th
code = ((cos(th) / sqrt(2.0d0)) * (a1 * a1)) + ((cos(th) / sqrt(2.0d0)) * (a2 * a2))
end function
↓
real(8) function code(a1, a2, th)
real(8), intent (in) :: a1
real(8), intent (in) :: a2
real(8), intent (in) :: th
code = cos(th) * (((a2 * a2) / sqrt(2.0d0)) + (a1 * (a1 * (2.0d0 ** (-0.5d0)))))
end function
public static double code(double a1, double a2, double th) {
return ((Math.cos(th) / Math.sqrt(2.0)) * (a1 * a1)) + ((Math.cos(th) / Math.sqrt(2.0)) * (a2 * a2));
}
↓
public static double code(double a1, double a2, double th) {
return Math.cos(th) * (((a2 * a2) / Math.sqrt(2.0)) + (a1 * (a1 * Math.pow(2.0, -0.5))));
}
def code(a1, a2, th):
return ((math.cos(th) / math.sqrt(2.0)) * (a1 * a1)) + ((math.cos(th) / math.sqrt(2.0)) * (a2 * a2))
↓
def code(a1, a2, th):
return math.cos(th) * (((a2 * a2) / math.sqrt(2.0)) + (a1 * (a1 * math.pow(2.0, -0.5))))
function code(a1, a2, th)
return Float64(Float64(Float64(cos(th) / sqrt(2.0)) * Float64(a1 * a1)) + Float64(Float64(cos(th) / sqrt(2.0)) * Float64(a2 * a2)))
end
↓
function code(a1, a2, th)
return Float64(cos(th) * Float64(Float64(Float64(a2 * a2) / sqrt(2.0)) + Float64(a1 * Float64(a1 * (2.0 ^ -0.5)))))
end
function tmp = code(a1, a2, th)
tmp = ((cos(th) / sqrt(2.0)) * (a1 * a1)) + ((cos(th) / sqrt(2.0)) * (a2 * a2));
end
↓
function tmp = code(a1, a2, th)
tmp = cos(th) * (((a2 * a2) / sqrt(2.0)) + (a1 * (a1 * (2.0 ^ -0.5))));
end
code[a1_, a2_, th_] := N[(N[(N[(N[Cos[th], $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision] * N[(a1 * a1), $MachinePrecision]), $MachinePrecision] + N[(N[(N[Cos[th], $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision] * N[(a2 * a2), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[a1_, a2_, th_] := N[(N[Cos[th], $MachinePrecision] * N[(N[(N[(a2 * a2), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision] + N[(a1 * N[(a1 * N[Power[2.0, -0.5], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\frac{\cos th}{\sqrt{2}} \cdot \left(a1 \cdot a1\right) + \frac{\cos th}{\sqrt{2}} \cdot \left(a2 \cdot a2\right)
↓
\cos th \cdot \left(\frac{a2 \cdot a2}{\sqrt{2}} + a1 \cdot \left(a1 \cdot {2}^{-0.5}\right)\right)
Alternatives
| Alternative 1 |
|---|
| Accuracy | 77.5% |
|---|
| Cost | 13513 |
|---|
\[\begin{array}{l}
\mathbf{if}\;th \leq -0.00019 \lor \neg \left(th \leq 0.0009\right):\\
\;\;\;\;a1 \cdot \frac{a1}{\frac{\sqrt{2}}{\cos th}}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{0.5} \cdot \left(a2 \cdot a2 + a1 \cdot a1\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 77.5% |
|---|
| Cost | 13512 |
|---|
\[\begin{array}{l}
\mathbf{if}\;th \leq -0.000112:\\
\;\;\;\;\cos th \cdot \left(\sqrt{0.5} \cdot \left(a1 \cdot a1\right)\right)\\
\mathbf{elif}\;th \leq 0.00145:\\
\;\;\;\;\sqrt{0.5} \cdot \left(a2 \cdot a2 + a1 \cdot a1\right)\\
\mathbf{else}:\\
\;\;\;\;a1 \cdot \frac{a1}{\frac{\sqrt{2}}{\cos th}}\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 99.2% |
|---|
| Cost | 13504 |
|---|
\[\left(\cos th \cdot \sqrt{0.5}\right) \cdot \left(a2 \cdot a2 + a1 \cdot a1\right)
\]
| Alternative 4 |
|---|
| Accuracy | 87.4% |
|---|
| Cost | 13444 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 2.7 \cdot 10^{-156}:\\
\;\;\;\;a1 \cdot \left({2}^{-0.5} \cdot \left(\cos th \cdot a1\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{\cos th \cdot \left(a2 \cdot a2\right)}{\sqrt{2}}\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 87.4% |
|---|
| Cost | 13380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 2.7 \cdot 10^{-156}:\\
\;\;\;\;a1 \cdot \frac{a1}{\frac{\sqrt{2}}{\cos th}}\\
\mathbf{else}:\\
\;\;\;\;\cos th \cdot \frac{a2}{\frac{\sqrt{2}}{a2}}\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 87.3% |
|---|
| Cost | 13380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 2.7 \cdot 10^{-156}:\\
\;\;\;\;a1 \cdot \frac{a1}{\frac{\sqrt{2}}{\cos th}}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{0.5} \cdot \left(\cos th \cdot \left(a2 \cdot a2\right)\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 87.3% |
|---|
| Cost | 13380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 2.7 \cdot 10^{-156}:\\
\;\;\;\;a1 \cdot \frac{a1}{\frac{\sqrt{2}}{\cos th}}\\
\mathbf{else}:\\
\;\;\;\;\cos th \cdot \frac{a2 \cdot a2}{\sqrt{2}}\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 87.4% |
|---|
| Cost | 13380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 2.7 \cdot 10^{-156}:\\
\;\;\;\;a1 \cdot \frac{a1}{\frac{\sqrt{2}}{\cos th}}\\
\mathbf{else}:\\
\;\;\;\;\frac{a2}{\frac{\sqrt{2}}{\cos th \cdot a2}}\\
\end{array}
\]
| Alternative 9 |
|---|
| Accuracy | 87.3% |
|---|
| Cost | 13380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 2.7 \cdot 10^{-156}:\\
\;\;\;\;a1 \cdot \frac{a1}{\frac{\sqrt{2}}{\cos th}}\\
\mathbf{else}:\\
\;\;\;\;\frac{\cos th \cdot \left(a2 \cdot a2\right)}{\sqrt{2}}\\
\end{array}
\]
| Alternative 10 |
|---|
| Accuracy | 60.0% |
|---|
| Cost | 6976 |
|---|
\[\sqrt{0.5} \cdot \left(a2 \cdot a2 + a1 \cdot a1\right)
\]
| Alternative 11 |
|---|
| Accuracy | 53.7% |
|---|
| Cost | 6916 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 8.8 \cdot 10^{-116}:\\
\;\;\;\;a1 \cdot \left(a1 \cdot {2}^{-0.5}\right)\\
\mathbf{else}:\\
\;\;\;\;\left(a2 \cdot a2\right) \cdot \sqrt{0.5}\\
\end{array}
\]
| Alternative 12 |
|---|
| Accuracy | 53.7% |
|---|
| Cost | 6852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 8.2 \cdot 10^{-116}:\\
\;\;\;\;\sqrt{0.5} \cdot \left(a1 \cdot a1\right)\\
\mathbf{else}:\\
\;\;\;\;\left(a2 \cdot a2\right) \cdot \sqrt{0.5}\\
\end{array}
\]
| Alternative 13 |
|---|
| Accuracy | 53.7% |
|---|
| Cost | 6852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 9.2 \cdot 10^{-116}:\\
\;\;\;\;a1 \cdot \frac{a1}{\sqrt{2}}\\
\mathbf{else}:\\
\;\;\;\;\left(a2 \cdot a2\right) \cdot \sqrt{0.5}\\
\end{array}
\]
| Alternative 14 |
|---|
| Accuracy | 53.8% |
|---|
| Cost | 6852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;a2 \leq 9.5 \cdot 10^{-116}:\\
\;\;\;\;\frac{a1}{\frac{\sqrt{2}}{a1}}\\
\mathbf{else}:\\
\;\;\;\;\left(a2 \cdot a2\right) \cdot \sqrt{0.5}\\
\end{array}
\]
| Alternative 15 |
|---|
| Accuracy | 37.1% |
|---|
| Cost | 6720 |
|---|
\[\sqrt{0.5} \cdot \left(a1 \cdot a1\right)
\]
| Alternative 16 |
|---|
| Accuracy | 13.5% |
|---|
| Cost | 64 |
|---|
\[0
\]