Quick answer

If det(A) ≠ 0, then A⁻¹ = adj(A) / det(A), meaning each entry of adj(A) is divided by det(A).

Formula

  • A · adj(A) = det(A) · I
  • A⁻¹ = adj(A) / det(A)
  • Singular when det(A) = 0

Introduction

The adjoint is not automatically an inverse. It is a matrix you scale by 1/det(A) when the determinant is nonzero.

Review adjoint matrix formula if you need the product identity A · adj(A) = det(A) · I before you divide. Compute adj(A) with the Adjoint Matrix Calculator, find det(A) separately, then compare your fraction with the tool.

For an exam-style checklist that walks through all three steps in order, continue to matrix inverse using the adjoint method once you understand why the division is valid.

Why the link works

Multiply A · adj(A) = det(A) · I by 1/det(A) when det(A) is not zero. The left side becomes A · (adj(A)/det(A)), which must equal I, so the scaled adjoint is the inverse.

When det(A) = 0, adj(A) may still be computed, but no ordinary multiplicative inverse exists for A over the reals.

For small homework sizes, dividing every entry by det(A) is fine. For very large systems, courses often teach Gaussian elimination instead, but the adjoint relationship remains conceptually important.

Always compute det(A) before you divide. If det(A) = 0, stop and report that A is singular.

After you form A⁻¹, multiply A · A⁻¹ to catch arithmetic slips even when the adjoint grid looked correct.

Inverse formulas

  • A · adj(A) = det(A) · I
  • A⁻¹ = (1/det(A)) · adj(A)
  • Equivalent check: A · A⁻¹ = I

For 2×2 matrices, combining the adjoint shortcut with det(A) = ad − bc gives a fast inverse template.

Is adj(A) always equal to A⁻¹? No. adj(A) equals det(A)·A⁻¹ when A is invertible.

Can det(A) be negative? Yes. Divide by the negative determinant exactly.

Many courses require both adjoint and row-reduction methods. The adjoint link explains why 2×2 inverse cards look the way they do.

From adjoint to inverse

  1. Find det(A). If det(A) = 0, the inverse formula does not apply.
  2. Find adj(A). Use cofactors and transpose, or the calculator for the grid.
  3. Divide each entry by det(A). Form A⁻¹ = adj(A) / det(A). Simplify fractions when possible.
  4. Verify A · A⁻¹ = I. Multiply matrices to confirm the identity.

Inverse from adjoint

Let A = [[1, 2], [3, 4]]. Then adj(A) = [[4, −2], [−3, 1]] and det(A) = −2.

A⁻¹ = adj(A)/det(A) = [[−2, 1], [3/2, −1/2]] after dividing each entry by −2.

Multiply A by this candidate to confirm you recover the 2×2 identity matrix.

For 3×3 inverses the same formula works but adj(A) takes longer; many students use the calculator for adj(A) and hand-compute det(A), depending on the assignment.