The cross product a × b produces a vector perpendicular to both a and b, with magnitude |a × b| = |a||b|sin(θ) equal to the area of the parallelogram they span. Right-hand rule determines direction: curl fingers from a toward b, thumb points in direction of a × b.
From your work with 3D coordinates and the computational cross product, you know that a × b = (a₂b₃ − a₃b₂, a₃b₁ − a₁b₃, a₁b₂ − a₂b₁). The geometric content behind that formula is richer than the arithmetic suggests. The result is not a scalar (like the dot product) but a vector — one that lives in 3D space and has both a magnitude and a direction. Understanding both is essential for everything that comes next: surface parametrization, flux integrals, and Stokes' theorem all depend on cross products as a machine for generating normal vectors and measuring area.
The direction of a × b is perpendicular to the plane containing a and b. The right-hand rule encodes which of the two perpendicular directions you get: point your fingers in the direction of a, curl them toward b (through the smaller angle), and your thumb points in the direction of a × b. This means a × b and b × a point in *opposite* directions — the cross product is anti-commutative: a × b = −(b × a). That sign flip reflects an important geometric fact: the orientation of the parallelogram changes depending on which vector you list first.
The magnitude |a × b| = |a||b|sin(θ) is the area of the parallelogram spanned by a and b. You can see why: if a and b were parallel (θ = 0 or π), they would span a degenerate parallelogram — a line — with area 0, and sin(0) = 0. If they were perpendicular (θ = π/2), they'd form a rectangle with area |a||b|, and sin(π/2) = 1. The sine interpolates correctly between these extremes. This interpretation makes the cross product indispensable for surface area calculations: when you parametrize a surface by r(u,v), the vectors rᵤ and rᵥ lie in the tangent plane at each point, and |rᵤ × rᵥ| gives the local area scaling factor — exactly what you integrate to compute surface area.
The cross product also produces an outward normal vector to a surface, which is the key ingredient in flux integrals and Stokes' theorem. Given a parametrized surface patch, the cross product rᵤ × rᵥ points perpendicular to the surface with magnitude equal to the area element dS. Both pieces of information — direction and magnitude — are packed into a single vector, making the cross product the right tool for combining geometric orientation with area measurement in three dimensions.