What is a cross product?

The cross product of two vectorsA vector is a quantity that has a magnitude and a direction. is a mathematical operation that results in a vector, perpendicularTwo vectors are perpendicular to each other if they intersect at 90 degrees, simply the angle between them is 90. to the two original vectors we take the cross product of. It is used in various fields, including physics, mathematics, and computer graphics, to understand and deal with vector behaviors in a 3D space.

Suppose that we have two vectors: vv and ww. We represent their cross product (pronounced as vv cross ww) as:

  • uu : The resulting vector that is always perpendicular to both vv and ww.

  • vv and ww: The two vectors which are linearly independent and are taken cross product of.

Note: Linearly independent vectors cannot be expressed as a linear combination of each other meaning both vectors don't have the same direction.

Representation

The cross product can be represented in two ways: geometric and algebraic.

Geometric representation

Geometrically, the formula to find the cross product of the two vectors is:

  • uu : The resultant vector.

  • v|v| : The magnitudeLength or size of the vector. of the vector vv.

  • w|w| : The magnitude of the vector ww.

  • θθ : The angle between vectors vv and ww.

  • nn : The direction of the resultant vector uu.

Cross product representation
Cross product representation

The magnitude of the resultant vector

The magnitude of the resultant vector is important in various applications where understanding the area or strength of a vector's effect is important. For instance, in physics, when we find the torque using the cross product, the magnitude helps us understand the strength of our resultant vector's force. We can find the magnitude by calculating the area of a parallelogram that is formed by vv and ww.

  • base=vbase = |v|

  • height=wsinθheight = |w|sinθ

Magnitude of the resultant vector
Magnitude of the resultant vector

The direction of the resultant vector

When we calculate the cross product of two vectors, our resultant vector has two possible directions: one towards the negative axis and the other towards the positive. This direction cannot be calculated directly through the above formula, so we use the right-hand rule to find it.

Right hand rule

We follow the following instructions in the right hand rule trick.

  1. We use our right hand.

  2. We point our index finger in the direction of the first vector, vv.

  3. We point our middle finger in the direction of the second vector, ww.

  4. The resultant vector, uu, will point in the direction of our extended thumb.

Right hand rule
Right hand rule

Example

Let's understand the use of the following formula using an example. We can calculate the magnitude of our resultant vector uu if we skip the direction in the formula.

Let's say v=(2,3,1)v = (2, 3, 1) and w=(4,2,5)w = (4, 2, 5). We suppose both the vectors are perpendicular to each other so the angle between them will be 9090.

Magnitude of vv:

Magnitude of ww:

Value of sinθsinθ:

Magnitude of uu:

Note: Our cross product is maximum when the vectors are perpendicular (angle equals 9090) and minimum when the vectors are parallel (angle equals 00).

Algebraic representation

Algebraically, the cross product between two vectors is calculated using a matrix determinant approach. To understand the concept of the determinant of a matrix, we can refer to this answer.

Let's suppose we have vv and ww as two vectors such that:

v=(v1,v2,v3)v = (v1, v2, v3)

w=(w1,w2,w3)w = (w1, w2, w3)

The cross product will be:

  • Here i, j, and k are unit vectors in the x, y, and z directions, respectively.

We get the following formula after simplifying the determinant form:

Example

Let's say v=(2,3,1)v = (2, 3, 1) and w=(4,2,5)w = (4, 2, 5)

The cross product will be:

Properties

Let's discuss the properties of a cross product. Let's suppose vv, ww and uu are three vectors and aa is a scalar.

Property name

Explanation

Representation

Anti-commutative

If we reverse the order of vectors, it results in the opposite sign in the result.

v × w = - w × v

Distributive

The cross product of a vector with the sum of two other vectors is equal to the sum of the cross products of the vector with each of those two vectors separately.

v × (w + u) = (v × w) + (v × u)

Zero vector

If any of the vector has the magnitude equal to zero then the resultant cross product is 0.

v × w = 0 if v = 0 or w = 0

Jacobi identity

If we take three vectors and perform cross products between them, the sum of all those cross products will be zero.

v × (w × u) +w × (u × v)+u × (v × w) = 0

Conclusion

The cross product of vectors is a fundamental mathematical operation with wide-ranging applications in various fields. By taking the cross product of two vectors, we obtain a new vector perpendicular to both the original vectors.

Free Resources

Copyright ©2024 Educative, Inc. All rights reserved