Classical Adjoint — Definition, Formula & Examples
Adjugate
Classical Adjoint
The matrix formed by taking the transpose of
the cofactor matrix of a given
original matrix. The adjugate of matrix A is often written adj
A.
Note: In the past, the term for adjugate used to be adjoint. The name has changed to avoid ambiguity with a different defintition of the term adjoint. Sometimes the adjugate is called the classical adjoint to refer to this older term. Consult a book
on linear algebra for more information.
adj(A) = The classical adjoint (adjugate) of A, equal to the transpose of the cofactor matrix of A
det(A) = The determinant of A, which must be nonzero for the inverse to exist
A−1 = The inverse of matrix A
Worked Example
Problem: Find the classical adjoint of the 2×2 matrix B and use it to compute B⁻¹, where B = [[3, 1], [2, 4]].
Step 1: Find all four cofactors. For a 2×2 matrix, each cofactor is the signed minor of the corresponding element.
C11=+4,C12=−2,C21=−1,C22=+3
Step 2: Write the cofactor matrix by placing each cofactor in its corresponding position.
Cofactor matrix=[4−1−23]
Step 3: Transpose the cofactor matrix to get the classical adjoint (adjugate).
adj(B)=[4−2−13]
Step 4: Compute the determinant of B.
det(B)=(3)(4)−(1)(2)=10
Step 5: Divide the adjugate by the determinant to find the inverse.
B−1=101[4−2−13]=[0.4−0.2−0.10.3]
Answer: The classical adjoint is adj(B) = [[4, −1], [−2, 3]], and the inverse is B⁻¹ = (1/10)·[[4, −1], [−2, 3]].
Another Example
This 3×3 example demonstrates the important identity A · adj(A) = det(A) · I, which is the theoretical basis for why the adjugate method works for computing inverses.
Problem: Find the classical adjoint of the 3×3 matrix C = [[2, 0, 1], [0, 1, 0], [1, 0, 2]] and verify that C · adj(C) = det(C) · I.
Step 1: Compute each cofactor. The signs follow the checkerboard pattern (+, −, +, −, …).
C11=1002=2,C12=−0102=0,C13=0110=−1
Step 2: Continue with the second and third rows.
C21=−0012=0,C22=2112=3,C23=−2100=0
Step 3: Third row cofactors:
C31=0110=−1,C32=−2010=0,C33=2001=2
Step 4: Transpose the cofactor matrix to obtain the classical adjoint.
adj(C)=20−1030−102
Step 5: Verify: compute det(C) = 2(2) − 0 + 1(−1) = 3, then multiply C · adj(C).
C⋅adj(C)=300030003=3I✓
Answer: adj(C) = [[2, 0, −1], [0, 3, 0], [−1, 0, 2]], and the verification confirms C · adj(C) = 3I = det(C) · I.
Frequently Asked Questions
What is the difference between the classical adjoint and the adjoint of a matrix?
The classical adjoint (adjugate) is the transpose of the cofactor matrix. The term 'adjoint' in modern linear algebra usually refers to the conjugate transpose (also called the Hermitian adjoint), denoted A*. The two concepts are entirely different; 'classical adjoint' is used specifically to avoid this confusion.
How do you find the classical adjoint of a 2×2 matrix quickly?
For a 2×2 matrix [[a, b], [c, d]], the classical adjoint is simply [[d, −b], [−c, a]]. You swap the diagonal entries and negate the off-diagonal entries. There is no need to compute individual cofactors separately.
When do you use the classical adjoint to find an inverse?
You can always use adj(A) to find A⁻¹ via the formula A⁻¹ = (1/det A) · adj(A), provided det(A) ≠ 0. For 2×2 matrices, this is the fastest hand-calculation method. For larger matrices, row reduction is often more efficient, but the adjugate formula is important in theoretical proofs and for deriving Cramer's rule.
Classical Adjoint (Adjugate) vs. Adjoint (Conjugate Transpose)
Classical Adjoint (Adjugate)
Adjoint (Conjugate Transpose)
Definition
Transpose of the cofactor matrix
Transpose with complex conjugation of each entry
Notation
adj(A)
A* or A†
Applies to
Square matrices (real or complex)
Any matrix (real or complex), especially in inner product spaces
The classical adjoint appears directly in the formula for the inverse of a matrix, which is one of the most important results in linear algebra. It also provides the theoretical foundation for Cramer's rule, where each component of the solution vector involves cofactors from the adjugate. Students encounter this concept in precalculus and college-level linear algebra courses whenever they need to invert matrices by hand or prove properties of determinants.
Common Mistakes
Mistake: Forgetting to transpose the cofactor matrix.
Correction: The classical adjoint is NOT the cofactor matrix itself — it is the transpose of the cofactor matrix. After computing all cofactors, you must swap rows and columns before calling the result adj(A).
Mistake: Using incorrect signs on the cofactors.
Correction: Each cofactor carries a sign factor of (−1)^(i+j). A common error is applying the wrong sign or forgetting it altogether. Use the checkerboard pattern: + − + / − + − / + − + for a 3×3 matrix.
Related Terms
Cofactor Matrix — The matrix you transpose to get the adjugate