I am trying to find the angle between two lines in Maple, but I keep getting this error.
`restart:
with(Student[MultivariateCalculus]):
a:=Line([0,0],[0,2]);
a := << Line 1 >>
b:=Line([0,0],[2,0]);
b := << Line 2 >>
Angle(x,y);
Error, invalid input: Student:-MultivariateCalculus:-Angle expects its 1st
argument, x, to be of type {Student:-MultivariateCalculus:-Line, Student:-
MultivariateCalculus:-Plane, Vector}, but received x`
I know that the answer to this angle is 90 degrees, I just gave a simple example so I can understand it.