Wrong order in cross product
Very CommonSIGN ERROR
The cross product is anti-commutative: a×b=−(b×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 when the problem requires a×b, getting the opposite direction. RIGHT: Always maintain the given order. If you need to swap, introduce a negative sign: b×a=−(a×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^ is 2i^+3j^+6k^ (not divided by 7). RIGHT: Unit vector =∣a∣a=72i^+3j^+6k^. Always compute ∣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 ∣a∣∣b∣sinθ for a dot product calculation, or trying to compute a cross product as a scalar. RIGHT: Dot product: a⋅b=∣a∣∣b∣cosθ (scalar). Cross product: ∣a×b∣=∣a∣∣b∣sinθ (vector). See pattern: Angle Between Vectors (Dot Product) →Forgetting magnitude in projection formula
CommonFORMULA
The projection of a on b requires dividing by ∣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 on b =a⋅b (missing the denominator). RIGHT: Projection =∣b∣a⋅b. For vector projection, divide by ∣b∣2 and multiply by b. See pattern: Projection & Component →Assuming cross product is commutative
CommonCASE MISS
Unlike the dot product, the cross product does not commute. a×b=b×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 and b×a as interchangeable in equations. RIGHT: Cross product is anti-commutative: a×b=−(b×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] and treating it as equal to [a b c]. RIGHT: Swapping two vectors flips the sign: [b a c]=−[a b c]. Cyclic permutations keep the sign: [a b c]=[b c a]. See pattern: Volume Using Scalar Triple Product →