Compute adj(A) via minors, cofactors, and transpose for 2x2 and 3x3 matrices
The adjugate (classical adjoint) of a square matrix is the transpose of its cofactor matrix. It is used to compute the matrix inverse and is important in linear algebra for solving systems of equations and understanding matrix properties.
The adjugate (or classical adjoint) of a square matrix is the transpose of its cofactor matrix. It plays a crucial role in matrix theory because A x adj(A) = adj(A) x A = det(A) x I. This property allows computing the inverse as A^{-1} = adj(A)/det(A). For 2x2 matrices, the pattern is simple: swap diagonal entries, negate off-diagonals.
The minor M_ij is the determinant of the submatrix after removing row i and column j. For 2x2, each elements minor is the opposite diagonal element.
C_ij = (-1)^(i+j) x M_ij. The checkerboard sign pattern: + - + / - + - / + - + for 3x3.
adj(A) = C^T. Swap rows and columns of the cofactor matrix. Row i column j of adj = C_ji.
adj([[a,b],[c,d]]) = [[d,-b],[-c,a]]. No minors needed for 2x2. Swap main diagonal, negate off-diagonals.
Free online calculators and tools covering mathematics, unit conversion, text processing, and daily life. Accurate, fast, mobile-friendly, and completely free to use.
© 2026 IP331.com — Free Online Tools. All rights reserved.
About · Contact · Privacy Policy · Cookie Policy · Terms of Use · Disclaimer · Sitemap