SageMath is a free open-source mathematics software system. You can use a SageMath cell online by going here.
v=vector([2,3]) --- Define the vector .v.norm() --- Magnitude of .v.normalized() --- Unit vector with the direction of . Same as .v=vector([2,3]); u=vector([-5,4]); 3*v-2*u --- Compute the vector .plot(v,color="red") --- Plot the vector in red.a=plot(v,color="red"); b=plot(u,color="blue"); show(a+b) --- Plot and .