Adjoint Matrix Calculator

Calculate adjoint (adjugate) matrix with step-by-step solutions

Matrix Input

Enter values row by row, from left to right

Input Matrix A:

1.002.00
3.004.00

Results

Adjoint Matrix adj(A):

4.00-2.00
-3.001.00

Cofactor Matrix C:

4.00-3.00
-2.001.00
-2.0000
Determinant
Invertible
Matrix Type

Matrix Inverse Formula:

A⁻¹ = (1/det(A)) × adj(A)

A⁻¹ = (1/-2.0000) × adj(A)

Step-by-step solution:

1.
Given 2×2 matrix A:
2.
[    1.00     2.00]
[    3.00     4.00]
3.
Step 1: Calculate the cofactor matrix C
4.
For each element A[i][j], calculate C[i][j] = (-1)^(i+j) × Minor[i][j]
5.
For 2×2 matrix:
6.
C[0][0] = (-1)^(0+0) × 4 = 4
7.
C[0][1] = (-1)^(0+1) × 3 = -3
8.
C[1][0] = (-1)^(1+0) × 2 = -2
9.
C[1][1] = (-1)^(1+1) × 1 = 1
10.
Cofactor matrix C:
11.
[    4.00    -3.00]
[   -2.00     1.00]
12.
Step 2: Transpose the cofactor matrix to get the adjoint matrix
13.
adj(A) = C^T
14.
Adjoint matrix:
15.
[    4.00    -2.00]
[   -3.00     1.00]
16.
Additional information:
17.
Determinant of A = -2.0000
18.
Since det(A) ≠ 0, the matrix is invertible.
19.
The inverse matrix A^(-1) = (1/det(A)) × adj(A)

Example Calculations

2×2 Matrix Example

Matrix A: [[1, 2], [3, 4]]

Cofactor Matrix: [[4, -3], [-2, 1]]

Adjoint Matrix: [[4, -2], [-3, 1]]

Determinant: -2

3×3 Matrix Example

Matrix A: [[1, 0, 2], [0, 1, 0], [1, 0, 1]]

Steps: Calculate 9 cofactors, arrange in matrix, then transpose

Result: Each element follows the pattern (-1)^(i+j) × Minor[i][j]

Matrix Properties

1

Adjoint Definition

Transpose of cofactor matrix

adj(A) = C^T

2

Cofactor Formula

C[i][j] = (-1)^(i+j) × M[i][j]

M is the minor matrix

3

Inverse Relation

A⁻¹ = adj(A)/det(A)

If det(A) ≠ 0

Calculation Tips

Only square matrices have adjoints

Adjoint = transpose of cofactor matrix

Sign pattern: checkerboard of +/-

Used for matrix inversion

A × adj(A) = det(A) × I

Understanding Adjoint (Adjugate) Matrix

What is an Adjoint Matrix?

The adjoint (or adjugate) matrix of a square matrix A is the transpose of its cofactor matrix. It plays a crucial role in calculating matrix inverses and solving linear systems.

Calculation Steps

  1. 1.Find the minor of each element by removing its row and column
  2. 2.Calculate the cofactor using the sign pattern (-1)^(i+j)
  3. 3.Form the cofactor matrix with all cofactors
  4. 4.Transpose the cofactor matrix to get the adjoint

Applications

  • Computing matrix inverses
  • Solving linear systems (Cramer's rule)
  • Theoretical matrix analysis

2×2 Matrix Formula

For matrix:

⎡ a b ⎤
⎣ c d ⎦

Adjoint is:

⎡ d -b ⎤
⎣ -c a ⎦

Important Properties

Matrix Product

A × adj(A) = det(A) × I

Inverse Formula

A⁻¹ = adj(A) / det(A)

Determinant Relation

det(adj(A)) = det(A)^(n-1)

Note

The terms "adjoint" and "adjugate" are often used interchangeably for this concept. In some contexts, "adjoint" may refer to the conjugate transpose, so "adjugate" is sometimes preferred for clarity.