Quick answer

A^T flips indices of entries of A. adj(A) is (C_ij)^T where C_ij are cofactors of A, not raw entries of A.

Formula

  • (A^T)_ij = a_ji
  • adj(A) = (C_ij)^T with C_ij = (−1)^(i+j) M_ij
  • In general adj(A) ≠ A^T

Introduction

Both names sound like rearrangements, but only the transpose rearranges the original entries. The adjoint rearranges signed minors from deleted submatrices.

Start from what is an adjoint matrix if you need the cofactor definition, then test numeric cases on the Adjoint Matrix Calculator while you practice transpose by hand on the same matrix.

For how adj(A) scales into an inverse when det(A) is nonzero, see adjoint matrix and inverse matrix after you can compute both operations on one example.

Side-by-side meaning

Transpose is lightweight: swap row and column indices across the whole matrix. No determinants are required.

Adjoint is heavier: compute every minor, attach signs, build the cofactor matrix, then transpose that new matrix.

Special cases exist where adj(A) resembles A^T, but you should never assume the relationship without calculation.

Some applied fields use different words for transpose on complex matrices. This article compares real-matrix adjugate with ordinary transpose as taught in introductory linear algebra.

Write the operation name in your margin before you start arithmetic to avoid solving the wrong question under time pressure.

Notation contrast

  • Transpose: (A^T)_ij = a_ji
  • Adjoint: adj(A) = (C_ij)^T
  • Cofactor: C_ij = (−1)^(i+j) M_ij
  • Identity link: A · adj(A) = det(A) · I

Only the adjoint satisfies the determinant identity in general. Transpose pairs with inner products and symmetric matrix discussions.

When a problem asks for A^T, do not expand cofactors. When it asks for adj(A), do not merely flip entries unless you verified a size-specific shortcut.

Read symbols carefully: adj(A) and adjugate point to cofactors; A^T or A prime point to transpose.

Highlight matching and differing entries when you compare results on paper so the contrast sticks visually.

Compare the operations

  1. Read the symbol carefully. adj(A) points to cofactors. A^T points to transpose.
  2. Compute A^T if needed. Swap rows and columns of the original entries only.
  3. Compute adj(A) if needed. Minors, signs, cofactor grid, then transpose that grid.
  4. Compare results on paper. Use the same A for both operations in one notebook page.

Same A, two answers

Let A = [[2, 5], [1, 3]]. Then A^T = [[2, 1], [5, 3]] by swapping entries across the diagonal.

Cofactors give adj(A) = [[3, −5], [−1, 2]], which is not equal to A^T for this A.

Compute both operations whenever vocabulary feels fuzzy. One correct transpose does not excuse a wrong adjoint.

Which one appears in A⁻¹ = adj(A)/det(A)? The adjoint, not the transpose, unless they happen to coincide for a particular A.