Question
Prove that for any square matrix A of order n:
A⋅adj(A)=∣A∣⋅I
where adj(A) is the adjoint (classical adjoint) of A and I is the identity matrix of order n.
Solution — Step by Step
Let A=[aij] be an n×n matrix. The adjoint adj(A) is the transpose of the cofactor matrix, so [adj(A)]ij=Cji, where Cji is the cofactor of the element aji in A.
The (i,k) entry of the product A⋅adj(A) is:
[A⋅adj(A)]ik=j=1∑naij⋅[adj(A)]jk=j=1∑naij⋅Ckj
When i=k, we get ∑j=1naijCij — this is precisely the cofactor expansion of ∣A∣ along row i.
[A⋅adj(A)]ii=j=1∑naijCij=∣A∣
Every diagonal entry equals ∣A∣. This is just the definition of the determinant via row expansion.
When i=k, we’re computing ∑j=1naijCkj. This is the expansion of a determinant where row k has been replaced by row i — giving a matrix with two identical rows.
A matrix with two identical rows has determinant zero. So:
[A⋅adj(A)]ik=0for i=k
Combining steps 2 and 3:
[A⋅adj(A)]ik={∣A∣0if i=kif i=k
This is exactly the matrix ∣A∣⋅I. Therefore:
A⋅adj(A)=∣A∣⋅I
Why This Works
The magic is in step 3 — the “alien cofactor” trick. When we sum aijCkj with i=k, we are asking: what would the determinant be if row k were replaced by row i? Since row i already exists in the matrix, we’d have a repeat row. And any matrix with two identical rows has ∣A∣=0 — you can see this because swapping those two rows changes the sign of the determinant but leaves the matrix unchanged.
This identity is not just a proof exercise. When ∣A∣=0, dividing both sides by ∣A∣ gives A⋅∣A∣adj(A)=I, which means A−1=∣A∣adj(A). So the entire theory of matrix inverses via cofactors rests on this one identity.
For ∣A∣=0 (singular matrix), the identity still holds — it just tells us A⋅adj(A)=0, which is consistent since A has no inverse.
Alternative Method
For a 2×2 matrix, we can verify directly — and the pattern makes the general proof more intuitive.
Let A=(acbd). Then adj(A)=(d−c−ba).
Compute the product:
A⋅adj(A)=(acbd)(d−c−ba)=(ad−bc00ad−bc)=(ad−bc)I=∣A∣⋅I
This direct computation for 2×2 is worth memorising — it’s cleaner in MCQ-style questions where the general proof isn’t needed.
Common Mistake
Most students prove A⋅adj(A)=∣A∣⋅I and forget to also state (or prove) that adj(A)⋅A=∣A∣⋅I. JEE Advanced and CBSE both sometimes ask for the full identity: A⋅adj(A)=adj(A)⋅A=∣A∣⋅I. The proof for adj(A)⋅A is identical in structure — just use cofactor expansion along columns instead of rows. Don’t lose marks by proving only one side.
In JEE Main MCQs, this identity often appears as: “If A is a 3×3 matrix with ∣A∣=5, find ∣A⋅adj(A)∣.” Direct answer: ∣A⋅adj(A)∣=∣∣A∣⋅I∣=∣5I∣=53=125. No need to compute adj(A) explicitly.