JEE MathsVectorsCommon Mistakes
Common Mistakes

Traps in Vectors

6 mistake patterns students fall for. 2 high-frequency traps appear in almost every exam.

Wrong order in cross product

Very CommonSIGN ERROR

The cross product is anti-commutative: a×b=(b×a)\vec{a} \times \vec{b} = -(\vec{b} \times \vec{a}). Reversing the order flips the sign.

Why: Students treat cross product like dot product (which is commutative) and ignore the order of operands.

WRONG: Computing b×a\vec{b} \times \vec{a} when the problem requires a×b\vec{a} \times \vec{b}, getting the opposite direction.
RIGHT: Always maintain the given order. If you need to swap, introduce a negative sign: b×a=(a×b)\vec{b} \times \vec{a} = -(\vec{a} \times \vec{b}).
See pattern: Area Using Cross Product

Not normalizing when finding unit vector

Very CommonFORMULA

A unit vector must have magnitude 1. Simply writing the vector without dividing by its magnitude is incomplete.

Why: Students find the direction correctly but skip the final step of dividing by the magnitude.

WRONG: Unit vector along a=2i^+3j^+6k^\vec{a} = 2\hat{i} + 3\hat{j} + 6\hat{k} is 2i^+3j^+6k^2\hat{i} + 3\hat{j} + 6\hat{k} (not divided by 7).
RIGHT: Unit vector =aa=2i^+3j^+6k^7= \frac{\vec{a}}{|\vec{a}|} = \frac{2\hat{i} + 3\hat{j} + 6\hat{k}}{7}. Always compute a|\vec{a}| first, then divide each component.
See pattern: Magnitude & Unit Vector

Confusing dot product with cross product

CommonFORMULA

The dot product gives a scalar, the cross product gives a vector. They use different formulas and have different geometric meanings.

Why: Both involve two vectors and the angle between them. Students mix up cos(theta) vs sin(theta) or scalar vs vector results.

WRONG: Using absinθ|\vec{a}||\vec{b}|\sin\theta for a dot product calculation, or trying to compute a cross product as a scalar.
RIGHT: Dot product: ab=abcosθ\vec{a} \cdot \vec{b} = |\vec{a}||\vec{b}|\cos\theta (scalar). Cross product: a×b=absinθ|\vec{a} \times \vec{b}| = |\vec{a}||\vec{b}|\sin\theta (vector).
See pattern: Angle Between Vectors (Dot Product)

Forgetting magnitude in projection formula

CommonFORMULA

The projection of a\vec{a} on b\vec{b} requires dividing by b|\vec{b}|, not just computing the dot product.

Why: Students remember a.b but forget to divide by the magnitude of the vector being projected onto.

WRONG: Projection of a\vec{a} on b\vec{b} =ab= \vec{a} \cdot \vec{b} (missing the denominator).
RIGHT: Projection =abb= \frac{\vec{a} \cdot \vec{b}}{|\vec{b}|}. For vector projection, divide by b2|\vec{b}|^2 and multiply by b\vec{b}.
See pattern: Projection & Component

Assuming cross product is commutative

CommonCASE MISS

Unlike the dot product, the cross product does not commute. a×bb×a\vec{a} \times \vec{b} \neq \vec{b} \times \vec{a}.

Why: Commutativity is a common property in arithmetic and even for the dot product, so students assume it holds for all vector operations.

WRONG: Treating a×b\vec{a} \times \vec{b} and b×a\vec{b} \times \vec{a} as interchangeable in equations.
RIGHT: Cross product is anti-commutative: a×b=(b×a)\vec{a} \times \vec{b} = -(\vec{b} \times \vec{a}). This matters for direction in torque, angular momentum, and normal vectors.
See pattern: Area Using Cross Product

Wrong sign in scalar triple product

OccasionalSIGN ERROR

Swapping two rows in the determinant changes the sign of the scalar triple product.

Why: Students rearrange vectors without tracking sign changes, or expand the determinant along the wrong row with incorrect cofactor signs.

WRONG: Computing [b a c][\vec{b}\ \vec{a}\ \vec{c}] and treating it as equal to [a b c][\vec{a}\ \vec{b}\ \vec{c}].
RIGHT: Swapping two vectors flips the sign: [b a c]=[a b c][\vec{b}\ \vec{a}\ \vec{c}] = -[\vec{a}\ \vec{b}\ \vec{c}]. Cyclic permutations keep the sign: [a b c]=[b c a][\vec{a}\ \vec{b}\ \vec{c}] = [\vec{b}\ \vec{c}\ \vec{a}].
See pattern: Volume Using Scalar Triple Product
Test yourself

Can you spot these traps under time pressure?

Take a timed quiz on Vectors and see if you avoid the mistakes above.