Adjoint Matrix Calculator
This calculator finds the adjoint (also called the adjugate) of a square matrix, a step used in the standard formula for a matrix inverse and in Cramer's rule. Choose whether you are working with a 2x2 or 3x3 matrix, then enter your values into the matrix grid, which comes pre-filled with example numbers so you can see how it works straight away. As soon as you change a figure, the calculator works out every cofactor by deleting the relevant row and column and applying the checkerboard sign pattern, builds the cofactor matrix, then transposes it to give you adj(A). The results panel shows your original matrix, the cofactor matrix, and the final adjoint side by side, along with the determinant det(A). It then checks its own working by confirming that A multiplied by adj(A) equals det(A) multiplied by the identity matrix, showing a verified pass or a note if the matrix is singular, meaning det(A) equals zero, in which case the adjoint still exists but no inverse does. For 2x2 matrices it also shows the shortcut of swapping the diagonal terms and negating the off-diagonal terms. Use this tool to check homework, to see the cofactor working behind the adjoint method, or as a step before finding the actual inverse with the related Matrix Inverse Calculator. It works with any real-valued 2x2 or 3x3 matrix, including negative and decimal entries.
Matrix Size
Enter Matrix A
What Is the Adjoint of a Matrix?
The adjoint of a square matrix A, written adj(A), is the transpose of its cofactor matrix. It is sometimes called the adjugate to distinguish it from the adjoint defined in inner product spaces (which is the conjugate transpose).
For each element aij of A, the cofactor Cij is:
Cij = (-1)i+j Mij
where Mij is the minor: the determinant of the submatrix formed by deleting row i and column j from A. The cofactor matrix C has Cij at position (i, j). The adjoint is then the transpose of C: adj(A)ij = Cji.
The 2x2 Shortcut
For a 2x2 matrix A = [[a, b], [c, d]], applying the cofactor-then-transpose rule gives:
| Position | Minor | Sign | Cofactor |
|---|---|---|---|
| C11 | d | +1 | d |
| C12 | c | -1 | -c |
| C21 | b | -1 | -b |
| C22 | a | +1 | a |
After transposing, adj(A) = [[d, -b], [-c, a]]. The main diagonal elements swap and the off-diagonal elements are negated.
Worked Example (Default Values)
For A = [[1, 2], [3, 4]]:
- Cofactor C11 = (+1)(4) = 4
- Cofactor C12 = (-1)(3) = -3
- Cofactor C21 = (-1)(2) = -2
- Cofactor C22 = (+1)(1) = 1
- Cofactor matrix = [[4, -3], [-2, 1]]
- adj(A) = transpose of cofactor matrix = [[4, -2], [-3, 1]]
Verification: det(A) = (1)(4) - (2)(3) = 4 - 6 = -2. Then A times adj(A) should equal -2 times I:
[[1,2],[3,4]] x [[4,-2],[-3,1]] = [[(4-6),(-2+2)],[(12-12),(-6+4)]] = [[-2,0],[0,-2]] = -2 x I. Confirmed.
The Adjoint-Inverse Relationship
If det(A) is not zero, the matrix inverse is:
A-1 = adj(A) / det(A)
This is Cramer's rule in matrix form. If det(A) equals zero, the matrix is singular and has no inverse, but the adjoint is still defined.
Related Calculators
- Maths and Stats Calculators: all maths tools on Calculate.co.nz
- Matrix Determinant Calculator: find det(A) for 2x2, 3x3, and 4x4 matrices
- Matrix Inverse Calculator: compute A-1 using the adjoint method or row reduction
- Matrix Multiplication Calculator: multiply two matrices of any compatible size
- Matrix Calculator: add, subtract, and perform other matrix operations
- Antilogarithm Calculator: inverse log, base to the power.
- Aortic Valve Area Calculator (Continuity Equation): calculate aortic valve area by the continuity equation from LVOT diame.
Method: Cofactor expansion (computing each minor by deleting the corresponding row and column, applying the checkerboard sign pattern, then transposing the result). Verification uses the identity A adj(A) = det(A) I.
This calculator works with real numbers. For complex-valued matrices, the adjoint in the Hermitian sense is the conjugate transpose, which is a different operation.