Vector Cross Product
Vector cross product is also called vector product because the result of the vector multiplication is a vector. It can only be performed for two vectors of the same size.
Geometrically, when you have two vectors on a plane, the cross product will produce another vector perpendicular to the plane span by the two input vectors.
The direction of the cross product vector is following the direction of the thumb finger in your right hand when the four other fingers indicate the angle from the first vector to the second vector, as shown in the following figures.
Computation of cross product
For 1 or two dimensional vector, the cross product produces zero vectors because they do not make a plane yet. Starting from 3 dimensions, the cross product can be computed algebraically using simple arrangement and a simple rule below
The arrangement to compute vector cross product
1. Arrange the vector as row vector with the first input vector in second position and the second input vector in the third position
2. Put notation of vector element in the first position
3. Repeat the arrangement on the right
Simple rule to compute cross product
After the arrangement above, multiply the elements of the vectors in diagonal direction and then minus with the product of elements in counter diagonal direction
Now we put them together
Unit vector
represent the first, second and third position of vector elements. Thus, here is the final result
Example
The interactive program of cross product below shows the cross product of two vectors of the same dimension. The program will also show you the internal computation so that you can check your own manual computation. If you click "Random Example" button, the program will generate random input vectors in the right format.
In the applications, cross product is useful for constructing coordinate system in 3-dimensional space.
Properties
Some important properties of vector cross product are
- Vector cross product is a not commutative operation. If you reverse the order you will get the same magnitude but opposite direction
- Vector cross product is a distributive operation. You can distribute (and group) the vectors with respect to addition or subtraction such that and
- Vector cross product is an associative operation with respect to scalar multiple of vector. You can exchange the order of computation (operation inside parentheses are to be computed first) does not change the result .
- Vector cross product to itself always produces zero vector . Cross product with a zero vector also produces zero vector .
-
The magnitude of vector cross product is equal to the product of their norms and sine angle between the two vectors,
. This magnitude is equal to the area of parallelogram bounded by the input vectors.
- Cross product of the same standard unit vector is zero
- Cross product of the perpendicular standard unit vector form a cycle ; ; ; ; ; ;
- Relationship of norm of cross product and dot product is .
See also
:
triple dot product
,
triple cross product
,
scalar triple product
,
inner product
<
Next
|
Previous
|
Index
>
Rate this tutorial or give your comments about this tutorial