Math Lab
Home/Class XII/Ch 10/Vector (cross) product

Vector (cross) product

The vector product (or cross product) takes two vectors and produces a new vector , one that is perpendicular to both inputs and whose magnitude equals the area of the parallelogram they span. It is the key tool for finding normals, computing areas in 3D, and constructing perpendiculars.

Definition

Given a,bR3\vec{a}, \vec{b} \in \mathbb{R}^3, the cross product a×b\vec{a} \times \vec{b} is the unique vector satisfying:

  1. Magnitude: a×b=absinθ|\vec{a}\times\vec{b}| = |\vec{a}||\vec{b}|\sin\theta, where θ[0,π]\theta \in [0, \pi] is the angle between a\vec{a} and b\vec{b}.
  2. Direction: perpendicular to both a\vec{a} and b\vec{b}, with sense given by the right-hand rule , curl the fingers from a\vec{a} to b\vec{b}; the thumb points in the direction of a×b\vec{a}\times\vec{b}.

Determinant formula

In components, a×b=i^j^k^a1a2a3b1b2b3=(a2b3a3b2)i^(a1b3a3b1)j^+(a1b2a2b1)k^.\vec{a}\times\vec{b} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ a_1 & a_2 & a_3 \\ b_1 & b_2 & b_3 \end{vmatrix} = (a_2 b_3 - a_3 b_2)\hat{i} - (a_1 b_3 - a_3 b_1)\hat{j} + (a_1 b_2 - a_2 b_1)\hat{k}.

This is the operational form you'll use most.

Properties

  • Anti-commutative: a×b=b×a\vec{a}\times\vec{b} = -\vec{b}\times\vec{a}.
  • Distributive over addition: a×(b+c)=a×b+a×c\vec{a}\times(\vec{b} + \vec{c}) = \vec{a}\times\vec{b} + \vec{a}\times\vec{c}.
  • Scalar factors: (λa)×b=λ(a×b)=a×(λb)(\lambda\vec{a})\times\vec{b} = \lambda(\vec{a}\times\vec{b}) = \vec{a}\times(\lambda\vec{b}).
  • a×a=0\vec{a}\times\vec{a} = \vec{0} (sine of zero).
  • Parallel vectors: a×b=0    ab\vec{a}\times\vec{b} = \vec{0} \iff \vec{a} \parallel \vec{b} (one is a scalar multiple of the other, including 0\vec{0}).
  • Basis cross products: i^×j^=k^\hat{i}\times\hat{j} = \hat{k}, j^×k^=i^\hat{j}\times\hat{k} = \hat{i}, k^×i^=j^\hat{k}\times\hat{i} = \hat{j} (cyclic). Reversing the order flips the sign.

Area interpretation

The magnitude a×b|\vec{a}\times\vec{b}| equals the area of the parallelogram with sides a\vec{a} and b\vec{b} (base a|\vec{a}|, height bsinθ|\vec{b}|\sin\theta).

The area of a triangle with two sides a\vec{a} and b\vec{b} is 12a×b\dfrac{1}{2}|\vec{a}\times\vec{b}|.

The area of a triangle with vertices AA, BB, CC is 12AB×AC\dfrac{1}{2}|\vec{AB}\times\vec{AC}|.

Finding a perpendicular

To find a vector perpendicular to two given vectors a\vec{a} and b\vec{b}, just compute a×b\vec{a}\times\vec{b}. To get a unit perpendicular, divide by the magnitude: n^=a×ba×b.\hat{n} = \frac{\vec{a}\times\vec{b}}{|\vec{a}\times\vec{b}|}.

This is exactly how you find the normal to a plane spanned by two vectors.

Worked examples

Example 1. a=i^+2j^+3k^\vec{a} = \hat{i} + 2\hat{j} + 3\hat{k}, b=2i^+j^k^\vec{b} = 2\hat{i} + \hat{j} - \hat{k}. Find a×b\vec{a}\times\vec{b}.

a×b=i^j^k^123211=i^(2(1)3(1))j^(1(1)3(2))+k^(1(1)2(2))=i^(5)j^(7)+k^(3)=5i^+7j^3k^\vec{a}\times\vec{b} = \begin{vmatrix} \hat{i} & \hat{j} & \hat{k} \\ 1 & 2 & 3 \\ 2 & 1 & -1 \end{vmatrix} = \hat{i}(2(-1) - 3(1)) - \hat{j}(1(-1) - 3(2)) + \hat{k}(1(1) - 2(2)) = \hat{i}(-5) - \hat{j}(-7) + \hat{k}(-3) = -5\hat{i} + 7\hat{j} - 3\hat{k}.

Example 2. Find the area of the parallelogram with adjacent sides a=i^+j^k^\vec{a} = \hat{i} + \hat{j} - \hat{k}, b=2i^j^+k^\vec{b} = 2\hat{i} - \hat{j} + \hat{k}.

a×b=i^j^k^111211=i^(11)j^(1+2)+k^(12)=3j^3k^\vec{a}\times\vec{b} = \begin{vmatrix}\hat{i} & \hat{j} & \hat{k}\\1 & 1 & -1\\2 & -1 & 1\end{vmatrix} = \hat{i}(1 - 1) - \hat{j}(1 + 2) + \hat{k}(-1 - 2) = -3\hat{j} - 3\hat{k}. Area =9+9=32= \sqrt{9 + 9} = 3\sqrt 2.

Example 3. Area of the triangle with vertices A=(1,1,1)A = (1, 1, 1), B=(4,5,6)B = (4, 5, 6), C=(0,2,3)C = (0, 2, 3).

AB=(3,4,5)\vec{AB} = (3, 4, 5), AC=(1,1,2)\vec{AC} = (-1, 1, 2). AB×AC=i^j^k^345112=i^(85)j^(6+5)+k^(3+4)=3i^11j^+7k^\vec{AB}\times\vec{AC} = \begin{vmatrix}\hat i & \hat j & \hat k\\3 & 4 & 5\\-1 & 1 & 2\end{vmatrix} = \hat i(8 - 5) - \hat j(6 + 5) + \hat k(3 + 4) = 3\hat i - 11\hat j + 7\hat k. Magnitude =9+121+49=179= \sqrt{9 + 121 + 49} = \sqrt{179}. Area =179/2= \sqrt{179}/2.

Example 4. Find a unit vector perpendicular to both i^+j^\hat{i} + \hat{j} and j^+k^\hat{j} + \hat{k}.

Cross product: i^j^k^110011=i^(1)j^(1)+k^(1)=i^j^+k^\begin{vmatrix}\hat i & \hat j & \hat k\\1 & 1 & 0\\0 & 1 & 1\end{vmatrix} = \hat i(1) - \hat j(1) + \hat k(1) = \hat i - \hat j + \hat k. Magnitude 3\sqrt 3. Unit vector: 13(i^j^+k^)\dfrac{1}{\sqrt 3}(\hat i - \hat j + \hat k).

Example 5. Show that a×b2+(ab)2=a2b2|\vec{a}\times\vec{b}|^2 + (\vec{a}\cdot\vec{b})^2 = |\vec{a}|^2|\vec{b}|^2.

By definition: a×b2=a2b2sin2θ|\vec{a}\times\vec{b}|^2 = |\vec a|^2|\vec b|^2 \sin^2\theta and (ab)2=a2b2cos2θ(\vec{a}\cdot\vec{b})^2 = |\vec a|^2|\vec b|^2\cos^2\theta. Add: a2b2(sin2θ+cos2θ)=a2b2|\vec a|^2|\vec b|^2(\sin^2\theta + \cos^2\theta) = |\vec a|^2|\vec b|^2.

Example 6. Find the sine of the angle between a=2i^+j^+k^\vec{a} = 2\hat{i} + \hat{j} + \hat{k} and b=i^j^+k^\vec{b} = \hat{i} - \hat{j} + \hat{k}.

a×b=i^j^k^211111=i^(1+1)j^(21)+k^(21)=2i^j^3k^\vec{a}\times\vec{b} = \begin{vmatrix}\hat i & \hat j & \hat k\\2 & 1 & 1\\1 & -1 & 1\end{vmatrix} = \hat i(1 + 1) - \hat j(2 - 1) + \hat k(-2 - 1) = 2\hat i - \hat j - 3\hat k. Magnitude 14\sqrt{14}. a=6|\vec a| = \sqrt 6, b=3|\vec b| = \sqrt 3. sinθ=1418=1432=73\sin\theta = \dfrac{\sqrt{14}}{\sqrt{18}} = \dfrac{\sqrt{14}}{3\sqrt 2} = \dfrac{\sqrt 7}{3}.

Try it yourself

  1. Find a×b\vec{a}\times\vec{b} if a=i^+j^\vec{a} = \hat{i} + \hat{j}, b=j^+k^\vec{b} = \hat{j} + \hat{k}.
  2. Find the area of the parallelogram with sides a=3i^+j^2k^\vec{a} = 3\hat{i} + \hat{j} - 2\hat{k} and b=i^3j^+4k^\vec{b} = \hat{i} - 3\hat{j} + 4\hat{k}.
  3. Area of the triangle with vertices (0,0,0)(0, 0, 0), (1,0,0)(1, 0, 0), (0,1,0)(0, 1, 0).
  4. Find a unit vector perpendicular to i^j^\hat{i} - \hat{j} and i^+k^\hat{i} + \hat{k}.
  5. Show that a×a=0\vec{a}\times\vec{a} = \vec{0}.
  6. Compute (i^+2j^)×(3i^j^)(\hat{i} + 2\hat{j})\times(3\hat{i} - \hat{j}).
  7. If a×b=0\vec{a}\times\vec{b} = \vec{0} and neither vector is zero, what is the relationship between a\vec{a} and b\vec{b}?
  8. Find λ\lambda if (2i^+λj^+k^)×(i^+j^)=0(2\hat i + \lambda \hat j + \hat k) \times (\hat i + \hat j) = \vec{0}.
  9. Verify i^×(j^×k^)=i^×i^=0\hat{i}\times(\hat{j}\times\hat{k}) = \hat{i}\times\hat{i} = \vec{0}.
  10. Find the area of the triangle with vertices A=(1,2,3)A = (1, 2, 3), B=(2,1,4)B = (2, -1, 4), C=(4,5,1)C = (4, 5, -1).
  11. Show that a×b=b×a\vec{a}\times\vec{b} = -\vec{b}\times\vec{a}.
  12. Find a vector of magnitude 55 perpendicular to both i^+2j^\hat{i} + 2\hat{j} and 3i^k^3\hat{i} - \hat{k}.
  13. Find a×b|\vec{a}\times\vec{b}| if a=4|\vec{a}| = 4, b=3|\vec{b}| = 3, angle θ=30\theta = 30^\circ.
  14. Show that the diagonals of a rhombus are perpendicular using cross products.

Pitfalls and tricks

  • Cross product is a vector in 3D; it doesn't exist in 2D in the same form.
  • Right-hand rule determines orientation; reversing the order flips the sign.
  • Don't confuse a×b\vec{a}\times\vec{b} with ab\vec{a}\cdot\vec{b}. The cross is a vector; the dot is a scalar.
  • For area, take the magnitude. Just a×b|\vec{a}\times\vec{b}| for parallelogram, halved for triangle.
  • The determinant formula is mechanical , memorise it.

Practice quiz

Quick check on this topic.

Quiz
Quick check : Vector product
6 questions · pick the best answer
Q1

j^×k^\hat j \times \hat k equals

Q2

a×b|\vec a \times \vec b| equals

Q3

a×a\vec a \times \vec a equals

Q4

a×b=b×a\vec a \times \vec b = -\vec b \times \vec a : this is

Q5

Area of parallelogram with adjacent sides a,b\vec a, \vec b is

Q6

(i^+j^)×(i^j^)(\hat i + \hat j) \times (\hat i - \hat j) equals