Skip to content

Matrices & Determinants

Linear Algebraic Viewpoint

A matrix represents a linear transformation between vector spaces. The determinant $\det(A)$ quantifies the oriented scaling factor of volume under this transformation. In competitive exams, mastery spans determinant row/column operations, adjoint-determinant identities, characteristic polynomials, and solvability of linear systems.


1. Properties of Determinants

  1. Transpose Invariance: det(AT)=det(A)
  2. Row/Column Interchange: Swapping two rows/columns flips the sign of det(A).
  3. Scalar Multiplication: det(kA)=kndet(A) for an n×n matrix A.
  4. Multiplicative Property: det(AB)=det(A)det(B)
  5. Elementary Operations: Adding a scalar multiple of one row to another preserves det(A).

2. Adjoint and Inverse of a Matrix

For an n×n invertible matrix A (det(A)0):

Aadj(A)=adj(A)A=det(A)InA1=1det(A)adj(A)

Critical Adjoint Identities

IdentityFormula
Determinant of Adjointdet(adj(A))=(det(A))n1
Adjoint of Adjointadj(adj(A))=(det(A))n2A
Determinant of Double Adjointdet(adj(adj(A)))=(det(A))(n1)2
Inverse of Transpose(AT)1=(A1)T
Reversal Law(AB)1=B1A1 and adj(AB)=adj(B)adj(A)

3. Cayley-Hamilton Theorem & Characteristic Polynomial

Cayley-Hamilton Theorem

Every square matrix $A$ satisfies its own characteristic equation: $$\det(\lambda I - A) = 0 \implies \lambda^n + c_{n-1} \lambda^{n-1} + \dots + c_0 = 0 \implies A^n + c_{n-1} A^{n-1} + \dots + c_0 I = 0$$

For a 2×2 matrix A=(abcd):

A2tr(A)A+det(A)I=0where tr(A)=a+d

4. System of Linear Equations (Solvability Criteria)

Consider AX=B with coefficient matrix A and augmented matrix [A|B]:

  1. Unique Solution: det(A)0 (Rank A = Rank [A|B] = n).
  2. Infinitely Many Solutions (Consistent): det(A)=0 AND (adj(A))B=0 (Rank A = Rank [A|B]<n).
  3. No Solution (Inconsistent): det(A)=0 AND (adj(A))B0 (Rank A<Rank [A|B]).