Andromeda
Note

Cross Product

Definition

The cross product (or vector product) of two vectors u\mathbf{u} and v\mathbf{v} in R3\mathbb{R}^3 is a vector that is perpendicular to both u\mathbf{u} and v\mathbf{v}, with a magnitude proportional to the area of the parallelogram they span.

Why It Matters

The cross product is essential for modeling rotation, torque, and electromagnetism in three-dimensional space. It provides a mathematical bridge between area, orientation, and orthogonal force, which is fundamental to physics and engineering.

Core Concepts

  • Geometric Definition: u×v=(uvsinθ)n\mathbf{u} \times \mathbf{v} = (|\mathbf{u}| |\mathbf{v}| \sin \theta) \mathbf{n}, where n\mathbf{n} is a unit vector perpendicular to the plane of u\mathbf{u} and v\mathbf{v}, determined by the right-hand rule.
    • How to read: “The cross product of u and v equals the magnitude of u times the magnitude of v times the sine of theta, times the unit normal vector n.”
    • Meaning: Magnitude equals parallelogram area; n\mathbf{n} is the unit normal perpendicular to u\mathbf{u} and v\mathbf{v} (right-hand rule).
  • Determinant Formula: u×v=ijku1u2u3v1v2v3\mathbf{u} \times \mathbf{v} = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ u_1 & u_2 & u_3 \\ v_1 & v_2 & v_3 \end{vmatrix}.
    • How to read: “The cross product of u and v equals the three by three determinant with unit vectors i, j, k, followed by the components of u and v.”
    • Meaning / when to use: Expand along the first row for component-wise computation.
  • Properties: It is anticommutative (u×v=(v×u)\mathbf{u} \times \mathbf{v} = -(\mathbf{v} \times \mathbf{u})) and yields the zero vector if the input vectors are parallel.
    • How to read: “The cross product of u and v equals the negative cross product of v and u.”
    • Meaning: Swapping order flips the direction; parallel vectors give zero cross product.
  • Area of Parallelogram: The magnitude u×v|\mathbf{u} \times \mathbf{v}| is exactly the area of the parallelogram determined by the two vectors.

Connected Concepts