Quick answer

C_ij = (−1)^(i+j) M_ij and adj(A) = (C_ij)^T. For invertible A, A⁻¹ = adj(A) / det(A).

Formula

  • C_ij = (−1)^(i+j) · M_ij
  • adj(A) = (C_ij)^T
  • A · adj(A) = det(A) · I

Introduction

Textbooks present the adjoint through cofactors, through the product identity, or through the inverse fraction. All three views describe the same matrix if you track signs and transposes carefully.

If you need the concept before the symbols, start with what is an adjoint matrix, then return here for notation you can reuse on every assignment.

The Adjoint Matrix Calculator evaluates adj(A) using the same cofactor logic. When you are ready to execute the algebra on paper, open how to find the adjoint matrix for a full manual workflow with verification tips.

Why transpose cofactors?

Cofactors are signed minors attached to positions (i, j). The raw cofactor grid is useful, but the classical adjoint definition transposes that grid so the product A · adj(A) lands on det(A)·I.

The checkerboard sign (−1)^(i+j) is easy to misapply on 3×3 and 4×4 problems. Draw a small sign chart before you compute any numbers.

Minors grow in size as n grows: a 3×3 minor is a 2×2 determinant, while a 4×4 minor is a 3×3 determinant. Budget time accordingly on exams.

Matrix notation may write adj(A) or adjugate(A). Stick to the symbols your instructor uses, but keep the cofactor-transpose idea constant underneath.

Do not divide by det(A) until you have confirmed it is nonzero. A zero determinant means singular A, not a missing adjoint.

Choose the formula line that matches the question. Some prompts ask only for adj(A); others ask for A⁻¹ and expect the determinant check first.

Forms you may see

  • M_ij = det of A with row i and column j removed
  • C_ij = (−1)^(i+j) · M_ij
  • adj(A) = (C_ij)^T
  • A · adj(A) = adj(A) · A = det(A) · I
  • A⁻¹ = adj(A) / det(A) when det(A) ≠ 0

For 2×2, you may derive the shortcut adj([[a,b],[c,d]]) = [[d,−b],[−c,a]] from these lines. Deriving once helps you remember why the shortcut works.

Practice until you can write adj(A) = (C_ij)^T from memory, then practice until the product identity feels as familiar as the cofactor definition.

After you memorize the forms, work varied 2×2 and 3×3 matrices until the sign pattern feels automatic.

Keep a formula card: cofactor definition on one side, A · adj(A) = det(A) · I on the other.

How to apply the formula

  1. List positions (i, j). Identify which minor belongs to each cofactor after the transpose.
  2. Compute minors and signs. Evaluate minors, multiply by (−1)^(i+j), record C_ij.
  3. Transpose into adj(A). Swap rows and columns of the cofactor grid.
  4. Optional product check. Confirm A · adj(A) = det(A) · I.
  5. Optional inverse step. Divide adj(A) by det(A) only when det(A) ≠ 0.

Formula walkthrough

For A = [[1, 0], [2, 3]], cofactors give adj(A) = [[3, 0], [−2, 1]] with det(A) = 3.

Multiply A · adj(A) to see 3I. The product check catches sign errors faster than staring at a single entry.

For 3×3 matrices, follow the same lines with nine cofactors. Work one row of minors at a time to stay organized.

When fractions appear in the input, simplify minors before you attach signs when that reduces arithmetic load.