Free Adjoint (Adjugate) Matrix Calculator
Enter any square matrix and instantly compute its adjoint matrix, cofactor matrix, determinant, and inverse (when it exists).
Tip: You can use decimals and negative values. The matrix must be square.
What Is the Adjoint Matrix?
The adjoint matrix (also called the adjugate matrix) is built from the cofactor matrix of a square matrix and then transposed. If a matrix is called A, its adjoint is written as adj(A).
It is a key object in linear algebra because it connects directly to matrix inversion: for any square matrix with non-zero determinant, A-1 = adj(A) / det(A).
How This Calculator Works
- Accepts square matrices from 1×1 to 6×6.
- Computes the determinant of the input matrix.
- Builds each minor and cofactor to form the cofactor matrix.
- Transposes the cofactor matrix to produce the adjoint matrix.
- If the determinant is non-zero, also shows the inverse matrix.
Step-by-Step Formula
1) Minor of an entry
For entry aij, remove row i and column j. The determinant of the remaining matrix is the minor Mij.
2) Cofactor of an entry
Cij = (-1)i+j Mij.
3) Build the cofactor matrix
Place each cofactor in the same position to form C.
4) Transpose to get the adjoint
adj(A) = CT.
Why the Adjoint Matrix Matters
Even though modern numerical methods often use decomposition techniques (like LU or QR), the adjoint still matters for:
- Hand calculations and linear algebra coursework
- Symbolic matrix manipulations
- Understanding inverse matrix theory from first principles
- Deriving identities involving determinants and cofactors
Common Mistakes to Avoid
- Using a non-square matrix (adjoint is only defined for square matrices).
- Forgetting checkerboard signs in cofactors.
- Confusing the cofactor matrix with the adjoint matrix (adjoint is the transpose of cofactors).
- Trying to compute an inverse when the determinant is zero.
Quick FAQ
Is adjoint the same as inverse?
No. The inverse is adj(A) divided by det(A), and only exists when det(A) ≠ 0.
What if the determinant is zero?
The matrix is singular, so there is no inverse. The adjoint still exists and can still be computed.
Can I use decimals?
Yes. This tool supports integer and decimal entries, including negatives.
Final Note
This adjoint matrix calculator is designed for speed, clarity, and learning. If you are studying matrix algebra, try a few matrices by hand first, then use the calculator to verify your results.