How to Find the Cross Product of Vectors?

Understanding the cross product of vectors is essential in fields like physics and engineering. The cross product, also known as the vector product, is a binary operation on two vectors in three-dimensional space. It results in a vector that is perpendicular to the plane containing the two input vectors.

Definition and Formula

Given two vectors A and B in three-dimensional space, the cross product A × B is defined as:

$mathbf{A} times mathbf{B} = begin{vmatrix}
mathbf{i} & mathbf{j} & mathbf{k} \
A_x & A_y & A_z \
B_x & B_y & B_z
end{vmatrix}$

Here, i, j, and k are the unit vectors in the x, y, and z directions, respectively, and the determinant can be expanded to give:

$mathbf{A} times mathbf{B} = (A_y B_z – A_z B_y) mathbf{i} – (A_x B_z – A_z B_x) mathbf{j} + (A_x B_y – A_y B_x) mathbf{k}$

Step-by-Step Calculation

Let’s break this down with a concrete example. Suppose we have two vectors:

$mathbf{A} = 2mathbf{i} + 3mathbf{j} + 4mathbf{k}$

$mathbf{B} = 5mathbf{i} + 6mathbf{j} + 7mathbf{k}$

  1. Set Up the Determinant
    First, arrange the components of the vectors and the unit vectors in a 3×3 matrix:

    $mathbf{A} times mathbf{B} = begin{vmatrix}
    mathbf{i} & mathbf{j} & mathbf{k} \
    2 & 3 & 4 \
    5 & 6 & 7
    end{vmatrix}$

  1. Expand the Determinant
    Next, expand the determinant using cofactor expansion:

    $mathbf{A} times mathbf{B} = mathbf{i}(3 cdot 7 – 4 cdot 6) – mathbf{j}(2 cdot 7 – 4 cdot 5) + mathbf{k}(2 cdot 6 – 3 cdot 5)$

  1. Simplify the Expression
    Simplify the terms inside the parentheses:

    $mathbf{A} times mathbf{B} = mathbf{i}(21 – 24) – mathbf{j}(14 – 20) + mathbf{k}(12 – 15)$

    $mathbf{A} times mathbf{B} = -3mathbf{i} + 6mathbf{j} – 3mathbf{k}$

    So, the cross product of vectors A and B is:

    $mathbf{A} times mathbf{B} = -3mathbf{i} + 6mathbf{j} – 3mathbf{k}$

Geometric Interpretation

The cross product is not just a mathematical operation; it has a geometric meaning. The magnitude of the cross product vector is given by:

$|mathbf{A} times mathbf{B}| = |mathbf{A}| |mathbf{B}| sin(theta)$

where $theta$ is the angle between vectors A and B.

Right-Hand Rule

To determine the direction of the cross product vector, use the right-hand rule. Point your right hand’s index finger in the direction of A and your middle finger in the direction of B. Your thumb will point in the direction of A × B.

Applications

Physics

In physics, the cross product is used to calculate torque, which is the rotational equivalent of force. If r is the position vector and F is the force vector, the torque τ is given by:

$mathbf{tau} = mathbf{r} times mathbf{F}$

Engineering

In engineering, the cross product is used in calculating the moment of a force and in computer graphics to determine surface normals for lighting calculations.

Example: Torque Calculation

Suppose a force of 10 N is applied at a point 2 meters from the pivot, at an angle of 90 degrees to the lever arm. The torque is:

$mathbf{tau} = 2 mathbf{i} times 10 mathbf{j} = 20 mathbf{k}$

So, the torque is 20 N·m in the z-direction.

Conclusion

Understanding the cross product is crucial for various applications in physics, engineering, and computer graphics. By mastering the formula and its geometric interpretation, you can tackle a wide range of problems involving three-dimensional vectors.

Citations

  1. 1. Khan Academy – Cross Product
  2. 2. MIT OpenCourseWare – Vectors and Matrices
  3. 3. Paul’s Online Math Notes – Cross Product