In matrix theory, especially when dealing with inverses of matrices, the concept of the adjoint (also called adjugate) plays a central role. It provides a systematic method to compute the inverse of a square matrix.
The adjoint is constructed using minors and cofactors, making it an important bridge between determinants and matrix inverses.
The adjoint of a matrix is the transpose of its cofactor matrix.
If A is a square matrix, then:
adj(A) = transpose of [cofactor matrix of A]
To compute the adjoint of a matrix A, follow these steps:
The minor of an element is the determinant of the matrix obtained by removing its row and column.
The cofactor is given by:
Cij = (-1)^(i+j) × Mij
Where:
Mij = minor of element at position (i, j)Let:
A = | a b |
| c d |
| d -c |
| -b a |
adj(A) = | d -b |
| -c a |
Let:
A = | 1 2 3 |
| 0 4 5 |
| 1 0 6 |
Compute cofactors for each element:
Cofactor matrix:
| 24 -5 -4 |
| -12 3 2 |
| -2 -5 4 |
adj(A) = | 24 -12 -2 |
| -5 3 -5 |
| -4 2 4 |
The adjoint is used to find the inverse:
A⁻¹ = (1 / det(A)) × adj(A)
det(A) ≠ 0)adj(A) is defined only for square matricesA × adj(A) = det(A) × Iadj(A × B) = adj(B) × adj(A)The adjoint of a matrix is the transpose of its cofactor matrix
Steps involve:
Used in inverse formula:
A⁻¹ = (1 / det(A)) × adj(A)Defined only for square matrices