Adjoint Matrix Calculator
Solve adjoint matrix problems step-by-step with our free calculator. See formulas, worked examples, and clear explanations.
Reviewed for accuracy by Manoj Kumar, Mathematics Educator
Adjoint Matrix Calculator
Calculator
Adjust values & calculateEnter your values below. Every result is computed in your browser — no data is sent to any server.
Formula: adj(A) = (cofactor matrix of A)ᵀ
Worked example — adj(A) = [[4,-1],[-2,3]], det(A) = 10
Formula
adj(A) = (cofactor matrix of A)ᵀ
Enter matrix values row by row, separated by commas.
Worked Examples
Example 1: Adjoint of a 2x2 matrix
Problem:Find the adjoint of A = [[3,1],[2,4]].
Solution:Swap the diagonal (3 and 4) and negate the off-diagonal (1 and 2): adj(A) = [[4,-1],[-2,3]]. Determinant = 3×4 - 1×2 = 10.
Result:adj(A) = [[4,-1],[-2,3]], det(A) = 10
Example 2: Using the adjoint to find the inverse
Problem:Using A = [[3,1],[2,4]] and its adjoint from the previous example, find A⁻¹.
Solution:A⁻¹ = adj(A)/det(A) = [[4,-1],[-2,3]] / 10 = [[0.4,-0.1],[-0.2,0.3]].
Result:A⁻¹ = [[0.4,-0.1],[-0.2,0.3]]
Frequently Asked Questions
What is the adjoint (adjugate) matrix used for?
The adjoint matrix's primary use is computing the matrix inverse without using row reduction: A⁻¹ = adj(A) / det(A). It's also used in Cramer's Rule for solving systems of linear equations, and it remains well-defined even for singular matrices (det = 0), where the ordinary inverse does not exist — a useful property in some symbolic and theoretical derivations.
Why is the adjoint the transpose of the cofactor matrix, rather than the cofactor matrix itself?
The transpose step is what makes the inverse formula work correctly. When you multiply A by adj(A), the diagonal entries of the product all equal det(A) (from the standard cofactor expansion), but the off-diagonal entries only vanish to zero because of the transpose — without it, A × C (the un-transposed cofactor matrix) would not generally equal det(A) times the identity matrix.
What is the difference between 'adjoint' in this context and the 'adjoint' (conjugate transpose) used for complex matrices?
In elementary linear algebra, 'adjoint' (or adjugate, to avoid ambiguity) refers to the transpose of the cofactor matrix, as used here for inverse computation. In more advanced contexts (especially with complex-valued matrices), 'adjoint' can instead mean the conjugate transpose (Hermitian adjoint), A* = ĀᵀA, used in quantum mechanics and functional analysis — a completely different operation despite the shared name. Many modern textbooks now prefer 'adjugate' specifically to avoid this confusion.
How does the adjoint matrix behave for a 2x2 matrix specifically?
For a 2x2 matrix [[a,b],[c,d]], the adjoint has a simple, memorable pattern: swap the two diagonal entries (a and d) and negate the two off-diagonal entries (b and c), giving adj(A) = [[d,-b],[-c,a]]. This shortcut avoids the general cofactor-and-transpose process entirely for the 2x2 case.
What happens to the adjoint matrix if the original matrix is singular (det = 0)?
The adjoint matrix is still perfectly well-defined and computable even when det(A) = 0 — only the inverse (adj(A)/det(A)) becomes undefined, since that final division by zero is impossible. In fact, when A is singular, A × adj(A) always equals the zero matrix, a useful fact in some theoretical proofs about rank and null spaces.
How does the size of the adjoint matrix compare to the original matrix?
The adjoint matrix always has exactly the same dimensions as the original square matrix — an n×n matrix produces an n×n adjoint. This is different from the determinant, which is always a single scalar number regardless of the matrix's size.
Where does the adjoint matrix appear outside of pure linear algebra coursework?
Beyond inverse computation, the adjugate matrix appears in control theory (computing transfer functions via the resolvent matrix), in computer graphics (transforming surface normal vectors correctly under non-uniform scaling, which requires the inverse-transpose derived from the adjugate), and in symbolic computation, where exact fractional inverses are needed without introducing rounding error from direct division.
References
Reviewed for accuracy by Manoj Kumar, Mathematics Educator · Editorial policy
Related Calculators
🧮Matrix Exponential Calculator
Calculate matrix exponential with inputs, formulas, and instant results.
🧮Matrix Addition and Subtraction Calculator
Calculate matrix addition and subtraction with inputs, formulas, and instant results.
🧮Matrix by Scalar Calculator
Calculate matrix by scalar with inputs, formulas, and instant results.
🧮Matrix Determinant Calculator
Calculate matrix determinant with inputs, formulas, and instant results.
🧮Matrix Multiplication Calculator
Calculate matrix multiplication with inputs, formulas, and instant results.
🧮Matrix Norm Calculator
Calculate matrix norm with inputs, formulas, and instant results.
🧮Matrix Power Calculator
Calculate matrix power with inputs, formulas, and instant results.
🧮Matrix Rank Calculator
Calculate matrix rank with inputs, formulas, and instant results.