Vector Multiplication — Definition, Formula & Examples
Vector multiplication refers to the different ways two vectors (or a scalar and a vector) can be combined to produce a new quantity. The three main types are scalar multiplication, the dot product, and the cross product, each yielding a fundamentally different result.
Given vectors and a scalar , vector multiplication encompasses: (1) scalar multiplication , which scales each component; (2) the dot product , which returns a scalar; and (3) the cross product (defined for ), which returns a vector orthogonal to both operands.
How It Works
Scalar multiplication stretches or shrinks a vector by a constant factor — multiply every component by the scalar. The dot product multiplies corresponding components and sums the results, giving a single number that measures how much two vectors point in the same direction. The cross product, available only in three dimensions, produces a new vector perpendicular to the original two, with magnitude equal to the area of the parallelogram they span. Choosing the right type depends on what you need: a scaled vector, a scalar measure of alignment, or a perpendicular direction.
Worked Example
Problem: Let and . Compute (a) , (b) , and (c) .
Scalar multiplication: Multiply each component of by 3.
Dot product: Multiply corresponding components and add.
Cross product: Use the determinant formula with .
Answer: , , .
Why It Matters
Physics and engineering rely on vector multiplication constantly: the dot product computes work done by a force, while the cross product gives torque and magnetic force. In computer graphics, these operations determine lighting angles and surface normals for every rendered frame.
Common Mistakes
Mistake: Confusing the dot product and cross product, or expecting both to return the same type of quantity.
Correction: The dot product returns a scalar, while the cross product returns a vector. They answer different questions — alignment versus perpendicular direction — and are not interchangeable.
