Chapter 3 at a Glance

The objects

A matrix is an ordered rectangular array of numbers or functions. A matrix with mm rows and nn columns has order m×nm \times n and mnmn entries; the entry in row ii, column jj is written aija_{ij}.

Matrix addressing scheme with highlighted row, column, entry; six type cards

Type Definition
Row matrix order 1×n1 \times n
Column matrix order m×1m \times 1
Square matrix m=nm = n
Diagonal matrix square, aij=0a_{ij} = 0 for iji \neq j
Scalar matrix diagonal with all diagonal entries equal (kIkI)
Identity matrix II diagonal with all diagonal entries 11
Zero matrix OO every entry 00

Equality: A=BA = B requires the same order and aij=bija_{ij} = b_{ij} for every position.

The operations

Addition (same order only): entrywise; commutative and associative, with A+O=AA + O = A and A+(A)=OA + (-A) = O.

Scalar multiple: kA=[kaij]kA = [k a_{ij}], with k(A+B)=kA+kBk(A+B) = kA + kB and (k+l)A=kA+lA(k + l)A = kA + lA.

Multiplication (AA is m×nm \times n, BB is n×pn \times p, product m×pm \times p): row-by-column, cik=j=1naijbjkc_{ik} = \sum_{j=1}^{n} a_{ij} b_{jk}.

Row-by-column multiplication mechanic and conformability rule with two surprises

Multiplication is associative and distributes over addition, and AI=IA=AAI = IA = A — but two familiar rules break:

  1. ABBAAB \neq BA in general — order matters.
  2. AB=OAB = O does not force A=OA = O or B=OB = O — nonzero zero divisors exist, so you cannot cancel a matrix factor.

Transpose, symmetric, skew-symmetric

AA' (or ATA^T) swaps rows with columns: if AA is m×nm \times n then AA' is n×mn \times m.

(A)=A,(kA)=kA,(A+B)=A+B,(AB)=BA(A')' = A, \qquad (kA)' = kA', \qquad (A + B)' = A' + B', \qquad (AB)' = B'A'

The reversal in the last law is the one students forget — it mirrors (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}.

Symmetric: A=AA' = A. Skew-symmetric: A=AA' = -A (forcing every diagonal entry to be 00). Every square matrix splits uniquely as

A=12(A+A)symmetric+12(AA)skew-symmetricA = \underbrace{\tfrac{1}{2}(A + A')}_{\text{symmetric}} + \underbrace{\tfrac{1}{2}(A - A')}_{\text{skew-symmetric}}

Invertible matrices

If AA and BB are square matrices of the same order with AB=BA=IAB = BA = I, then B=A1B = A^{-1} (and A=B1A = B^{-1}). The inverse, when it exists, is unique — proof in one line: B=BI=B(AC)=(BA)C=IC=CB = BI = B(AC) = (BA)C = IC = C.

JEE favourite: a polynomial identity like A22A3I=OA^2 - 2A - 3I = O rearranges to A13(A2I)=IA \cdot \frac{1}{3}(A - 2I) = I, handing over A1A^{-1} with no formula.

Mistake checklist

Before the exam, make sure none of these can catch you:

  1. Writing ABAB for BABA — always check which side a multiplication acts on; expanding (A+B)2(A+B)^2 as A2+2AB+B2A^2 + 2AB + B^2 silently assumes AB=BAAB = BA.
  2. Cancelling matrices — from AB=ACAB = AC you may not conclude B=CB = C unless AA is invertible.
  3. Forgetting the reversal laws(AB)=BA(AB)' = B'A' and (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}, both reversed.
  4. Adding matrices of different orders — undefined, even if it "looks close".
  5. Counting orders — a matrix with 1212 entries has 66 possible orders (ordered pairs!), and a 3×33 \times 3 matrix with entries from {0,1}\{0, 1\} can be built in 29=5122^9 = 512 ways.
  6. Diagonal of a skew-symmetric matrix — always all zeros; its entries sum to 00.
  7. Huge exponents — never multiply out A2023A^{2023}; hunt for A2=IA^2 = I, A2=AA^2 = A, A2=kAA^2 = kA or Ak=OA^k = O first.

The 15 questions below are a fast pass over the whole chapter — everything at recall level. If any of them feels shaky, the section named in its explanation is where to go back.