Math · Algebra

Matrices revision notes

A concise JEE revision summary of Matrices.

FormulasRevision notes
Mathrevision notes

Key Concepts & Definitions

Matrices are one of the most powerful tools in mathematics, originally evolved to obtain compact and simple methods of solving systems of linear equations. They are heavily utilized in transformations, genetics, cryptography, and economics.

1. Matrix and Elements A matrix is an ordered rectangular array of numbers or functions. The numbers or functions are called the elements or entries of the matrix.

Representation
Any point (x,y)(x, y)(x,y) in a plane can be represented by a column or row matrix. Vertices of closed rectilinear figures (like quadrilaterals) can also be formulated as matrices.
Order of a matrix
A matrix having mmm rows and nnn columns is of order m×nm \times nm×n (read as "mmm by nnn"). Total number of elements = mnmnmn.
General Form
A=[aij]m×nA = [a_{ij}]_{m \times n}A=[aij​]m×n​, where 1≤i≤m1 \le i \le m1≤i≤m, 1≤j≤n1 \le j \le n1≤j≤n, and i,j∈Ni, j \in \mathbb{N}i,j∈N. The element aija_{ij}aij​ lies in the ithi^{th}ith row and jthj^{th}jth column.

2. Types of Matrices

  • Column Matrix: A matrix with exactly one column. Order: m×1m \times 1.
  • Row Matrix: A matrix with exactly one row. Order: 1×n1 \times n.
  • Square Matrix: A matrix where the number of rows equals the number of columns (m=nm = n). Order is simply denoted as nn.
    • Diagonal Elements: For a square matrix A=[aij]n×nA = [a_{ij}]_{n \times n}, the elements a11,a22,,anna_{11}, a_{22}, \dots, a_{nn} constitute the principal diagonal.
  • Diagonal Matrix: A square matrix where all non-diagonal elements are zero (bij=0b_{ij} = 0 when iji \neq j).
  • Scalar Matrix: A diagonal matrix where all diagonal elements are equal (bij=0b_{ij} = 0 for iji \neq j; bij=kb_{ij} = k for i=ji = j).
  • Identity (Unit) Matrix: A scalar matrix where all diagonal elements are 11. Denoted by InI_n or simply II. (aij=1a_{ij} = 1 if i=ji = j, 00 if iji \neq j).
  • Zero / Null Matrix: A matrix (of any order) where all elements are zero. Denoted by OO.
  • Triangular Matrices:JEE TIP
    • Upper Triangular: Square matrix where all elements below the principal diagonal are zero (aij=0a_{ij} = 0 for i>ji > j).
    • Lower Triangular: Square matrix where all elements above the principal diagonal are zero (aij=0a_{ij} = 0 for i<ji < j).

3. Equality of Matrices Two matrices A=[aij]A = [a_{ij}] and B=[bij]B = [b_{ij}] are equal (A=BA = B) if and only if:

  1. They have the same order.
  2. Each corresponding element is equal (aij=bija_{ij} = b_{ij} for all i,ji, j).

4. Operations on Matrices

  • Addition: Defined ONLY for matrices of the same order. C=A+B    cij=aij+bijC = A + B \implies c_{ij} = a_{ij} + b_{ij}.
  • Multiplication by a Scalar: Multiplying matrix AA by scalar kk multiplies every element of AA by kk. kA=[kaij]kA = [ka_{ij}].
  • Negative of a Matrix: Denoted by A=(1)A-A = (-1)A.
  • Difference: AB=A+(1)BA - B = A + (-1)B.
  • Multiplication of Matrices: The product ABAB is defined ONLY if the number of columns of AA equals the number of rows of BB.
    • If AA is m×nm \times n and BB is n×pn \times p, then C=ABC = AB is of order m×pm \times p.
    • JEE TIPMatrix multiplication is a row-by-column operation. The (i,k)th(i, k)^{th} element of CC is the sum of the products of corresponding elements of the ithi^{th} row of AA and the kthk^{th} column of BB.

5. Transpose of a Matrix (AA' or ATA^T) The matrix obtained by interchanging the rows and columns of AA. If A=[aij]m×nA = [a_{ij}]_{m \times n}, then A=[aji]n×mA' = [a_{ji}]_{n \times m}.

6. Symmetric and Skew-Symmetric Matrices

  • Symmetric Matrix: A square matrix where A=AA' = A (i.e., aij=ajia_{ij} = a_{ji}).
  • Skew-Symmetric Matrix: A square matrix where A=AA' = -A (i.e., aij=ajia_{ij} = -a_{ji}).JEE TIPPutting i=ji=j yields aii=aii    2aii=0    aii=0a_{ii} = -a_{ii} \implies 2a_{ii} = 0 \implies a_{ii} = 0. Thus, all diagonal elements of a skew-symmetric matrix are strictly zero.
  • Orthogonal Matrix:JEE TIPA square matrix AA is orthogonal if AA=AA=IA A' = A' A = I.

7. Invertible Matrices If AA is a square matrix of order mm, and there exists another square matrix BB of the same order such that AB=BA=IAB = BA = I, then BB is the inverse of AA (A1A^{-1}).

  • Rectangular matrices cannot possess an inverse because products ABAB and BABA wouldn't be of the same order.
  • Inverse of a square matrix, if it exists, is unique.

8. Trace of a Matrix (Tr(A)) [JEE TIP] The sum of the principal diagonal elements of a square matrix. Tr(A)=i=1naii\text{Tr}(A) = \sum_{i=1}^{n} a_{ii}.

Formulae, Equations & Units

Property / OperationFormula / Mathematical DefinitionVariables
Matrix Multiplication Elementcik=j=1naijbjkc_{ik} = \sum_{j=1}^{n} a_{ij}b_{jk}cikc_{ik}: element of product matrix CC; aij,bjka_{ij}, b_{jk}: elements of A,BA, B
Addition PropertiesA+B=B+AA + B = B + A (Commutative)<br>(A+B)+C=A+(B+C)(A + B) + C = A + (B + C) (Associative)<br>A+O=AA + O = A (Additive Identity)<br>A+(A)=OA + (-A) = O (Additive Inverse)A,B,CA, B, C: Matrices of same order m×nm \times n; OO: Zero matrix
Scalar Mult. Propertiesk(A+B)=kA+kBk(A + B) = kA + kB<br>(k+l)A=kA+lA(k + l)A = kA + lAk,lk, l: Scalars (Real/Complex numbers)
Matrix Mult. PropertiesA(BC)=(AB)CA(BC) = (AB)C (Associative)<br>A(B+C)=AB+ACA(B + C) = AB + AC (Distributive)<br>IA=AI=AIA = AI = A (Multiplicative Identity)Matrix multiplication must be defined for the respective orders
Transpose Properties(A)=A(A')' = A<br>(kA)=kA(kA)' = kA'<br>(A+B)=A+B(A + B)' = A' + B'<br>(AB)=BA(AB)' = B'A' (Reversal Law)A,BA, B: Matrices of suitable order; kk: Scalar
Matrix Splitting TheoremA=12(A+A)+12(AA)A = \frac{1}{2}(A + A') + \frac{1}{2}(A - A')12(A+A)\frac{1}{2}(A+A') is symmetric; 12(AA)\frac{1}{2}(A-A') is skew-symmetric
Inverse Reversal Law(AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}A,BA, B: Invertible square matrices of the same order
Trace Properties [JEE TIP]Tr(A+B)=Tr(A)+Tr(B)\text{Tr}(A+B) = \text{Tr}(A) + \text{Tr}(B)<br>Tr(kA)=kTr(A)\text{Tr}(kA) = k \cdot \text{Tr}(A)<br>Tr(AB)=Tr(BA)\text{Tr}(AB) = \text{Tr}(BA)A,BA, B: Square matrices

Units & Dimensions: Matrices themselves are dimensionless operators/arrays, but the elements within them carry the units of the physical quantities they represent (e.g., Cost in Rupees, Quantities in units).

Conditions & Limitations

  1. Matrix Addition/Subtraction: Strictly requires both matrices to have the exact same dimensions (m×nm \times n). Undefined otherwise.
  2. Matrix Multiplication: ABAB is ONLY valid if columns of AA = rows of BB. If AA is m×nm \times n and BB is k×lk \times l, nn must equal kk.
  3. Commutativity of Multiplication: ABBAAB \neq BA in general. Even if ABAB and BABA are both defined and of the same order, they are rarely equal. They only commute under specific conditions (e.g., diagonal matrices of the same order commute).
  4. Invertibility: Only square matrices can be invertible. A square matrix AA is invertible if and only if its determinant is non-zero (A0|A| \neq 0).

⚠️ COMMON MISCONCEPTIONS & SIGN CONVENTIONS

  • Zero Product Fallacy: For real numbers, ab=0    a=0ab=0 \implies a=0 or b=0b=0. For matrices, AB=OAB=O DOES NOT mean A=OA=O or B=OB=O. The product of two non-zero matrices can be a zero matrix.
    • Example: A=[0102]A = \begin{bmatrix} 0 & -1 \\ 0 & 2 \end{bmatrix} and B=[3500]    AB=[0000]B = \begin{bmatrix} 3 & 5 \\ 0 & 0 \end{bmatrix} \implies AB = \begin{bmatrix} 0 & 0 \\ 0 & 0 \end{bmatrix}.
  • Cancellation Law Failure: If AB=ACAB = AC, you cannot universally cancel AA to conclude B=CB = C. This is only valid if AA is a non-singular square matrix (invertible).
  • Algebraic Expansions: (A+B)2A2+2AB+B2(A+B)^2 \neq A^2 + 2AB + B^2. Because matrix multiplication is non-commutative, (A+B)2=A2+AB+BA+B2(A+B)^2 = A^2 + AB + BA + B^2. It only collapses to the standard algebraic formula if AA and BB commute (AB=BAAB=BA).
  • Transpose and Inverse Sequence: Always remember the Reversal Law. The transpose or inverse of a product reverses the order of the matrices: (ABC)=CBA(ABC)' = C'B'A' and (ABC)1=C1B1A1(ABC)^{-1} = C^{-1}B^{-1}A^{-1}.

Standard Derivations & Step-by-Step Problem Solving

1. Splitting a Square Matrix into Symmetric and Skew-Symmetric Parts

  • Objective: Express square matrix AA as P+QP + Q where P=PP' = P and Q=QQ' = -Q.
  • Step 1: Calculate AA'.
  • Step 2: Let P=12(A+A)P = \frac{1}{2}(A + A'). Show P=[12(A+A)]=12(A+(A))=12(A+A)=PP' = [\frac{1}{2}(A + A')]' = \frac{1}{2}(A' + (A')') = \frac{1}{2}(A' + A) = P. Thus, PP is symmetric.
  • Step 3: Let Q=12(AA)Q = \frac{1}{2}(A - A'). Show Q=[12(AA)]=12(A(A))=12(AA)=QQ' = [\frac{1}{2}(A - A')]' = \frac{1}{2}(A' - (A')') = \frac{1}{2}(A' - A) = -Q. Thus, QQ is skew-symmetric.
  • Step 4: Verify P+Q=12A+12A+12A12A=AP + Q = \frac{1}{2}A + \frac{1}{2}A' + \frac{1}{2}A - \frac{1}{2}A' = A.

2. Proof of Reversal Law of Inverse: (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}

  • By definition of inverse: (AB)(AB)1=I(AB)(AB)^{-1} = I
  • Pre-multiply by A1A^{-1}: A1(AB)(AB)1=A1I    (A1A)B(AB)1=A1A^{-1}(AB)(AB)^{-1} = A^{-1}I \implies (A^{-1}A)B(AB)^{-1} = A^{-1}
  • Simplify: IB(AB)1=A1    B(AB)1=A1IB(AB)^{-1} = A^{-1} \implies B(AB)^{-1} = A^{-1}
  • Pre-multiply by B1B^{-1}: B1B(AB)1=B1A1    I(AB)1=B1A1B^{-1}B(AB)^{-1} = B^{-1}A^{-1} \implies I(AB)^{-1} = B^{-1}A^{-1}
  • Result: (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}.

3. Using Principle of Mathematical Induction (PMI) for AnA^n [JEE TIP] When asked to find AnA^n or prove a formula for AnA^n:

  • Step 1: Base case - prove the proposition P(1)P(1) is true.
  • Step 2: Assumption - assume P(k)P(k) is true for some positive integer kk.
  • Step 3: Inductive step - multiply P(k)P(k) by AA to find Ak+1A^{k+1}. Prove that the resulting matrix matches the pattern for P(k+1)P(k+1).
  • Standard Result: If A=[cosθsinθsinθcosθ]A = \begin{bmatrix} \cos\theta & \sin\theta \\ -\sin\theta & \cos\theta \end{bmatrix}, then An=[cosnθsinnθsinnθcosnθ]A^n = \begin{bmatrix} \cos n\theta & \sin n\theta \\ -\sin n\theta & \cos n\theta \end{bmatrix} for all nNn \in \mathbb{N}.

Previous Year JEE Topics

  1. Higher Powers of Matrices (AnA^n): Often solved using PMI, detecting periodic sequences (A,A2,A3A, A^2, A^3 \dots returning to II), or using the Binomial Theorem.JEE TIPIf A=I+BA = I + B where BB is a nilpotent matrix (e.g., B2=OB^2 = O), then An=(I+B)n=In+nIn1B+n(n1)2In2B2=I+nBA^n = (I + B)^n = I^n + nI^{n-1}B + \frac{n(n-1)}{2}I^{n-2}B^2 \dots = I + nB.
  2. Symmetric / Skew-Symmetric Combinations:
    • If AA and BB are symmetric, AB+BAAB + BA is symmetric, but ABBAAB - BA is skew-symmetric.
    • BABB'AB matches the symmetry/skew-symmetry of AA.
  3. Determinant of Skew-Symmetric Matrices:JEE TIPThe determinant of a skew-symmetric matrix of odd order is ALWAYS zero.
  4. Idempotent & Involutory Matrices:
    • Idempotent: A2=AA^2 = A. (e.g., (IA)2=IAA+A2=I2A+A=IA(I-A)^2 = I - A - A + A^2 = I - 2A + A = I - A).
    • Involutory: A2=IA^2 = I.
  5. Polynomial Matrix Equations: E.g., proving A36A2+7A+2I=OA^3 - 6A^2 + 7A + 2I = O. Often leads directly to finding A1A^{-1} by multiplying the equation by A1A^{-1}.

Memory Aids & JEE Traps

  • Trap 1 - The Commutativity Algebraic Fallacy:

    • Misconception: Expanding a matrix binomial expression like (A+B)(AB)(A+B)(A-B) instantly yields the standard scalar identity A2B2A^2 - B^2.
    • Correct Understanding: Matrix multiplication is strictly non-commutative (ABBA\mathbf{AB \neq BA}) in general. Distributing the binomial yields (A+B)(AB)=A2AB+BAB2(A+B)(A-B) = A^2 - AB + BA - B^2. Unless the problem explicitly states that matrices AA and BB commute, the middle cross-product terms cannot be canceled out.
  • Trap 2 - Linear Product Transpose Order:

    • Misconception: Evaluating the transpose of a multi-matrix product expands linearly without changing positions, such as (ABC)T=ATBTCT(ABC)^T = A^T B^T C^T.
    • Correct Understanding: The reversal law of transposes mandates that the product order must be completely reversed upon distribution: (ABC)T=CTBTAT(ABC)^T = C^T B^T A^T. Applying this property without inverting the sequence creates completely non-conformable dimensions or invalid matrix products.
  • Trap 3 - Skew-Symmetric Diagonal Non-Zero Elements:

    • Misconception: A matrix is classified as skew-symmetric as long as its off-diagonal elements satisfy aij=ajia_{ij} = -a_{ji}, leaving the diagonal elements free to take any value.
    • Correct Understanding: By definition, a skew-symmetric matrix satisfies AT=AA^T = -A, which forces the elements along the main diagonal to satisfy aii=aii    2aii=0    aii=0a_{ii} = -a_{ii} \implies 2a_{ii} = 0 \implies \mathbf{a_{ii} = 0}. The principal diagonal of a real skew-symmetric matrix must consist entirely of zeros.
  • Trap 4 - The Identity Matrix Power Expansion:

    • Misconception: Computing high-degree powers of the identity matrix scales its inner elements up or expands the matrix size linearly (In=nII^n = nI).
    • Correct Understanding: The identity matrix acts as the multiplicative identity element, meaning In=II^n = I remains true for any integer power nn, and AI=IA=AAI = IA = A. While you can treat it like the scalar number 11 inside matrix polynomial expansions, you must still strictly preserve matrix dimension conformability and multiplication sequence constraints.
  • Trap 5 - Zero Matrix Product Cancellation:

    • Misconception: If the square of a matrix or the product of two matrices results in a null matrix (X2=OX^2 = O), then the matrix XX itself must be a null matrix (X=OX = O).
    • Correct Understanding: Matrix algebra allows for non-zero divisors of zero, known as nilpotent matrices. For example, the non-zero matrix X=[0100]X = \begin{bmatrix} 0 & 1 \\ 0 & 0 \end{bmatrix} yields a perfect null matrix product X2=[0000]=OX^2 = \begin{bmatrix} 0 & 0 \\ 0 & 0 \end{bmatrix} = O even though XOX \neq O.
  • Trap 6 - Multiplicative Trace Splitting:

    • Misconception: The matrix trace operator splits across multiplication identically to addition, satisfying Tr(AB)=Tr(A)×Tr(B)\text{Tr}(AB) = \text{Tr}(A) \times \text{Tr}(B).
    • Correct Understanding: The trace operator is linear over matrix addition (Tr(A+B)=Tr(A)+Tr(B)\text{Tr}(A+B) = \text{Tr}(A) + \text{Tr}(B)) but completely non-linear over multiplication. However, it satisfies the critical cyclic permutation invariance property: Tr(ABC)=Tr(BCA)=Tr(CAB)\text{Tr}(ABC) = \text{Tr}(BCA) = \text{Tr}(CAB). Note that general non-cyclic permutations are not equal (Tr(ABC)Tr(BAC)\text{Tr}(ABC) \neq \text{Tr}(BAC)).
  • Trap 7 - Determinant Scalar Pull-Out Scaling:

    • Misconception: Pulling a scalar constant multiplier kk out of a determinant operation changes its value linearly, satisfying kA=kA|kA| = k|A|.
    • Correct Understanding: A determinant factor scales row by row. If a square matrix AA has dimensions of order n×nn \times n, pulling the scalar factor out of the entire matrix pulls it out of all nn rows simultaneously, yielding the relation: kA=knA|kA| = k^n|A|. Forgetting this power of nn factor is a major cause of numerical errors in JEE matrix problems.
  • Trap 8 - Symmetry Profile of Product Transposes:

    • Misconception: The product of a matrix and its transpose (AATAA^T) can yield a skew-symmetric matrix depending on the entries of AA.
    • Correct Understanding: The product forms AATAA^T and ATAA^T A are universally and unconditionally symmetric for any real matrix AA, regardless of whether AA itself is square, rectangular, symmetric, or asymmetric. This is verified by checking their transposes using the reversal law: (AAT)T=(AT)TAT=AAT(AA^T)^T = (A^T)^T A^T = \mathbf{AA^T}.
  • Trap 9 - Non-Invertible Matrix Cancellation:

    • Misconception: If two matrix products share a common leading matrix factor, you can cancel it directly from both sides: AB=AC    B=CAB = AC \implies B = C.
    • Correct Understanding: This cancellation operation is strictly valid if and only if matrix AA is non-singular (A0|A| \neq 0), meaning its inverse A1A^{-1} exists. If AA is a singular or non-square matrix, the product equation can balance perfectly even when BCB \neq C. You cannot divide or cancel matrices blindly.
  • Trap 10 - Entries Permutation Matrix Multiplicity:

    • Misconception: Finding the total number of unique 3×33 \times 3 matrices that can be formed using entries chosen strictly from the set {0,1}\{0, 1\} is evaluated by multiplying choices by positions (2×9=182 \times 9 = 18).
    • Correct Understanding: A 3×33 \times 3 matrix contains exactly 9 distinct entry positions. Because each individual position can be filled independently using any of the 2 available choices, evaluating the total configuration space requires applying the fundamental multiplication principle of combinations: Total Matrices=2×2××2=29=512\text{Total Matrices} = 2 \times 2 \times \dots \times 2 = 2^9 = \mathbf{512}.
Notes fade fast. Rhovecs re-surfaces each concept on a forgetting schedule and picks what you practise next — so revision sticks.See how it works
Other chapters

Rhovecs re-surfaces each concept right before you’d forget it — and picks the next thing to practise. We decide, you execute.

Get started