Cross product

From TCS Wiki
Jump to navigation Jump to search

The cross product is a mathematical operation which can be done between two vectors. After performing the cross product, a new vector is formed. The cross product of two vectors is always perpendicular to both of the vectors which were "crossed". This means that the cross product must always be used in 3-Dimensional space.

Importance of the cross product

Being a vector operation, the cross product is extremely important in all sorts of sciences (particularly physics), engineering, and mathematics. One important example of the cross product is in torque or moment.

How to perform the cross product

Like any mathematical operation, the cross product can be done in a straightforward way.

Two dimensions

If
[math]\displaystyle{ \vec{a} = \langle a_1,a_2 \rangle }[/math]
and
[math]\displaystyle{ \vec{b} = \langle b_1,b_2 \rangle }[/math]
then
[math]\displaystyle{ \vec{a} \times \vec{b} = (a_1b_2-a_2b_1)\hat{k} }[/math]

or

[math]\displaystyle{ \vec{a} \times \vec{b} = \vec{c} }[/math]
and
[math]\displaystyle{ \vec{c} = \langle 0,0,a_1b_2-a_2b_1 \rangle = (a_1b_2-a_2b_1)\hat{k} }[/math]

[math]\displaystyle{ \hat{k} }[/math] is just a symbol which says that our new vector is pointing up (in the z-direction). If you "cross" two vectors which are both in the x-y plane, the product will always be perpendicular to both vectors, and if both vectors are in the x-y plane, the only way for it to be perpendicular to both is to be in the z direction. If the value of [math]\displaystyle{ a_1b_2-a_2b_1 }[/math] is positive, then it points OUT of the page; if its value is negative, then it points INTO the page.

Three dimensions

If
[math]\displaystyle{ \vec{a} = \langle a_1, a_2, a_3 \rangle }[/math]
and
[math]\displaystyle{ \vec{b} = \langle b_1, b_2, b_3 \rangle }[/math]
then
[math]\displaystyle{ \vec{a} \times \vec{b} = \langle a_2 b_3 - a_3 b_2, a_3 b_1 - a_1 b_3, a_1 b_2 - a_2 b_1 \rangle }[/math]

Basic properties of the cross product

[math]\displaystyle{ \vec{a} \times \vec{b} = -\vec{b} \times \vec{a} }[/math]

[math]\displaystyle{ \vec{a} \times (\vec{b} + \vec{c}) = \vec{a} \times \vec{b} + \vec{a} \times \vec{c} }[/math]

[math]\displaystyle{ c(\vec{a} \times \vec{b}) = (c\vec{a})\times\vec{b} = \vec{a}\times(c\vec{b}) }[/math]