Skip to content

Vectors

Different from scalars, vectors are arrows with magnitude. The direction that pointed by the arrow is called head.

Since we are familiar with sum and dot product of vectors, we skip them here.

Cross Product

For vectors u=<u1,u2,u3> and v=<v1,v2,v3>, we have u×v=<u2v3u3v2,u3v1u1v3,u1v2u2v1>, of course that is also a vector.

It is difficult to remember. But from the determinants of matrices, we can easily derive the cross product.

We write u and v in the form of matrix, u×v=[ijku1u2u3v1v2v3], and the output |u2u3v2v3|i|u1u3v1v3|j+|u1u2v1v2|k, the determinant of the matrix, is actually the vector <u2v3u3v2,u3v1u1v3,u1v2u2v1> while i,j,k are unit vectors in x,y,z directions.

There are some important properties of the cross product of vectors.

  • The cross product is a vector perpendicular to both u and v.
    • u and v in three-space are parallel if and only is u×v=0.
  • The magnitude of the cross product is |u||v|sinθ, where sinθ is the angle between u and v.
  • The magnitude of the cross product is the area of the parallelogram with two vectors.
  • The volum of the parallelepiped determined by three vectors a,b,c in three-space is |a(b×c)|.

And remember that the order of the vectors in their product can not be changed without adding negative sign.