Physics · Mathematical Tools

Dot Product & Cross Product

Two vectors can be multiplied in two genuinely different ways. The dot product, \(\vec A\cdot\vec B = AB\cos\theta\), returns a scalar and measures how aligned the vectors are. The cross product, \(\vec A\times\vec B = AB\sin\theta\,\hat n\), returns a new vector perpendicular to both. Choosing the wrong one is the single most expensive mathematics error in NEET Physics — work and power live on the dot product, while torque and angular momentum live on the cross product. This deep-dive fixes both definitions, their properties, the geometric pictures, the component shortcuts, and the four mechanics applications NEET keeps reusing.

Two ways to multiply vectors

Adding two vectors gives a vector and is unambiguous. Multiplying them is not: there are two distinct, equally legitimate products, and they answer different physical questions. The dot product (also called the scalar product) takes two vectors and returns a single number. The cross product (also called the vector product) takes two vectors and returns a third vector, perpendicular to both.

The distinction is not a notational nicety. Work done by a force is a number — it cannot point anywhere — so it is built from a dot product. Torque produces rotation about an axis and therefore has a direction of its own, so it is built from a cross product. Before solving any product problem, ask one diagnostic question: is the answer a scalar or a vector? The answer decides which product you need.

The dot product (scalar product)

The dot product of two vectors \(\vec A\) and \(\vec B\) separated by angle \(\theta\) is defined as

$$\vec A\cdot\vec B = AB\cos\theta$$

where \(A\) and \(B\) are the magnitudes. Because \(\cos\theta\) runs from \(+1\) at \(\theta=0^\circ\) to \(0\) at \(\theta=90^\circ\) to \(-1\) at \(\theta=180^\circ\), the dot product is maximum when the vectors are parallel, zero when they are perpendicular, and negative when they point in broadly opposite directions. The product carries the units of both vectors but no direction.

PropertyStatementWhy it matters
Commutative\(\vec A\cdot\vec B = \vec B\cdot\vec A\)Order never matters; \(\cos\theta\) is symmetric.
Distributive\(\vec A\cdot(\vec B+\vec C)=\vec A\cdot\vec B+\vec A\cdot\vec C\)Lets you split component-wise.
Same unit vectors\(\hat i\cdot\hat i=\hat j\cdot\hat j=\hat k\cdot\hat k=1\)\(\theta=0^\circ\), \(\cos 0=1\).
Different unit vectors\(\hat i\cdot\hat j=\hat j\cdot\hat k=\hat k\cdot\hat i=0\)Perpendicular axes, \(\cos 90^\circ=0\).
Self dot product\(\vec A\cdot\vec A = A^2\)Recovers the magnitude squared.

Two consequences are worth memorising. The dot product of a vector with itself returns its magnitude squared, so \(A=\sqrt{\vec A\cdot\vec A}\) — this is the vector form of the Pythagorean magnitude. And the unit-vector rules above are what make the component formula (below) so mechanical: every cross term \(\hat i\cdot\hat j\) collapses to zero, leaving only the matched terms.

Geometric meaning — projection

The dot product has a clean geometric reading. Write \(\vec A\cdot\vec B = A\,(B\cos\theta)\). The quantity \(B\cos\theta\) is the projection of \(\vec B\) onto \(\vec A\) — the length of the "shadow" that \(\vec B\) casts along the direction of \(\vec A\). So the dot product is the magnitude of one vector times the amount of the other that lies along it. When the vectors are perpendicular, the shadow has zero length and the dot product vanishes.

A B B cosθ (projection of B on A) θ
Figure 1 — The dot product as a projection. \(\vec A\cdot\vec B = A\,(B\cos\theta)\): the magnitude of \(\vec A\) multiplied by the shadow \(B\cos\theta\) of \(\vec B\) along \(\vec A\). The perpendicular component of \(\vec B\) contributes nothing.

This projection picture is the reason work behaves the way it does. Only the part of a force that lies along the displacement does work; a force perpendicular to the motion — the normal reaction on a sliding block, the tension in a string for circular motion — does zero work, because its projection onto the displacement is zero. The dot product encodes that physics automatically.

The cross product (vector product)

The cross product of \(\vec A\) and \(\vec B\) is defined as

$$\vec A\times\vec B = AB\sin\theta\,\hat n$$

where \(\hat n\) is a unit vector perpendicular to the plane containing \(\vec A\) and \(\vec B\), with its sense fixed by the right-hand rule. Because the factor is \(\sin\theta\), the cross product is zero when the vectors are parallel (\(\theta=0^\circ\) or \(180^\circ\)) and maximum when they are perpendicular — the exact opposite behaviour of the dot product.

PropertyStatementWhy it matters
Anti-commutative\(\vec A\times\vec B = -(\vec B\times\vec A)\)Swapping the order flips the direction.
Distributive\(\vec A\times(\vec B+\vec C)=\vec A\times\vec B+\vec A\times\vec C\)Lets you expand component-wise.
Parallel vectors\(\vec A\times\vec A = \vec 0\)\(\sin 0^\circ=0\); a vector has no cross with itself.
Cyclic unit vectors\(\hat i\times\hat j=\hat k,\ \hat j\times\hat k=\hat i,\ \hat k\times\hat i=\hat j\)The right-handed cycle î → ĵ → k̂ → î.
Reverse cycle\(\hat j\times\hat i=-\hat k\), etc.Going against the cycle gives a minus sign.

The cyclic rule is worth drilling: marching forward through \(\hat i\to\hat j\to\hat k\to\hat i\) gives a positive result, while going backwards introduces a minus sign. The magnitude \(|\vec A\times\vec B| = AB\sin\theta\) has a tidy geometric meaning too — it equals the area of the parallelogram with \(\vec A\) and \(\vec B\) as adjacent sides, so half of it is the area of the triangle they span.

The right-hand rule

The magnitude \(AB\sin\theta\) leaves the direction of the cross product to be fixed, and that is the job of the right-hand rule. Point the fingers of your right hand along the first vector \(\vec A\), then curl them toward the second vector \(\vec B\) through the smaller angle. Your outstretched thumb points along \(\vec A\times\vec B\), perpendicular to the plane of \(\vec A\) and \(\vec B\).

A B A × B (out) B × A (in) θ
Figure 2 — The right-hand rule. Curling the right hand from \(\vec A\) to \(\vec B\) sends the thumb along \(\vec A\times\vec B\), perpendicular to their plane. Reversing the order to \(\vec B\times\vec A\) flips the result to the opposite side — the geometry of anti-commutativity.

This is exactly why \(\vec A\times\vec B = -(\vec B\times\vec A)\). Curling from \(\vec B\) to \(\vec A\) reverses the curl, so the thumb flips to the opposite side of the plane. The magnitudes are identical; only the sign of \(\hat n\) changes. In physics this matters enormously: torque is defined as \(\vec\tau=\vec r\times\vec F\) and never \(\vec F\times\vec r\), because the order fixes whether the body turns clockwise or anticlockwise.

Component and determinant forms

Geometry gives the meaning; components give the arithmetic. Write \(\vec A = A_x\hat i + A_y\hat j + A_z\hat k\) and \(\vec B = B_x\hat i + B_y\hat j + B_z\hat k\). Using \(\hat i\cdot\hat i=1\) and \(\hat i\cdot\hat j=0\), every cross term in the dot product vanishes and only the matched terms survive:

$$\vec A\cdot\vec B = A_xB_x + A_yB_y + A_zB_z$$

The cross product, using the cyclic unit-vector rules, is most reliably written as a \(3\times3\) determinant with the unit vectors in the top row:

$$\vec A\times\vec B = \begin{vmatrix} \hat i & \hat j & \hat k \\ A_x & A_y & A_z \\ B_x & B_y & B_z \end{vmatrix} = (A_yB_z - A_zB_y)\hat i - (A_xB_z - A_zB_x)\hat j + (A_xB_y - A_yB_x)\hat k$$

Notice the sign on the middle (\(\hat j\)) term — it carries a minus, a standard determinant expansion. Two diagnostic checks settle which product a problem needs: is the answer a number or a vector?, and does the answer vanish when the vectors line up or when they cross perpendicularly? One question, and the choice is made.

i
Foundations

If component notation feels shaky, revisit vectors & scalars for resolution into \(\hat i,\hat j,\hat k\) and the rules for adding vectors.

Dot vs cross — side by side

The two products are complementary in almost every respect. The card below collects the contrasts you should be able to recall instantly in the exam hall.

Worked examples

Three short calculations cover the question types NEET draws from this topic: a dot-and-cross from components, the angle between two vectors, and the area of a parallelogram from the cross-product magnitude.

Worked Example 1

Given \(\vec A = 2\hat i + 3\hat j + \hat k\) and \(\vec B = \hat i - \hat j + 2\hat k\), find \(\vec A\cdot\vec B\) and \(\vec A\times\vec B\).

Dot product. Multiply matched components and add: \(\vec A\cdot\vec B = (2)(1) + (3)(-1) + (1)(2) = 2 - 3 + 2 = 1\). A scalar.

Cross product. Expand the determinant. \(\hat i\) term: \(A_yB_z - A_zB_y = (3)(2)-(1)(-1) = 6+1 = 7\). \(\hat j\) term (carry the minus): \(-\big(A_xB_z - A_zB_x\big) = -\big((2)(2)-(1)(1)\big) = -(4-1) = -3\). \(\hat k\) term: \(A_xB_y - A_yB_x = (2)(-1)-(3)(1) = -2-3 = -5\).

Answer: \(\vec A\cdot\vec B = 1\) (scalar); \(\vec A\times\vec B = 7\hat i - 3\hat j - 5\hat k\) (vector). Quick check: \(\vec A\cdot(\vec A\times\vec B) = (2)(7)+(3)(-3)+(1)(-5)=14-9-5=0\), confirming the cross product is perpendicular to \(\vec A\).

Worked Example 2

Find the angle between \(\vec A = \hat i + \hat j\) and \(\vec B = \hat i + \hat k\).

Use the dot product. \(\vec A\cdot\vec B = (1)(1)+(1)(0)+(0)(1) = 1\).

Magnitudes. \(A=\sqrt{1^2+1^2}=\sqrt2\) and \(B=\sqrt{1^2+1^2}=\sqrt2\), so \(AB = 2\).

Solve. \(\cos\theta = \dfrac{\vec A\cdot\vec B}{AB} = \dfrac{1}{2}\), hence \(\theta = 60^\circ\). The two vectors are inclined at \(60^\circ\).

Worked Example 3

Two adjacent sides of a parallelogram are \(\vec A = 3\hat i + \hat j\) and \(\vec B = \hat i + 2\hat j\). Find its area.

Area = magnitude of the cross product. With both vectors in the \(xy\)-plane only the \(\hat k\) component survives: \(\vec A\times\vec B = (A_xB_y - A_yB_x)\hat k = \big((3)(2)-(1)(1)\big)\hat k = 5\hat k\).

Answer: area \(= |\vec A\times\vec B| = 5\) square units. The triangle formed by the two vectors would have half this area, \(2.5\) square units.

Where this shows up in NEET physics

Mathematical Tools is a synthesis chapter with no NCERT source and no year-tagged PYQs. What matters is recognising the product hidden inside each physics formula. These four applications recur across mechanics and electromagnetism.

Dot · Work

Work done by a force: \(W = \vec F\cdot\vec d = Fd\cos\theta\).

A force \(\vec F = 4\hat i + 3\hat j\ \text{N}\) acts through a displacement \(\vec d = 5\hat i\ \text{m}\). Work \(= \vec F\cdot\vec d = (4)(5)+(3)(0) = 20\ \text{J}\). Only the component of force along the displacement does work — the \(3\hat j\) part is perpendicular to the motion and contributes nothing, exactly the projection picture of the dot product.

Dot · Power

Instantaneous power: \(P = \vec F\cdot\vec v = Fv\cos\theta\).

For \(\vec F = 2\hat i + \hat j + 2\hat k\ \text{N}\) and \(\vec v = 3\hat i + 4\hat k\ \text{m s}^{-1}\), power \(= (2)(3)+(1)(0)+(2)(4) = 6+8 = 14\ \text{W}\). Power is a rate of doing work and is therefore a scalar — there is no "direction of power", a fact a dot product enforces automatically.

Cross · Torque

Torque about a point: \(\vec\tau = \vec r\times\vec F\), with magnitude \(\tau = rF\sin\theta\).

A force \(\vec F = 5\hat j\ \text{N}\) acts at position \(\vec r = 2\hat i\ \text{m}\) from the axis. Then \(\vec\tau = \vec r\times\vec F = (2\hat i)\times(5\hat j) = 10(\hat i\times\hat j) = 10\hat k\ \text{N m}\) — the torque points along \(+\hat k\), out of the plane, so the body turns anticlockwise. Torque is maximum when the force is perpendicular to the arm (\(\sin 90^\circ=1\)) and zero when the force points along the arm.

Cross · Angular momentum

Angular momentum about a point: \(\vec L = \vec r\times\vec p\), with magnitude \(L = rp\sin\theta\).

A particle of momentum \(\vec p = 3\hat j\ \text{kg m s}^{-1}\) is at \(\vec r = 4\hat i\ \text{m}\). Then \(\vec L = (4\hat i)\times(3\hat j) = 12\hat k\ \text{kg m}^2\text{ s}^{-1}\). Like torque, angular momentum is a vector along the axis of rotation, fixed by the right-hand rule. Reversing the order to \(\vec p\times\vec r\) would point it the wrong way — a classic distractor.

FAQs — Dot Product & Cross Product

The product-selection questions NEET aspirants get wrong most often.

When do I use the dot product and when do I use the cross product?
Use the dot product when the answer is a scalar that depends on how aligned two vectors are — work (\(W=\vec F\cdot\vec d\)), power (\(P=\vec F\cdot\vec v\)) and flux all use dot products. Use the cross product when the answer is a new vector perpendicular to both inputs — torque (\(\vec\tau=\vec r\times\vec F\)), angular momentum (\(\vec L=\vec r\times\vec p\)) and the magnetic force (\(\vec F=q\vec v\times\vec B\)) all use cross products. The shortcut: if the physical quantity has a direction of its own, you need a cross product.
Why is the dot product zero for perpendicular vectors but the cross product zero for parallel vectors?
The dot product carries \(\cos\theta\), and \(\cos 90^\circ=0\), so it vanishes when the vectors are perpendicular and is maximum when they are parallel. The cross product carries \(\sin\theta\), and \(\sin 0^\circ=0\), so it vanishes when the vectors are parallel and is maximum when they are perpendicular. The two products are complementary: one peaks exactly where the other dies.
Is the cross product commutative?
No. The cross product is anti-commutative: \(\vec A\times\vec B = -(\vec B\times\vec A)\). Swapping the order reverses the direction of the result while keeping the magnitude. This is why torque is written \(\vec\tau=\vec r\times\vec F\) and never \(\vec F\times\vec r\) — the order fixes the sense of rotation. The dot product, by contrast, is commutative: \(\vec A\cdot\vec B = \vec B\cdot\vec A\).
How do I find the angle between two vectors?
Use the dot product. Rearranging \(\vec A\cdot\vec B = AB\cos\theta\) gives \(\cos\theta = (\vec A\cdot\vec B)/(AB)\), where \(\vec A\cdot\vec B\) is computed from components as \(A_xB_x+A_yB_y+A_zB_z\) and \(A,B\) are the magnitudes. Take the inverse cosine. If \(\vec A\cdot\vec B=0\) the vectors are perpendicular; if \(\vec A\cdot\vec B=AB\) they are parallel.
What is the geometric meaning of the dot product?
\(\vec A\cdot\vec B\) equals the magnitude of \(\vec A\) times the projection (the "shadow") of \(\vec B\) onto \(\vec A\): \(\vec A\cdot\vec B = A(B\cos\theta)\). It measures how much of one vector lies along the other. This is exactly why work \(W=\vec F\cdot\vec d\) picks out only the component of force along the displacement — the perpendicular component does no work.
What does the magnitude of the cross product represent?
\(|\vec A\times\vec B| = AB\sin\theta\) equals the area of the parallelogram whose two adjacent sides are \(\vec A\) and \(\vec B\). Half of that is the area of the triangle formed by the two vectors. This area interpretation is the quickest way to compute the area of a parallelogram or triangle from vector coordinates in NEET problems.
How does the right-hand rule fix the direction of A×B?
Point the fingers of your right hand along \(\vec A\), then curl them toward \(\vec B\) through the smaller angle; your outstretched thumb points along \(\vec A\times\vec B\). The result is perpendicular to the plane containing \(\vec A\) and \(\vec B\). Reversing the curl (going from \(\vec B\) to \(\vec A\)) flips the thumb, which is the geometric statement of anti-commutativity.
Quick recap

Both products in one breath

  • Dot product \(\vec A\cdot\vec B = AB\cos\theta\) → scalar; commutative; zero when perpendicular, maximum when parallel.
  • Cross product \(\vec A\times\vec B = AB\sin\theta\,\hat n\) → vector ⊥ to both; anti-commutative; zero when parallel, maximum when perpendicular.
  • Components: \(\vec A\cdot\vec B = A_xB_x+A_yB_y+A_zB_z\); \(\vec A\times\vec B\) is the \(\hat i\,\hat j\,\hat k\) determinant (middle term carries a minus).
  • Unit vectors: \(\hat i\cdot\hat i=1,\ \hat i\cdot\hat j=0\); \(\hat i\times\hat j=\hat k\) and cyclically.
  • Geometry: dot = projection \(A(B\cos\theta)\); \(|\)cross\(|\) = parallelogram area \(AB\sin\theta\).
  • Physics: dot → work \(\vec F\cdot\vec d\), power \(\vec F\cdot\vec v\); cross → torque \(\vec r\times\vec F\), angular momentum \(\vec r\times\vec p\).
  • Decide before you compute: scalar answer → dot; directed answer → cross.