Prove that A(adj A) = |A|·I — Matrix Identity

hard CBSE JEE-MAIN JEE Advanced 2024 4 min read

Question

Prove that for any square matrix AA of order nn:

Aadj(A)=AIA \cdot \text{adj}(A) = |A| \cdot I

where adj(A)\text{adj}(A) is the adjoint (classical adjoint) of AA and II is the identity matrix of order nn.


Solution — Step by Step

Let A=[aij]A = [a_{ij}] be an n×nn \times n matrix. The adjoint adj(A)\text{adj}(A) is the transpose of the cofactor matrix, so [adj(A)]ij=Cji[\text{adj}(A)]_{ij} = C_{ji}, where CjiC_{ji} is the cofactor of the element ajia_{ji} in AA.

The (i,k)(i, k) entry of the product Aadj(A)A \cdot \text{adj}(A) is:

[Aadj(A)]ik=j=1naij[adj(A)]jk=j=1naijCkj[A \cdot \text{adj}(A)]_{ik} = \sum_{j=1}^{n} a_{ij} \cdot [\text{adj}(A)]_{jk} = \sum_{j=1}^{n} a_{ij} \cdot C_{kj}

When i=ki = k, we get j=1naijCij\sum_{j=1}^{n} a_{ij} C_{ij} — this is precisely the cofactor expansion of A|A| along row ii.

[Aadj(A)]ii=j=1naijCij=A[A \cdot \text{adj}(A)]_{ii} = \sum_{j=1}^{n} a_{ij} C_{ij} = |A|

Every diagonal entry equals A|A|. This is just the definition of the determinant via row expansion.

When iki \neq k, we’re computing j=1naijCkj\sum_{j=1}^{n} a_{ij} C_{kj}. This is the expansion of a determinant where row kk has been replaced by row ii — giving a matrix with two identical rows.

A matrix with two identical rows has determinant zero. So:

[Aadj(A)]ik=0for ik[A \cdot \text{adj}(A)]_{ik} = 0 \quad \text{for } i \neq k

Combining steps 2 and 3:

[Aadj(A)]ik={Aif i=k0if ik[A \cdot \text{adj}(A)]_{ik} = \begin{cases} |A| & \text{if } i = k \\ 0 & \text{if } i \neq k \end{cases}

This is exactly the matrix AI|A| \cdot I. Therefore:

Aadj(A)=AI\boxed{A \cdot \text{adj}(A) = |A| \cdot I}

Why This Works

The magic is in step 3 — the “alien cofactor” trick. When we sum aijCkja_{ij} C_{kj} with iki \neq k, we are asking: what would the determinant be if row kk were replaced by row ii? Since row ii already exists in the matrix, we’d have a repeat row. And any matrix with two identical rows has A=0|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 A0|A| \neq 0, dividing both sides by A|A| gives Aadj(A)A=IA \cdot \frac{\text{adj}(A)}{|A|} = I, which means A1=adj(A)AA^{-1} = \frac{\text{adj}(A)}{|A|}. So the entire theory of matrix inverses via cofactors rests on this one identity.

For A=0|A| = 0 (singular matrix), the identity still holds — it just tells us Aadj(A)=0A \cdot \text{adj}(A) = 0, which is consistent since AA has no inverse.


Alternative Method

For a 2×22 \times 2 matrix, we can verify directly — and the pattern makes the general proof more intuitive.

Let A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}. Then adj(A)=(dbca)\text{adj}(A) = \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}.

Compute the product:

Aadj(A)=(abcd)(dbca)=(adbc00adbc)=(adbc)I=AIA \cdot \text{adj}(A) = \begin{pmatrix} a & b \\ c & d \end{pmatrix}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix} = \begin{pmatrix} ad-bc & 0 \\ 0 & ad-bc \end{pmatrix} = (ad-bc)I = |A| \cdot I

This direct computation for 2×22 \times 2 is worth memorising — it’s cleaner in MCQ-style questions where the general proof isn’t needed.


Common Mistake

Most students prove Aadj(A)=AIA \cdot \text{adj}(A) = |A| \cdot I and forget to also state (or prove) that adj(A)A=AI\text{adj}(A) \cdot A = |A| \cdot I. JEE Advanced and CBSE both sometimes ask for the full identity: Aadj(A)=adj(A)A=AIA \cdot \text{adj}(A) = \text{adj}(A) \cdot A = |A| \cdot I. The proof for adj(A)A\text{adj}(A) \cdot 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 AA is a 3×33 \times 3 matrix with A=5|A| = 5, find Aadj(A)|A \cdot \text{adj}(A)|.” Direct answer: Aadj(A)=AI=5I=53=125|A \cdot \text{adj}(A)| = ||A| \cdot I| = |5I| = 5^3 = 125. No need to compute adj(A)\text{adj}(A) explicitly.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next