| Alternative 1 | |
|---|---|
| Accuracy | 59.7% |
| Cost | 19840 |
\[{a}^{2} + 3.08641975308642 \cdot 10^{-5} \cdot {\left(angle \cdot \left(b \cdot \pi\right)\right)}^{2}
\]
(FPCore (a b angle) :precision binary64 (+ (pow (* a (cos (* PI (/ angle 180.0)))) 2.0) (pow (* b (sin (* PI (/ angle 180.0)))) 2.0)))
(FPCore (a b angle) :precision binary64 (+ (pow a 2.0) (pow (* b (sin (* angle (/ PI 180.0)))) 2.0)))
double code(double a, double b, double angle) {
return pow((a * cos((((double) M_PI) * (angle / 180.0)))), 2.0) + pow((b * sin((((double) M_PI) * (angle / 180.0)))), 2.0);
}
double code(double a, double b, double angle) {
return pow(a, 2.0) + pow((b * sin((angle * (((double) M_PI) / 180.0)))), 2.0);
}
public static double code(double a, double b, double angle) {
return Math.pow((a * Math.cos((Math.PI * (angle / 180.0)))), 2.0) + Math.pow((b * Math.sin((Math.PI * (angle / 180.0)))), 2.0);
}
public static double code(double a, double b, double angle) {
return Math.pow(a, 2.0) + Math.pow((b * Math.sin((angle * (Math.PI / 180.0)))), 2.0);
}
def code(a, b, angle): return math.pow((a * math.cos((math.pi * (angle / 180.0)))), 2.0) + math.pow((b * math.sin((math.pi * (angle / 180.0)))), 2.0)
def code(a, b, angle): return math.pow(a, 2.0) + math.pow((b * math.sin((angle * (math.pi / 180.0)))), 2.0)
function code(a, b, angle) return Float64((Float64(a * cos(Float64(pi * Float64(angle / 180.0)))) ^ 2.0) + (Float64(b * sin(Float64(pi * Float64(angle / 180.0)))) ^ 2.0)) end
function code(a, b, angle) return Float64((a ^ 2.0) + (Float64(b * sin(Float64(angle * Float64(pi / 180.0)))) ^ 2.0)) end
function tmp = code(a, b, angle) tmp = ((a * cos((pi * (angle / 180.0)))) ^ 2.0) + ((b * sin((pi * (angle / 180.0)))) ^ 2.0); end
function tmp = code(a, b, angle) tmp = (a ^ 2.0) + ((b * sin((angle * (pi / 180.0)))) ^ 2.0); end
code[a_, b_, angle_] := N[(N[Power[N[(a * N[Cos[N[(Pi * N[(angle / 180.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision] + N[Power[N[(b * N[Sin[N[(Pi * N[(angle / 180.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]
code[a_, b_, angle_] := N[(N[Power[a, 2.0], $MachinePrecision] + N[Power[N[(b * N[Sin[N[(angle * N[(Pi / 180.0), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]
{\left(a \cdot \cos \left(\pi \cdot \frac{angle}{180}\right)\right)}^{2} + {\left(b \cdot \sin \left(\pi \cdot \frac{angle}{180}\right)\right)}^{2}
{a}^{2} + {\left(b \cdot \sin \left(angle \cdot \frac{\pi}{180}\right)\right)}^{2}
Results
Initial program 68.6%
Taylor expanded in angle around 0 68.5%
Taylor expanded in angle around inf 68.6%
Simplified68.6%
[Start]68.6 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \left(0.005555555555555556 \cdot \left(angle \cdot \pi\right)\right)\right)}^{2}
\] |
|---|---|
metadata-eval [<=]68.6 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \left(\color{blue}{\frac{-1}{-180}} \cdot \left(angle \cdot \pi\right)\right)\right)}^{2}
\] |
*-commutative [<=]68.6 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \left(\frac{-1}{-180} \cdot \color{blue}{\left(\pi \cdot angle\right)}\right)\right)}^{2}
\] |
associate-/r/ [<=]68.5 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \color{blue}{\left(\frac{-1}{\frac{-180}{\pi \cdot angle}}\right)}\right)}^{2}
\] |
associate-/l* [<=]68.5 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \color{blue}{\left(\frac{-1 \cdot \left(\pi \cdot angle\right)}{-180}\right)}\right)}^{2}
\] |
*-commutative [=>]68.5 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \left(\frac{\color{blue}{\left(\pi \cdot angle\right) \cdot -1}}{-180}\right)\right)}^{2}
\] |
associate-/l* [=>]68.5 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \color{blue}{\left(\frac{\pi \cdot angle}{\frac{-180}{-1}}\right)}\right)}^{2}
\] |
metadata-eval [=>]68.5 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \left(\frac{\pi \cdot angle}{\color{blue}{180}}\right)\right)}^{2}
\] |
*-commutative [=>]68.5 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \left(\frac{\color{blue}{angle \cdot \pi}}{180}\right)\right)}^{2}
\] |
associate-*r/ [<=]68.6 | \[ {\left(a \cdot 1\right)}^{2} + {\left(b \cdot \sin \color{blue}{\left(angle \cdot \frac{\pi}{180}\right)}\right)}^{2}
\] |
Final simplification68.6%
| Alternative 1 | |
|---|---|
| Accuracy | 59.7% |
| Cost | 19840 |
| Alternative 2 | |
|---|---|
| Accuracy | 59.8% |
| Cost | 19840 |
herbie shell --seed 2023147
(FPCore (a b angle)
:name "ab-angle->ABCF C"
:precision binary64
(+ (pow (* a (cos (* PI (/ angle 180.0)))) 2.0) (pow (* b (sin (* PI (/ angle 180.0)))) 2.0)))