Students assume matrix operations work like ordinary number operations. They try to divide matrices, expect multiplication to be commutative, and add matrices of different orders. These assumptions from regular algebra do not transfer to matrix algebra and produce consistent, avoidable errors.
The Core Problem: Matrix Algebra Is Not Ordinary Algebra
In ordinary algebra, ab = ba always. In matrix algebra, AB ≠ BA in general.
In ordinary algebra, if ab = 0, then a = 0 or b = 0. In matrix algebra, it is possible for AB = O (the zero matrix) even when neither A nor B is the zero matrix.
Students carry these basic arithmetic intuitions into matrix problems and arrive at wrong conclusions. Matrix algebra has its own rules, and they must be learnt explicitly rather than inferred from arithmetic.
Mistake 1: Attempting Multiplication When the Order Is Incompatible
Matrix multiplication AB is only defined when the number of columns in A equals the number of rows in B.
If A is a 2×3 matrix and B is a 2×3 matrix, then AB is not defined. But BA is also not defined in this case. Students attempt the multiplication anyway and try to force a result.
Always check compatibility before multiplying. If A is m×n and B is n×p, then AB is an m×p matrix. This should be verified before any calculation begins.
Why the Transpose Causes Errors in Property Application
Students know that the transpose of a matrix is obtained by swapping rows and columns. They forget the properties of transpose when combined with operations.
(AB)ᵀ = BᵀAᵀ, not AᵀBᵀ.
Students reverse the order of the matrices when they should not, or fail to reverse the order when they should. Similarly, (A + B)ᵀ = Aᵀ + Bᵀ, which is the same order, so students generalise this incorrectly to multiplication.
The rule is: transpose of a product reverses the order. Transpose of a sum does not.
Mistake 2: Errors in Identifying Symmetric and Skew-Symmetric Matrices
A symmetric matrix satisfies A = Aᵀ. A skew-symmetric matrix satisfies A = −Aᵀ, which means each element satisfies aᵢⱼ = −aⱼᵢ.
Students confuse the two. For skew-symmetric matrices, the diagonal elements must all be zero, because aᵢᵢ = −aᵢᵢ implies aᵢᵢ = 0. Students miss this and write non-zero diagonal elements in supposed skew-symmetric matrices.
The standard result that every square matrix can be expressed as the sum of a symmetric and a skew-symmetric matrix is a common board question. Students who do not understand the definitions cannot construct either component.
The Inverse Matrix: Where Most Calculation Errors Occur
Students know the formula A⁻¹ = adj(A) / |A| but make errors in calculating the adjugate.
The adjugate (or adjoint) is the transpose of the cofactor matrix. Students often forget to transpose after computing cofactors, giving them the cofactor matrix instead of the adjugate and producing an incorrect inverse.
Another common error: students forget to check whether |A| ≠ 0 before attempting to find the inverse. If the determinant is zero, the inverse does not exist and the matrix is singular. Using the division formula without this check produces meaningless results.
Mistake 3: Using the Wrong Method to Solve Matrix Equations
When asked to solve AX = B for X, students sometimes multiply both sides by A⁻¹ on the right.
AX = B X = A⁻¹B
This is correct: multiply by A⁻¹ on the left. If instead you write X = BA⁻¹, this would be the solution to XA = B, not AX = B. Since matrix multiplication is not commutative, these are different equations with different solutions.
Students who treat matrix equations like scalar equations get this wrong systematically.
Why Elementary Row Transformations Create Confusion
Students use row operations to reduce matrices to row echelon form but apply operations incorrectly.
The allowed operations are: swap two rows, multiply a row by a non-zero scalar, and add a multiple of one row to another. Students sometimes multiply two different rows by the same scalar as a single operation, which is not a valid elementary row operation.
When finding the inverse of a matrix using row reduction, students must apply identical operations to the augmented identity matrix on the right. A common error is to apply the row operations only to the original matrix and forget to update the identity portion, giving a nonsensical result.
Start practising Maths MCQs here to master these concepts and permanently fix these mistakes.