adjugate matrix calculator

Enter real numbers (decimals are allowed). You can also use simple fractions like 3/4 or -7/2.

What is the adjugate matrix?

The adjugate (also called the classical adjoint) of a square matrix is built from cofactors and then transposed. If your matrix is A, its adjugate is written as adj(A). It appears in a classic identity:

A · adj(A) = adj(A) · A = det(A) · I

That single equation makes the adjugate very useful in linear algebra, especially for understanding inverses and symbolic matrix manipulations.

How this calculator works

This tool computes the adjugate for any square matrix from 1×1 up to 6×6. Internally, it follows the standard definition:

  • Build each minor by removing one row and one column.
  • Compute each minor determinant.
  • Apply the checkerboard sign pattern to get cofactors.
  • Transpose the cofactor matrix to get the adjugate.

The calculator also shows the determinant. If the determinant is non-zero, it additionally returns the inverse using:

A-1 = adj(A) / det(A)

Quick refresher: minors, cofactors, and transpose

Minor

The minor Mij is the determinant of the matrix left after removing row i and column j.

Cofactor

The cofactor Cij is:

Cij = (-1)i+j Mij

Adjugate

Arrange all cofactors into a cofactor matrix C, then transpose:

adj(A) = CT

Why the adjugate matters

  • Finding inverses: a direct formula for inverse matrices when det(A) ≠ 0.
  • Theory and proofs: common in derivations and symbolic identities.
  • Control systems and engineering: appears in matrix polynomial and transfer-function work.
  • Education: helps build intuition about determinant structure and cofactor expansion.

Example workflow

  1. Select matrix size (for example 3×3).
  2. Enter values into the grid.
  3. Click Calculate Adjugate.
  4. Read determinant, cofactor matrix, and adjugate in the result panel.
  5. If invertible, use the displayed inverse directly.

Common mistakes to avoid

  • Using a non-square matrix (adjugate only exists for square matrices).
  • Forgetting the cofactor sign pattern (+ − + / − + − / + − + ...).
  • Confusing the cofactor matrix with the adjugate (adjugate is the transpose of cofactors).
  • Assuming inverse exists when determinant is zero.

Final note

The adjugate matrix is one of those ideas that looks mechanical at first, but it reveals deep structure in linear algebra. Use this calculator to verify hand solutions, test examples from class, or speed up homework checks while still understanding each step.

🔗 Related Calculators