Why "Multiplying Vectors" Means Two Different Things
When you multiply two numbers, you get a number. When you multiply two vectors, you have to choose what kind of answer you want — a number or another vector. That choice gives two completely different operations.
Dot product (scalar product) — answer is a single number. Measures alignment.
Cross product (vector product) — answer is a vector perpendicular to both inputs. Measures the area they span and which way is "up" from that area.
Both operations are useful; they answer different questions about the same pair of vectors.
The Dot Product — Scalar Multiplication of Vectors
Geometric formula. For vectors $\mathbf{a}$ and $\mathbf{b}$ with angle $\theta$ between them:
$$\mathbf{a} \cdot \mathbf{b} = |\mathbf{a}|,|\mathbf{b}|\cos\theta.$$
Component formula (in 3D). For $\mathbf{a} = (a_1, a_2, a_3)$ and $\mathbf{b} = (b_1, b_2, b_3)$:
$$\mathbf{a} \cdot \mathbf{b} = a_1 b_1 + a_2 b_2 + a_3 b_3.$$
What the dot product tells you:
Sign. Positive means the vectors point in roughly the same direction; negative means opposite directions; zero means perpendicular.
Magnitude. Maximum (positive) when vectors are parallel; zero when perpendicular.
Projection. $\mathbf{a} \cdot \mathbf{b} = |\mathbf{a}|,|\text{projection of }\mathbf{b}\text{ onto }\mathbf{a}|$ (with sign).
Properties at a glance
Property | Statement | Example |
|---|---|---|
Commutative | $\mathbf{a} \cdot \mathbf{b} = \mathbf{b} \cdot \mathbf{a}$ | Order doesn't matter |
Distributive | $\mathbf{a} \cdot (\mathbf{b} + \mathbf{c}) = \mathbf{a} \cdot \mathbf{b} + \mathbf{a} \cdot \mathbf{c}$ | Distributes over vector addition |
Self dot product | $\mathbf{a} \cdot \mathbf{a} = |\mathbf{a}|^2$ | Vector dotted with itself is its magnitude squared |
Perpendicularity test | $\mathbf{a} \cdot \mathbf{b} = 0 \Leftrightarrow$ vectors are perpendicular (or one is zero) | The most-used test in coordinate geometry |
The Cross Product — Vector Multiplication of Vectors
Geometric formula. For vectors $\mathbf{a}$ and $\mathbf{b}$ with angle $\theta$ between them:
$$\mathbf{a} \times \mathbf{b} = |\mathbf{a}|,|\mathbf{b}|\sin\theta ,\hat{\mathbf{n}},$$
where $\hat{\mathbf{n}}$ is the unit vector perpendicular to both $\mathbf{a}$ and $\mathbf{b}$, with direction given by the right-hand rule (curl your right-hand fingers from $\mathbf{a}$ to $\mathbf{b}$; your thumb points along $\hat{\mathbf{n}}$).
Component formula (in 3D). For $\mathbf{a} = (a_1, a_2, a_3)$ and $\mathbf{b} = (b_1, b_2, b_3)$:
$$\mathbf{a} \times \mathbf{b} = (a_2 b_3 - a_3 b_2,; a_3 b_1 - a_1 b_3,; a_1 b_2 - a_2 b_1).$$
A compact way to remember it: expand the determinant of the $3 \times 3$ matrix with $\hat{\mathbf{i}}, \hat{\mathbf{j}}, \hat{\mathbf{k}}$ in the first row, $\mathbf{a}$'s components in the second, $\mathbf{b}$'s in the third.
Properties at a glance
Property | Statement |
|---|---|
Anti-commutative | $\mathbf{a} \times \mathbf{b} = -(\mathbf{b} \times \mathbf{a})$ (order flips the sign) |
Distributive | $\mathbf{a} \times (\mathbf{b} + \mathbf{c}) = \mathbf{a} \times \mathbf{b} + \mathbf{a} \times \mathbf{c}$ |
Self cross product | $\mathbf{a} \times \mathbf{a} = \mathbf{0}$ (zero vector — the angle between a vector and itself is zero, so $\sin\theta = 0$) |
Magnitude = area | $ |
Dot Product vs Cross Product — Side by Side
Feature | Dot product | Cross product |
|---|---|---|
Notation | $\mathbf{a} \cdot \mathbf{b}$ | $\mathbf{a} \times \mathbf{b}$ |
Result type | Scalar (number) | Vector |
Geometric meaning | Measures alignment / projection | Perpendicular vector; magnitude = parallelogram area |
Trig involved | $\cos\theta$ | $\sin\theta$ |
Order matters? | No ($\mathbf{a} \cdot \mathbf{b} = \mathbf{b} \cdot \mathbf{a}$) | Yes ($\mathbf{a} \times \mathbf{b} = -(\mathbf{b} \times \mathbf{a})$) |
Works in 2D? | Yes | Only in 3D (2D version returns a signed scalar — the $z$-component) |
Used for | Work done by a force; angle between vectors; testing perpendicularity | Torque; magnetic force; surface normals; testing parallel |
Three Worked Examples — Quick, Standard, Stretch
Quick. Find the dot product of $\mathbf{a} = (3, 4, 0)$ and $\mathbf{b} = (1, 2, 5)$.
$$\mathbf{a} \cdot \mathbf{b} = (3)(1) + (4)(2) + (0)(5) = 3 + 8 + 0 = 11.$$
Final answer: $\mathbf{a} \cdot \mathbf{b} = 11$.
Standard (Two Routes to the Same Problem — Pick the Right One). Find the cross product of $\mathbf{a} = (1, 2, 3)$ and $\mathbf{b} = (4, 5, 6)$.
The wrong path. A student writes the determinant and expands by trying to compute each row separately — and gets the signs wrong on the middle term. A common slip is forgetting that the middle term in the expansion of a $3 \times 3$ determinant comes with a negative sign. So $(a_3 b_1 - a_1 b_3)$ becomes $(a_1 b_3 - a_3 b_1)$, flipping the sign of the $j$-component.
Computing: $i$-component = $(2)(6) - (3)(5) = 12 - 15 = -3$. Then $j$-component, sign-error version: $(1)(6) - (3)(4) = 6 - 12 = -6$. But the correct formula has $a_3 b_1 - a_1 b_3 = (3)(4) - (1)(6) = 12 - 6 = 6$. Two different numbers, opposite signs.
The rescue. Memorise the component formula in the cyclic order $(a_2 b_3 - a_3 b_2,; a_3 b_1 - a_1 b_3,; a_1 b_2 - a_2 b_1)$. The indices follow the cycle $1 \to 2 \to 3 \to 1$. For each component, the first index is the next one in the cycle, the second is the next-next.
Computing properly:
$i$-component: $a_2 b_3 - a_3 b_2 = (2)(6) - (3)(5) = 12 - 15 = -3$.
$j$-component: $a_3 b_1 - a_1 b_3 = (3)(4) - (1)(6) = 12 - 6 = 6$.
$k$-component: $a_1 b_2 - a_2 b_1 = (1)(5) - (2)(4) = 5 - 8 = -3$.
Final answer: $\mathbf{a} \times \mathbf{b} = (-3, 6, -3)$.
Verification: $\mathbf{a} \cdot (\mathbf{a} \times \mathbf{b}) = (1)(-3) + (2)(6) + (3)(-3) = -3 + 12 - 9 = 0$ ✓. The cross product is perpendicular to $\mathbf{a}$, as it must be.
Stretch. Two sides of a parallelogram are given by $\mathbf{u} = (2, 1, 0)$ and $\mathbf{v} = (0, 3, 4)$. Find the area.
The area equals $|\mathbf{u} \times \mathbf{v}|$.
$\mathbf{u} \times \mathbf{v}$ component by component:
$i$: $(1)(4) - (0)(3) = 4$
$j$: $(0)(0) - (2)(4) = -8$
$k$: $(2)(3) - (1)(0) = 6$
So $\mathbf{u} \times \mathbf{v} = (4, -8, 6)$.
Magnitude: $\sqrt{4^2 + (-8)^2 + 6^2} = \sqrt{16 + 64 + 36} = \sqrt{116} = 2\sqrt{29}$.
Final answer: Area $= 2\sqrt{29} \approx 10.77$ square units.
Why Vector Multiplication Matters
Most of physics, engineering, and 3D graphics runs on dot and cross products.
Work and energy. Work done by a force is $W = \mathbf{F} \cdot \mathbf{d}$ — a dot product. Force perpendicular to motion does no work (the dot product is zero); force aligned with motion does maximum work.
Torque and rotation. Torque is $\boldsymbol{\tau} = \mathbf{r} \times \mathbf{F}$ — a cross product. The torque vector points along the axis of rotation; its magnitude tells you how strongly the force tends to rotate the object.
Magnetic force on a moving charge. $\mathbf{F} = q\mathbf{v} \times \mathbf{B}$. The force on a charged particle in a magnetic field is perpendicular to both velocity and the field — the right-hand rule made physical.
Computer graphics. Every surface normal in a 3D scene is computed as a cross product of two edge vectors. Lighting models use the dot product between the surface normal and the light direction to decide how bright each point is.
Engineering — moments of forces. Structural analysis of beams and trusses leans on the cross product for moments and the dot product for projecting forces along structural axes.
The Mathematicians Who Shaped Vector Multiplication
Vectors did not arrive in mathematics in their modern form. They were assembled from two competing 19th-century systems — a story worth knowing because it explains why the notation looks the way it does.
William Rowan Hamilton (Ireland, 1805–1865) invented quaternions in 1843 — a 4-dimensional algebra whose multiplication rules contained both the dot product and the cross product, hidden inside the same operation. Quaternions were the dominant 3D-rotation tool of the late 1800s. (They're back today in computer graphics and aerospace, but the notation is reserved for those niches.)
Hermann Grassmann (Germany, 1809–1877) developed the exterior algebra in 1844, which contains the wedge product — a generalization of the cross product to any dimension.
J. Willard Gibbs (United States, 1839–1903) and Oliver Heaviside independently split Hamilton's quaternion multiplication into the dot product and the cross product as separate operations in the 1880s. Gibbs's pamphlet Elements of Vector Analysis (1881) introduced the notation $\mathbf{a} \cdot \mathbf{b}$ and $\mathbf{a} \times \mathbf{b}$ that every modern physics textbook uses.
The decade-long Hamilton-vs-Gibbs dispute (now called the "quaternion wars" by historians) ended with Gibbs's notation winning by adoption — physicists found two simple operations more convenient than one complicated one.
Where Things Go Sideways on Vector Multiplication
Mistake 1: Treating the cross product as commutative.
Where it slips in: A student computes $\mathbf{a} \times \mathbf{b}$ and reuses the result when the question asks for $\mathbf{b} \times \mathbf{a}$.
Don't do this: Treat $\mathbf{a} \times \mathbf{b}$ and $\mathbf{b} \times \mathbf{a}$ as equal.
The correct way: The cross product is anti-commutative: $\mathbf{b} \times \mathbf{a} = -(\mathbf{a} \times \mathbf{b})$. Swapping order flips every component's sign. (The dot product, by contrast, is commutative — order doesn't matter there.)
Mistake 2: Using the wrong trig in each formula.
Where it slips in: A student computes a dot product with $|\mathbf{a}||\mathbf{b}|\sin\theta$ instead of $\cos\theta$, or a cross product with $\cos\theta$ instead of $\sin\theta$.
Don't do this: Mix up the trig functions between the two products.
The correct way: Dot $\to$ cosine. Cross $\to$ sine. A memory aid: when $\theta = 0$ (vectors parallel), $\cos 0 = 1$ — maximum dot product, which makes sense for fully-aligned vectors. When $\theta = 90°$ (perpendicular), $\sin 90° = 1$ — maximum cross product magnitude, which makes sense because the parallelogram is at its biggest area then.
Mistake 3: Forgetting the right-hand rule when finding the cross-product direction.
Where it slips in: A student computes $|\mathbf{a} \times \mathbf{b}|$ correctly but draws the resulting vector in the wrong direction.
Don't do this: Skip the right-hand rule because "perpendicular" feels unique.
The correct way: There are two perpendicular directions (the perpendicular line points both up and down out of the plane). The right-hand rule picks one — curl the fingers from $\mathbf{a}$ toward $\mathbf{b}$; the thumb points along $\mathbf{a} \times \mathbf{b}$. JEE Physics questions on torque and magnetic force test this directly — getting the magnitude right but the direction wrong loses both marks.
Conclusion
Vector multiplication comes in two forms — the dot product (scalar result) and the cross product (vector result).
$\mathbf{a} \cdot \mathbf{b} = |\mathbf{a}||\mathbf{b}|\cos\theta$ measures alignment; $\mathbf{a} \times \mathbf{b} = |\mathbf{a}||\mathbf{b}|\sin\theta ,\hat{\mathbf{n}}$ measures perpendicular area.
Dot product is commutative; cross product is anti-commutative ($\mathbf{a} \times \mathbf{b} = -\mathbf{b} \times \mathbf{a}$).
The dot-and-cross split was Gibbs's 1880s reorganisation of Hamilton's quaternions — the notation physicists adopted.
Vector multiplication powers work, torque, magnetic force, and every surface-normal computation in 3D graphics.
Sharpen Your Vector Multiplication — Three Practice Problems
Compute $\mathbf{a} \cdot \mathbf{b}$ for $\mathbf{a} = (2, -1, 3)$ and $\mathbf{b} = (4, 1, -2)$.
Compute $\mathbf{a} \times \mathbf{b}$ for the same vectors. Verify that the result is perpendicular to $\mathbf{a}$.
Are the vectors $(1, 2, 3)$ and $(2, 4, 6)$ parallel? Use a single cross-product computation to decide.
If Problem 3 took more than ten seconds, look at the relationship between the two vectors before computing — sometimes the shortcut is staring back.
Want a live Bhanzu trainer to walk your child through vectors and the Grade 12 / JEE syllabus? Book a free demo class — online globally.
Was this article helpful?
Your feedback helps us write better content
