Math Lab
Home/Class XII/Ch 4/Adjoint and inverse

Adjoint and inverse

In the previous subtopic we built the cofactor matrix of a square AA. Its transpose is called the adjoint of AA (also adjugate; in older Indian textbooks called the classical adjoint). The adjoint satisfies AadjA=(detA)IA \cdot \text{adj}\,A = (\det A)\,I, which gives an explicit formula for the inverse:

A1=1detAadjA,provided detA0.A^{-1} = \frac{1}{\det A}\,\text{adj}\,A, \quad \text{provided } \det A \neq 0.

This is the adjoint method for inverting a matrix.

Definition

The adjoint of a square matrix AA is the transpose of its cofactor matrix:

adj(A)=cof(A)T.\text{adj}(A) = \text{cof}(A)^T.

So (adjA)ij=Cji(\text{adj}\,A)_{ij} = C_{ji}, where CjiC_{ji} is the (j,i)(j, i) cofactor of AA.

The main identity

Theorem. For any square AA,

Aadj(A)=adj(A)A=(detA)I.A \cdot \text{adj}(A) = \text{adj}(A) \cdot A = (\det A) I.

Proof sketch. The (i,k)(i, k) entry of Aadj(A)A \cdot \text{adj}(A) is jaij(adjA)jk=jaijCkj\sum_j a_{ij} (\text{adj} A)_{jk} = \sum_j a_{ij} C_{kj}. By cofactor orthogonality this equals detA\det A if i=ki = k, and 00 otherwise. So the product is (detA)I(\det A) I.

The inverse formula

Dividing both sides by detA\det A (when nonzero):

A1=1detAadj(A).A^{-1} = \frac{1}{\det A}\,\text{adj}(A).

This is the adjoint formula for the inverse. It is explicit, clean, and central to proofs.

Worked computation

Find the inverse of A=(231122311)A = \begin{pmatrix} 2 & 3 & 1 \\ 1 & 2 & 2 \\ 3 & 1 & -1 \end{pmatrix}.

Step 1. Compute detA\det A by expansion along row 1.

detA=2(2121)3(1123)+1(1123)\det A = 2(2 \cdot -1 - 2 \cdot 1) - 3(1 \cdot -1 - 2 \cdot 3) + 1(1 \cdot 1 - 2 \cdot 3) =2(4)3(7)+1(5)=8+215=8= 2(-4) - 3(-7) + 1(-5) = -8 + 21 - 5 = 8.

So detA=80\det A = 8 \neq 0. The matrix is invertible.

Step 2. Compute the cofactors.

C11=+det(2211)=4C_{11} = +\det\begin{pmatrix} 2 & 2 \\ 1 & -1 \end{pmatrix} = -4.

C12=det(1231)=(16)=7C_{12} = -\det\begin{pmatrix} 1 & 2 \\ 3 & -1 \end{pmatrix} = -(-1 - 6) = 7.

C13=+det(1231)=5C_{13} = +\det\begin{pmatrix} 1 & 2 \\ 3 & 1 \end{pmatrix} = -5.

C21=det(3111)=(31)=4C_{21} = -\det\begin{pmatrix} 3 & 1 \\ 1 & -1 \end{pmatrix} = -(-3 - 1) = 4.

C22=+det(2131)=5C_{22} = +\det\begin{pmatrix} 2 & 1 \\ 3 & -1 \end{pmatrix} = -5.

C23=det(2331)=(29)=7C_{23} = -\det\begin{pmatrix} 2 & 3 \\ 3 & 1 \end{pmatrix} = -(2 - 9) = 7.

C31=+det(3122)=4C_{31} = +\det\begin{pmatrix} 3 & 1 \\ 2 & 2 \end{pmatrix} = 4.

C32=det(2112)=(41)=3C_{32} = -\det\begin{pmatrix} 2 & 1 \\ 1 & 2 \end{pmatrix} = -(4 - 1) = -3.

C33=+det(2312)=1C_{33} = +\det\begin{pmatrix} 2 & 3 \\ 1 & 2 \end{pmatrix} = 1.

Step 3. Assemble the cofactor matrix and transpose:

cof(A)=(475457431)\text{cof}(A) = \begin{pmatrix} -4 & 7 & -5 \\ 4 & -5 & 7 \\ 4 & -3 & 1 \end{pmatrix}.

adj(A)=(444753571)\text{adj}(A) = \begin{pmatrix} -4 & 4 & 4 \\ 7 & -5 & -3 \\ -5 & 7 & 1 \end{pmatrix}.

Step 4. A1=18adj(A)=18(444753571)A^{-1} = \tfrac{1}{8}\,\text{adj}(A) = \tfrac{1}{8}\begin{pmatrix} -4 & 4 & 4 \\ 7 & -5 & -3 \\ -5 & 7 & 1 \end{pmatrix}.

Useful identities about the adjoint

For an n×nn \times n matrix AA:

  1. Aadj(A)=adj(A)A=(detA)IA \cdot \text{adj}(A) = \text{adj}(A) \cdot A = (\det A) I.
  2. adj(AT)=(adjA)T\text{adj}(A^T) = (\text{adj}\,A)^T.
  3. det(adjA)=(detA)n1\det(\text{adj}\,A) = (\det A)^{n - 1}.
  4. adj(AB)=adj(B)adj(A)\text{adj}(AB) = \text{adj}(B) \cdot \text{adj}(A).
  5. adj(λA)=λn1adj(A)\text{adj}(\lambda A) = \lambda^{n - 1}\,\text{adj}(A).

The reversal in (4) parallels (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1} and is often tested in JEE.

Worked examples

Example 1. Find the adjoint and inverse of A=(1234)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}.

detA=2\det A = -2. cof(A)=(4321)\text{cof}(A) = \begin{pmatrix} 4 & -3 \\ -2 & 1 \end{pmatrix}. adj(A)=(4231)\text{adj}(A) = \begin{pmatrix} 4 & -2 \\ -3 & 1 \end{pmatrix}. A1=12(4231)=(213/21/2)A^{-1} = -\tfrac{1}{2}\begin{pmatrix} 4 & -2 \\ -3 & 1 \end{pmatrix} = \begin{pmatrix} -2 & 1 \\ 3/2 & -1/2 \end{pmatrix}.

Example 2. Verify Aadj(A)=(detA)IA \cdot \text{adj}(A) = (\det A) I for the matrix in Example 1.

Aadj(A)=(1234)(4231)=(462+212126+4)=(2002)=2IA \cdot \text{adj}(A) = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}\begin{pmatrix} 4 & -2 \\ -3 & 1 \end{pmatrix} = \begin{pmatrix} 4 - 6 & -2 + 2 \\ 12 - 12 & -6 + 4 \end{pmatrix} = \begin{pmatrix} -2 & 0 \\ 0 & -2 \end{pmatrix} = -2 I. \checkmark

Example 3. If detA=5\det A = 5 for a 3×33 \times 3 matrix, find det(adjA)\det(\text{adj}\,A).

By property (3): det(adjA)=531=25\det(\text{adj}\,A) = 5^{3 - 1} = 25.

Example 4. If AA is a 3×33 \times 3 matrix with detA=4\det A = 4, find adj(2A)|\text{adj}(2 A)|.

det(2A)=23detA=32\det(2 A) = 2^3 \det A = 32. adj(2A)=3231=1024|\text{adj}(2A)| = 32^{3 - 1} = 1024.

Example 5. Show that for a 2×22 \times 2 matrix, adj(adj(A))=A\text{adj}(\text{adj}(A)) = A.

adj(A)=(dbca)\text{adj}(A) = \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}. Compute its adjoint: swap diagonal and negate off-diagonal: (abcd)=A\begin{pmatrix} a & b \\ c & d \end{pmatrix} = A. \checkmark (For higher orders, adj(adj(A))=(detA)n2A\text{adj}(\text{adj}(A)) = (\det A)^{n-2} A.)

Example 6. Solve {2x+3y+z=11x+2y+2z=133x+yz=5\begin{cases} 2x + 3y + z = 11 \\ x + 2y + 2z = 13 \\ 3x + y - z = 5 \end{cases} using the adjoint method.

Write AX=BAX = B. A=(231122311)A = \begin{pmatrix} 2 & 3 & 1 \\ 1 & 2 & 2 \\ 3 & 1 & -1 \end{pmatrix}, B=(11135)B = \begin{pmatrix} 11 \\ 13 \\ 5 \end{pmatrix}.

From the worked computation above, A1=18(444753571)A^{-1} = \tfrac{1}{8} \begin{pmatrix} -4 & 4 & 4 \\ 7 & -5 & -3 \\ -5 & 7 & 1 \end{pmatrix}.

X=A1B=18(44+52+2077651555+91+5)=18(28341)X = A^{-1} B = \tfrac{1}{8}\begin{pmatrix} -44 + 52 + 20 \\ 77 - 65 - 15 \\ -55 + 91 + 5 \end{pmatrix} = \tfrac{1}{8}\begin{pmatrix} 28 \\ -3 \\ 41 \end{pmatrix}.

Hmm , let me double-check by substituting into the first equation: 228/8+3(3)/8+41/8=(569+41)/8=88/8=112 \cdot 28/8 + 3 \cdot (-3)/8 + 41/8 = (56 - 9 + 41)/8 = 88/8 = 11. \checkmark. So X=(7/2,3/8,41/8)X = (7/2, -3/8, 41/8). (This system has a non-integer solution; you can re-solve with different RHS for a cleaner answer.)

Try it yourself

  1. Find the adjoint of (1234)\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}.
  2. Find the adjoint of I3I_3.
  3. Find the inverse of (2531)\begin{pmatrix} 2 & 5 \\ -3 & 1 \end{pmatrix} using the adjoint method.
  4. Find the inverse of (111011001)\begin{pmatrix} 1 & 1 & 1 \\ 0 & 1 & 1 \\ 0 & 0 & 1 \end{pmatrix}.
  5. Verify Aadj(A)=(detA)IA \cdot \text{adj}(A) = (\det A) I for (102011110)\begin{pmatrix} 1 & 0 & 2 \\ 0 & 1 & 1 \\ 1 & 1 & 0 \end{pmatrix}.
  6. For a 3×33 \times 3 matrix with det=7\det = 7, find det(adjA)\det(\text{adj}\,A).
  7. Find adj(adj(I3))\text{adj}(\text{adj}(I_3)).
  8. Verify adj(AB)=adj(B)adj(A)\text{adj}(AB) = \text{adj}(B)\,\text{adj}(A) for some 2×22 \times 2 matrices.
  9. Find A1A^{-1} for A=(cosθsinθsinθcosθ)A = \begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix} , note it should be the rotation by θ-\theta.
  10. Show that if AA is symmetric and invertible, then adj(A)\text{adj}(A) is symmetric.
  11. If AA is skew-symmetric of even order, must adj(A)\text{adj}(A) be invertible?
  12. Show that for any invertible AA, (A1)T=(AT)1(A^{-1})^T = (A^T)^{-1}.
  13. Use adj\text{adj} to invert (211121112)\begin{pmatrix} 2 & 1 & 1 \\ 1 & 2 & 1 \\ 1 & 1 & 2 \end{pmatrix}.
  14. Show that adj(λA)=λn1adj(A)\text{adj}(\lambda A) = \lambda^{n - 1} \text{adj}(A) for an n×nn \times n matrix.

Pitfalls / Tricks

  • Adjoint is the transpose of the cofactor matrix, not the cofactor matrix itself.
  • Do not forget the 1detA\tfrac{1}{\det A} factor when computing the inverse.
  • det(adjA)=(detA)n1\det(\text{adj}\,A) = (\det A)^{n - 1} is a JEE staple; memorise.
  • The adjoint method scales poorly with size; for n4n \ge 4 row reduction is faster.
  • For a 2×22 \times 2 matrix, adjoint = swap diagonal entries and negate off-diagonals.

Next we apply these tools to solve linear systems via Cramer's rule.

Practice quiz

Quick check on this topic.

Quiz
Quick check : Adjoint and inverse
6 questions · pick the best answer
Q1

Q2

Q3

Q4

Q5

Q6