How To Find The Adjoint Of A Matrix
Finding the adjoint of a matrix is a fundamental skill in linear algebra, especially when solving systems of linear equations, computing inverses, or analyzing linear transformations. Which means this article walks through the concept of the adjoint (also called the adjugate) matrix, explains its relationship to determinants and cofactors, and provides a step‑by‑step method for calculating it for any square matrix. By the end, you’ll be able to find the adjoint quickly and understand why it matters in both theory and practice.
What Is the Adjoint of a Matrix?
The adjoint (or adjugate) of an n × n matrix A is the transpose of its cofactor matrix. Symbolically:
[ \operatorname{adj}(\mathbf{A}) = \mathbf{C}^T ]
where C is the matrix of cofactors of A. The adjoint has a special property:
[ \mathbf{A} \cdot \operatorname{adj}(\mathbf{A}) = \operatorname{adj}(\mathbf{A}) \cdot \mathbf{A} = \det(\mathbf{A}) , \mathbf{I} ]
This identity is the cornerstone for computing matrix inverses and solving linear systems via Cramer’s rule.
Why Do We Need the Adjoint?
- Inverse Computation: If (\det(\mathbf{A}) \neq 0), the inverse is (\mathbf{A}^{-1} = \frac{1}{\det(\mathbf{A})} \operatorname{adj}(\mathbf{A})).
- Cramer’s Rule: Each variable in a linear system can be expressed as a ratio of determinants involving the adjoint.
- Eigenvalue Problems: The adjoint appears in characteristic polynomial expansions.
- Numerical Methods: Some algorithms for solving differential equations use the adjoint to propagate sensitivities.
Understanding how to find the adjoint equips you with a versatile tool for many areas of mathematics and engineering.
Step‑by‑Step Guide to Finding the Adjoint
Below is a systematic approach that works for any square matrix, regardless of size.
1. Verify the Matrix Is Square
The adjoint is defined only for square matrices. If your matrix is m × n with m ≠ n, you cannot compute an adjoint in the classical sense.
2. Compute the Cofactor Matrix
For each element (a_{ij}) of A, compute its cofactor (C_{ij}):
-
Delete the i-th row and j-th column to form a submatrix (M_{ij}). Practical, not theoretical.
-
Calculate the determinant of (M_{ij}), denoted (\det(M_{ij})).
-
Apply the sign factor ((-1)^{i+j}) to obtain the cofactor:
[ C_{ij} = (-1)^{i+j} \det(M_{ij}) ]
Repeat this for every entry. The result is the cofactor matrix C.
Example: Cofactor of a 3×3 Element
For a 3×3 matrix A, the cofactor of (a_{12}) (row 1, column 2) is:
- Delete row 1 and column 2 → submatrix (\begin{bmatrix} a_{21} & a_{23} \ a_{31} & a_{33} \end{bmatrix}).
- Determinant: (a_{21}a_{33} - a_{23}a_{31}).
- Sign factor: ((-1)^{1+2} = -1).
- Cofactor: (- (a_{21}a_{33} - a_{23}a_{31})).
3. Transpose the Cofactor Matrix
Once all cofactors are found, transpose the cofactor matrix to obtain the adjoint:
[ \operatorname{adj}(\mathbf{A}) = \mathbf{C}^T ]
Transposition simply swaps rows and columns: the entry in the i-th row and j-th column of C becomes the entry in the j-th row and i-th column of (\operatorname{adj}(\mathbf{A})).
4. Verify with the Determinant Property
As a sanity check, multiply A by its adjoint and compare the result to (\det(\mathbf{A}) \mathbf{I}). If they match, the adjoint is correct.
Worked Example: 3×3 Matrix
Let
Want to learn more? We recommend why do my eyes look cloudy and why did kennedy win the 1960 election for further reading.
[ \mathbf{A} = \begin{bmatrix} 2 & -1 & 0 \ 3 & 4 & 5 \ 1 & 0 & 6 \end{bmatrix} ]
Step 1: Cofactor Matrix
| Element | Submatrix | Determinant | Sign | Cofactor |
|---|---|---|---|---|
| (a_{11}) | (\begin{bmatrix} 4 & 5 \ 0 & 6 \end{bmatrix}) | (4 \cdot 6 - 5 \cdot 0 = 24) | (+1) | (+24) |
| (a_{12}) | (\begin{bmatrix} 3 & 5 \ 1 & 6 \end{bmatrix}) | (3 \cdot 6 - 5 \cdot 1 = 13) | (-1) | (-13) |
| (a_{13}) | (\begin{bmatrix} 3 & 4 \ 1 & 0 \end{bmatrix}) | (3 \cdot 0 - 4 \cdot 1 = -4) | (+1) | (-4) |
| (a_{21}) | (\begin{bmatrix} -1 & 0 \ 0 & 6 \end{bmatrix}) | ((-1) \cdot 6 - 0 = -6) | (-1) | (+6) |
| (a_{22}) | (\begin{bmatrix} 2 & 0 \ 1 & 6 \end{bmatrix}) | (2 \cdot 6 - 0 = 12) | (+1) | (+12) |
| (a_{23}) | (\begin{bmatrix} 2 & -1 \ 1 & 0 \end{bmatrix}) | (2 \cdot 0 - (-1) \cdot 1 = 1) | (-1) | (-1) |
| (a_{31}) | (\begin{bmatrix} -1 & 0 \ 4 & 5 \end{bmatrix}) | ((-1) \cdot 5 - 0 = -5) | (+1) | (-5) |
| (a_{32}) | (\begin{bmatrix} 2 & 0 \ 3 & 5 \end{bmatrix}) | (2 \cdot 5 - 0 = 10) | (-1) | (-10) |
| (a_{33}) | (\begin{bmatrix} 2 & -1 \ 3 & 4 \end{bmatrix}) | (2 \cdot 4 - (-1) \cdot 3 = 11) | (+1) | (+11) |
The cofactor matrix C is thus:
[ \mathbf{C} = \begin{bmatrix} 24 & -13 & -4 \ 6 & 12 & -1 \ -5 & -10 & 11 \end{bmatrix} ]
Step 2: Transpose to Get the Adjoint
[ \operatorname{adj}(\mathbf{A}) = \mathbf{C}^T = \begin{bmatrix} 24 & 6 & -5 \ -13 & 12 & -10 \ -4 & -1 & 11 \end{bmatrix} ]
Step 3: Check with Determinant
Compute (\det(\mathbf{A})):
[ \det(\mathbf{A}) = 2(4 \cdot 6 - 5 \cdot 0) - (-1)(3 \cdot 6 - 5 \cdot 1) + 0 = 2(24) + 1(13) = 48 + 13 = 61 ]
Now verify:
[ \mathbf{A} \cdot \operatorname{adj}(\mathbf{A}) = 61 \mathbf{I} ]
Multiplying yields the identity matrix scaled by 61, confirming the adjoint is correct.
Common Pitfalls and How to Avoid Them
| Mistake | Why It Happens | Fix |
|---|---|---|
| Skipping the sign factor | Forgetting ((-1)^{i+j}) leads to wrong cofactors | Write the sign explicitly before computing each cofactor |
| Using the wrong submatrix | Misidentifying which row/column to delete | Label rows and columns clearly; double‑check each deletion |
| Transposing incorrectly | Swapping rows instead of columns | Remember: element (C_{ij}) becomes adjoint entry (A_{ji}) |
| Forgetting to multiply by the determinant for the inverse | Confusing adjoint with inverse | Use (\mathbf{A}^{-1} = \frac{1}{\det(\mathbf{A})} \operatorname{adj}(\mathbf{A})) only when (\det(\mathbf{A}) \neq 0) |
Frequently Asked Questions
Q1: Can the adjoint be found for non‑square matrices?
A1: No. The definition relies on the determinant, which only exists for square matrices. For rectangular matrices, concepts like the Moore‑Penrose pseudoinverse are used instead.
Q2: How does the adjoint relate to the inverse for singular matrices?
A2: If (\det(\mathbf{A}) = 0), the matrix is singular, and its inverse does not exist. On the flip side, the adjoint still exists; it merely satisfies (\mathbf{A} \cdot \operatorname{adj}(\mathbf{A}) = \mathbf{0}), the zero matrix.
Q3: Is there a faster way to compute the adjoint for large matrices?
A3: For very large matrices, direct cofactor expansion becomes computationally expensive. Instead, use numerical linear algebra routines (e.g., LU decomposition) to compute the inverse, which implicitly uses the adjoint concept. Symbolic computation software can also automate the process.
Q4: Why is the adjoint called the “adjugate”?
A4: The term “adjugate” comes from Latin adjugatus, meaning “joined together.” Historically, the adjugate matrix was viewed as a kind of “adjacent” matrix that, when multiplied by the original, yields a scalar multiple of the identity.
Conclusion
The adjoint (adjugate) matrix is a powerful construct that bridges determinants, cofactors, and matrix inverses. By mastering the systematic procedure—compute cofactors with sign adjustments, assemble the cofactor matrix, transpose to obtain the adjoint, and verify with the determinant property—you can confidently tackle problems ranging from solving linear systems to analyzing linear transformations. Whether you’re a student brushing up on linear algebra or a practitioner applying these concepts in engineering or data science, understanding the adjoint deepens your mathematical toolkit and enhances your problem‑solving capabilities.
Latest Posts
Related Posts
More to Discover
-
Which Statement Is Always True
Aug 08, 2026
-
Which Statement Is Always True According To Vsepr Theory
Aug 08, 2026
-
Which Statement Is Always True When Describing Sex Linked Inheritance
Aug 08, 2026
-
Which Statement Is An Accurate Description Of Genes
Aug 08, 2026
-
Which Statement Is An Example Of A Central Idea
Aug 08, 2026