Title says it all. This is the assignment I'm trying to do. http://math.rutgers.edu/~shtelen/Teaching/Fall-2013/L1_instr.pdf Data I need to plot http://math.rutgers.edu/~shtelen/Teaching/Fall-2013/s251-TF_F13.html
Which package do I use Need maple to plot a lot of vectors and get difference and cross product
please help

with(LinearAlgebra);is the package needed for the Cross Product to work.CrossProduct(V1,V2);computes the cross product of the vectors $V1$ and $V2$. (Alternatively,V1 &x V2;also will give you the same result.)Vectors can be defined in Maple using
<>. For example, this is a vector:<1,2,3>;The difference can be calculated normally, such as:
vec1:=<1,2,3>; vec2:=<2,3,4>; vec1-vec2;