# Chapter 14. Cofactors and Adjugates

# Chapter 14. Cofactors and Adjugates

Cofactors and adjugates give a structured way to express determinants, inverses, and solutions of square systems. They are built from minors. A minor is a smaller determinant obtained by deleting one row and one column. A cofactor is a signed minor. The adjugate is the transpose of the cofactor matrix. For a square matrix \(A\), the central identity is

$$
A\operatorname{adj}(A)=\operatorname{adj}(A)A=\det(A)I.
$$

When \(\det(A)\ne 0\), this identity gives

$$
A^{-1}=\frac{1}{\det(A)}\operatorname{adj}(A).
$$

This formula is important theoretically. It explains why determinants control invertibility and why entries of an inverse are ratios of determinants. The adjugate is the transpose of the cofactor matrix, and it satisfies the determinant identity above. ([en.wikipedia.org](https://en.wikipedia.org/wiki/Adjugate_matrix?utm_source=chatgpt.com))

## 14.1 Minors

Let \(A\) be an \(n\times n\) matrix. The minor \(M_{ij}\) is the determinant of the \((n-1)\times(n-1)\) matrix obtained by deleting row \(i\) and column \(j\) from \(A\).

For example, let

$$
A=
\begin{bmatrix}
1&2&3\\
4&5&6\\
7&8&9
\end{bmatrix}.
$$

To compute \(M_{12}\), delete row \(1\) and column \(2\). The remaining matrix is

$$
\begin{bmatrix}
4&6\\
7&9
\end{bmatrix}.
$$

Thus

$$
M_{12} =
\det
\begin{bmatrix}
4&6\\
7&9
\end{bmatrix} =
4\cdot 9-6\cdot 7 =
-6.
$$

A minor is always a determinant. It is not the smaller matrix itself.

## 14.2 Cofactors

The cofactor \(C_{ij}\) is the signed minor

$$
C_{ij}=(-1)^{i+j}M_{ij}.
$$

The sign factor alternates according to the checkerboard pattern

$$
\begin{bmatrix}
+&-&+&-\cdots\\
-&+&-&+\cdots\\
+&-&+&-\cdots\\
-&+&-&+\cdots\\
\vdots&\vdots&\vdots&\vdots
\end{bmatrix}.
$$

For the previous matrix,

$$
M_{12}=-6.
$$

Since

$$
(-1)^{1+2}=-1,
$$

we have

$$
C_{12}=(-1)M_{12}=6.
$$

The cofactor differs from the minor only by this sign.

## 14.3 Cofactor Matrix

The cofactor matrix of \(A\) is the matrix whose \((i,j)\)-entry is \(C_{ij}\):

$$
C=
\begin{bmatrix}
C_{11}&C_{12}&\cdots&C_{1n}\\
C_{21}&C_{22}&\cdots&C_{2n}\\
\vdots&\vdots&\ddots&\vdots\\
C_{n1}&C_{n2}&\cdots&C_{nn}
\end{bmatrix}.
$$

The cofactor matrix has the same size as \(A\). Each entry records the determinant of the complementary submatrix, with the correct sign.

For a \(2\times 2\) matrix

$$
A=
\begin{bmatrix}
a&b\\
c&d
\end{bmatrix},
$$

the cofactor matrix is

$$
C=
\begin{bmatrix}
d&-c\\
-b&a
\end{bmatrix}.
$$

Indeed,

$$
C_{11}=d,\quad C_{12}=-c,\quad C_{21}=-b,\quad C_{22}=a.
$$

## 14.4 The Adjugate Matrix

The adjugate of \(A\), written

$$
\operatorname{adj}(A),
$$

is the transpose of the cofactor matrix:

$$
\operatorname{adj}(A)=C^T.
$$

Thus the \((i,j)\)-entry of \(\operatorname{adj}(A)\) is

$$
C_{ji}.
$$

For

$$
A=
\begin{bmatrix}
a&b\\
c&d
\end{bmatrix},
$$

the cofactor matrix is

$$
C=
\begin{bmatrix}
d&-c\\
-b&a
\end{bmatrix},
$$

so the adjugate is

$$
\operatorname{adj}(A) =
C^T =
\begin{bmatrix}
d&-b\\
-c&a
\end{bmatrix}.
$$

This is the familiar matrix appearing in the \(2\times 2\) inverse formula.

## 14.5 Cofactor Expansion

The determinant of \(A\) may be expanded along any row or column.

Expansion along row \(i\) is

$$
\det(A)=\sum_{j=1}^{n}a_{ij}C_{ij}.
$$

Expansion along column \(j\) is

$$
\det(A)=\sum_{i=1}^{n}a_{ij}C_{ij}.
$$

This is called cofactor expansion or Laplace expansion. It expresses a determinant in terms of smaller determinants. ([en.wikipedia.org](https://en.wikipedia.org/wiki/Determinant?utm_source=chatgpt.com))

For example, if

$$
A=
\begin{bmatrix}
2&0&1\\
3&4&-1\\
0&5&2
\end{bmatrix},
$$

expanding along the first row gives

$$
\det(A) =
2C_{11}+0C_{12}+1C_{13}.
$$

Compute

$$
C_{11} =
\det
\begin{bmatrix}
4&-1\\
5&2
\end{bmatrix} =
13,
$$

and

$$
C_{13} =
\det
\begin{bmatrix}
3&4\\
0&5
\end{bmatrix} =
15.
$$

Therefore

$$
\det(A)=2(13)+15=41.
$$

## 14.6 Expansion Along a Different Row or Column

Cofactor expansion gives the same determinant no matter which row or column is chosen.

A useful strategy is to expand along a row or column with many zeros.

For example,

$$
A=
\begin{bmatrix}
1&2&3\\
0&0&5\\
4&6&7
\end{bmatrix}.
$$

Expand along row \(2\):

$$
\det(A)=0C_{21}+0C_{22}+5C_{23}.
$$

Now

$$
C_{23}=(-1)^{2+3}
\det
\begin{bmatrix}
1&2\\
4&6
\end{bmatrix}.
$$

Thus

$$
C_{23} = -
(1\cdot 6-2\cdot 4) = -
(6-8) =
2.
$$

Therefore

$$
\det(A)=5(2)=10.
$$

The zeros remove two terms from the expansion.

## 14.7 The Adjugate Identity

The fundamental identity for the adjugate is

$$
A\operatorname{adj}(A)=\det(A)I.
$$

Also,

$$
\operatorname{adj}(A)A=\det(A)I.
$$

These identities hold for every square matrix \(A\), whether or not \(A\) is invertible. ([en.wikipedia.org](https://en.wikipedia.org/wiki/Adjugate_matrix?utm_source=chatgpt.com))

The diagonal entries of \(A\operatorname{adj}(A)\) are cofactor expansions of \(\det(A)\). The off-diagonal entries are cofactor expansions of matrices with two equal rows, whose determinants are zero.

This explains why the product is a scalar multiple of the identity.

## 14.8 Proof Idea for the Adjugate Identity

Let \(A=(a_{ij})\), and let \(C=(C_{ij})\) be its cofactor matrix. Since

$$
\operatorname{adj}(A)=C^T,
$$

the \((i,k)\)-entry of

$$
A\operatorname{adj}(A)
$$

is

$$
\sum_{j=1}^{n}a_{ij}C_{kj}.
$$

If \(i=k\), this is the cofactor expansion of \(\det(A)\) along row \(i\):

$$
\sum_{j=1}^{n}a_{ij}C_{ij}=\det(A).
$$

If \(i\ne k\), the sum is the determinant of a matrix obtained from \(A\) by replacing row \(k\) with row \(i\). That matrix has two equal rows, so its determinant is zero.

Thus

$$
A\operatorname{adj}(A)
$$

has \(\det(A)\) on the diagonal and \(0\) off the diagonal. Hence

$$
A\operatorname{adj}(A)=\det(A)I.
$$

## 14.9 Inverse Formula

If \(A\) is invertible, then

$$
\det(A)\ne 0.
$$

From the adjugate identity,

$$
A\operatorname{adj}(A)=\det(A)I.
$$

Divide by \(\det(A)\):

$$
A\left(\frac{1}{\det(A)}\operatorname{adj}(A)\right)=I.
$$

Therefore

$$
A^{-1}=\frac{1}{\det(A)}\operatorname{adj}(A).
$$

This formula is valid exactly when \(\det(A)\ne 0\). It gives a closed form for the inverse using determinants. ([en.wikipedia.org](https://en.wikipedia.org/wiki/Adjugate_matrix?utm_source=chatgpt.com))

## 14.10 Example: \(2\times 2\) Inverse

Let

$$
A=
\begin{bmatrix}
a&b\\
c&d
\end{bmatrix}.
$$

Then

$$
\operatorname{adj}(A) =
\begin{bmatrix}
d&-b\\
-c&a
\end{bmatrix}.
$$

Since

$$
\det(A)=ad-bc,
$$

the inverse is

$$
A^{-1} =
\frac{1}{ad-bc}
\begin{bmatrix}
d&-b\\
-c&a
\end{bmatrix},
$$

provided

$$
ad-bc\ne 0.
$$

For example,

$$
A=
\begin{bmatrix}
2&1\\
5&3
\end{bmatrix}.
$$

Then

$$
\det(A)=2\cdot 3-1\cdot 5=1.
$$

Thus

$$
A^{-1} =
\begin{bmatrix}
3&-1\\
-5&2
\end{bmatrix}.
$$

## 14.11 Example: Cofactor Matrix of a \(3\times 3\) Matrix

Let

$$
A=
\begin{bmatrix}
1&2&0\\
0&1&1\\
1&0&1
\end{bmatrix}.
$$

Compute the cofactors.

First row:

$$
C_{11} =
\det
\begin{bmatrix}
1&1\\
0&1
\end{bmatrix}
=1,
$$

$$
C_{12} = -
\det
\begin{bmatrix}
0&1\\
1&1
\end{bmatrix}
= -(-1)=1,
$$

$$
C_{13} =
\det
\begin{bmatrix}
0&1\\
1&0
\end{bmatrix}
=-1.
$$

Second row:

$$
C_{21} = -
\det
\begin{bmatrix}
2&0\\
0&1
\end{bmatrix}
=-2,
$$

$$
C_{22} =
\det
\begin{bmatrix}
1&0\\
1&1
\end{bmatrix}
=1,
$$

$$
C_{23} = -
\det
\begin{bmatrix}
1&2\\
1&0
\end{bmatrix}
=2.
$$

Third row:

$$
C_{31} =
\det
\begin{bmatrix}
2&0\\
1&1
\end{bmatrix}
=2,
$$

$$
C_{32} = -
\det
\begin{bmatrix}
1&0\\
0&1
\end{bmatrix}
=-1,
$$

$$
C_{33} =
\det
\begin{bmatrix}
1&2\\
0&1
\end{bmatrix}
=1.
$$

Thus the cofactor matrix is

$$
C=
\begin{bmatrix}
1&1&-1\\
-2&1&2\\
2&-1&1
\end{bmatrix}.
$$

## 14.12 Example: Adjugate and Inverse

Using the same matrix

$$
A=
\begin{bmatrix}
1&2&0\\
0&1&1\\
1&0&1
\end{bmatrix},
$$

the adjugate is the transpose of the cofactor matrix:

$$
\operatorname{adj}(A) =
C^T =
\begin{bmatrix}
1&-2&2\\
1&1&-1\\
-1&2&1
\end{bmatrix}.
$$

The determinant may be computed from the first row:

$$
\det(A)=1C_{11}+2C_{12}+0C_{13}.
$$

Thus

$$
\det(A)=1+2=3.
$$

Therefore

$$
A^{-1} =
\frac13
\begin{bmatrix}
1&-2&2\\
1&1&-1\\
-1&2&1
\end{bmatrix}.
$$

This agrees with the general formula

$$
A^{-1}=\frac{1}{\det(A)}\operatorname{adj}(A).
$$

## 14.13 Cofactors and Cramer's Rule

Cofactors also explain Cramer's rule.

For an invertible system

$$
Ax=b,
$$

the solution is

$$
x=A^{-1}b.
$$

Using the adjugate formula,

$$
x=\frac{1}{\det(A)}\operatorname{adj}(A)b.
$$

The \(i\)-th component of this vector can be written as

$$
x_i=\frac{\det(A_i(b))}{\det(A)},
$$

where \(A_i(b)\) is obtained by replacing column \(i\) of \(A\) by \(b\).

This gives Cramer's rule. It is mainly a theoretical formula, since elimination is more efficient for large systems.

## 14.14 Adjugate of a Product

If \(A\) and \(B\) are square matrices of the same size, then

$$
\operatorname{adj}(AB)=\operatorname{adj}(B)\operatorname{adj}(A).
$$

The order reverses, just as it does for inverses:

$$
(AB)^{-1}=B^{-1}A^{-1}.
$$

When \(A\) and \(B\) are invertible, the formula follows from

$$
\operatorname{adj}(A)=\det(A)A^{-1}.
$$

The identity also holds in general. ([en.wikipedia.org](https://en.wikipedia.org/wiki/Adjugate_matrix?utm_source=chatgpt.com))

## 14.15 Transpose and Adjugate

The adjugate interacts naturally with transpose:

$$
\operatorname{adj}(A^T)=\operatorname{adj}(A)^T.
$$

This follows from the fact that minors of \(A^T\) correspond to transposed minors of \(A\), and determinants are unchanged by transpose.

For real matrices, this formula is often enough. For complex matrices, one must distinguish transpose from conjugate transpose. The classical adjugate uses cofactors and transpose, not the Hilbert-space adjoint.

## 14.16 Scalar Multiples

If \(A\) is \(n\times n\) and \(c\) is a scalar, then

$$
\operatorname{adj}(cA)=c^{n-1}\operatorname{adj}(A).
$$

The exponent is \(n-1\) because each cofactor is the determinant of an \((n-1)\times(n-1)\) matrix. Multiplying \(A\) by \(c\) multiplies each such submatrix by \(c\), so each cofactor is multiplied by

$$
c^{n-1}.
$$

## 14.17 Determinant of the Adjugate

If \(A\) is \(n\times n\), then

$$
\det(\operatorname{adj}(A))=\det(A)^{n-1}.
$$

When \(A\) is invertible, this follows from

$$
\operatorname{adj}(A)=\det(A)A^{-1}.
$$

Taking determinants gives

$$
\det(\operatorname{adj}(A)) =
\det(\det(A)A^{-1}).
$$

Since scaling an \(n\times n\) matrix by \(\det(A)\) multiplies its determinant by \(\det(A)^n\),

$$
\det(\operatorname{adj}(A)) =
\det(A)^n\det(A^{-1}) =
\det(A)^n\frac{1}{\det(A)} =
\det(A)^{n-1}.
$$

## 14.18 Singular Matrices

The adjugate is defined even when \(A\) is singular.

If

$$
\det(A)=0,
$$

then the adjugate identity becomes

$$
A\operatorname{adj}(A)=0.
$$

This does not mean that \(\operatorname{adj}(A)\) must be the zero matrix. It means that every column of \(\operatorname{adj}(A)\) lies in the null space of \(A\).

For example,

$$
A=
\begin{bmatrix}
1&2\\
2&4
\end{bmatrix}.
$$

Then

$$
\operatorname{adj}(A) =
\begin{bmatrix}
4&-2\\
-2&1
\end{bmatrix}.
$$

The determinant is zero, and indeed

$$
A\operatorname{adj}(A)=0.
$$

Since \(A\) is singular, the inverse formula cannot be used.

## 14.19 Rank and the Adjugate

The adjugate reflects the rank of a square matrix.

For an \(n\times n\) matrix \(A\):

| Rank of \(A\) | Behavior of \(\operatorname{adj}(A)\) |
|---|---|
| \(n\) | \(\operatorname{adj}(A)\) is invertible |
| \(n-1\) | \(\operatorname{adj}(A)\) may be nonzero and has rank \(1\) |
| \(\le n-2\) | \(\operatorname{adj}(A)=0\) |

This follows from the fact that entries of the adjugate are \((n-1)\times(n-1)\) minors. If all such minors vanish, the adjugate is zero.

## 14.20 Computational Role

Cofactors and adjugates are valuable for theory, symbolic formulas, and small matrices.

For large numerical matrices, they are usually not the preferred method for computing inverses. Cofactor expansion grows rapidly in cost. Row reduction, LU decomposition, QR decomposition, and other factorizations are more efficient and numerically better behaved.

Thus the adjugate formula should be understood as a structural identity first and a computational method only for small or symbolic cases.

## 14.21 Common Mistakes

| Mistake | Correction |
|---|---|
| Confusing minor with cofactor | A cofactor is a signed minor |
| Forgetting the checkerboard signs | Use \(C_{ij}=(-1)^{i+j}M_{ij}\) |
| Forgetting to transpose the cofactor matrix | \(\operatorname{adj}(A)=C^T\) |
| Using the inverse formula when \(\det(A)=0\) | The formula requires nonzero determinant |
| Calling the adjugate the same as the adjoint operator | In many contexts, adjoint means transpose or conjugate transpose |
| Taking cofactors from the wrong deleted row or column | \(M_{ij}\) deletes row \(i\) and column \(j\) |

## 14.22 Summary

Minors, cofactors, and adjugates refine the determinant into matrix form.

The main definitions are:

| Object | Definition |
|---|---|
| Minor \(M_{ij}\) | Determinant after deleting row \(i\), column \(j\) |
| Cofactor \(C_{ij}\) | \((-1)^{i+j}M_{ij}\) |
| Cofactor matrix \(C\) | Matrix with entries \(C_{ij}\) |
| Adjugate \(\operatorname{adj}(A)\) | \(C^T\) |

The central identity is

$$
A\operatorname{adj}(A)=\operatorname{adj}(A)A=\det(A)I.
$$

When \(\det(A)\ne 0\), it gives

$$
A^{-1}=\frac{1}{\det(A)}\operatorname{adj}(A).
$$

Cofactors and adjugates provide the algebraic bridge from determinants to inverses, Cramer's rule, and symbolic matrix formulas.
