RankLab
Back to Concepts
MathsMediumClass 12

Matrix Operations — Addition, multiplication

Matrices

6

JEE Qs

8%

Hard

75

min

Precisely practice matrix multiplication with different orders, focus on the row-by-column method, and internalize its non-commutative nature to avoid common conceptual and calculation errors.

🧮 Key Formulas

(A + B)_ij = a_ij + b_ij (for matrices A, B of same order m x n)
(kA)_ij = k * a_ij (for scalar k and matrix A)
(AB)_ik = sum(j=1 to n, a_ij * b_jk) (for A of order m x n and B of order n x p, resulting AB of order m x p)

✅ Key Points for JEE

  • 1Matrix addition and subtraction are defined only for matrices of the same order, and are performed element-wise.
  • 2Matrix multiplication (AB) is defined only if the number of columns in A equals the number of rows in B. The resulting matrix AB has the number of rows of A and the number of columns of B (m x n multiplied by n x p gives m x p).
  • 3Matrix multiplication is generally NOT commutative (AB ≠ BA). Always check if both products are even defined and if their orders are compatible.
  • 4Matrix multiplication is associative: (AB)C = A(BC). It is also distributive over addition: A(B+C) = AB + AC and (A+B)C = AC + BC.
  • 5The product of two non-zero matrices can be a zero matrix (unlike real numbers).

⚠️ Common Mistakes

  • Multiplying matrices whose orders are incompatible for multiplication, or incorrectly determining the order of the resulting product matrix.
  • Assuming that matrix multiplication is commutative (i.e., AB = BA), which is false in general and can lead to incorrect results.
  • Errors in calculating elements during matrix multiplication by failing to consistently use the row-by-column method (i.e., dot product of the i-th row of the first matrix with the j-th column of the second matrix for (AB)_ij).
  • Confusing scalar multiplication with matrix multiplication or attempting element-wise multiplication for two matrices (which is not standard matrix multiplication).

NCERT Chapters

  • Class 12 Maths Ch 3: Matrices