Skip to content
Medium

The Cross Product and Area of a Parallelogram

Simple Explanation

The magnitude of the cross product of two vectors equals the area of the parallelogram they form: Area = |a×b|.

Why Do We Need It?

This is a genuinely useful shortcut for finding areas in 3D, where a simple base-times-height calculation is much harder to set up directly.

Formula

Area of a Parallelogram Using the Cross Product

Area = |a × b|

The area of the parallelogram formed by two vectors a and b equals the magnitude of their cross product.

a, b
the two vectors forming the sides of the parallelogram

When to use it: Whenever the area of a parallelogram (or, halved, a triangle) formed by two vectors is needed.

Worked Example

Find the area of a parallelogram using the cross product

Find the area of the parallelogram formed by a=(3,0,0) and b=(0,4,0).

    Why Does This Work?

    The magnitude of the cross product can be shown to equal |a||b|sinθ, where θ is the angle between a and b — and |a||b|sinθ is exactly the standard base-times-height formula for a parallelogram's area (base |a|, height |b|sinθ).

    Real-Life Example

    Computing the surface area of a tilted solar panel

    A solar panel is described by two edge vectors that are not perpendicular to each other, at some angle due to the panel's installation.

    The cross product magnitude gives the panel's actual area directly from the two edge vectors, without needing to first find the angle between them.

    Practice

    Find the area of the parallelogram formed by a=(5,0,0) and b=(0,2,0).

    Medium

    Common mistake

    Forgetting to take the MAGNITUDE of the cross product — the cross product itself is a vector, but the area is its length (a scalar).

    Quick Review

    • Area of the parallelogram formed by a and b = |a×b|.
    • Comes from |a×b| = |a||b|sinθ, the standard area formula in disguise.
    • Half of this gives the area of the triangle formed by a and b instead.