Cue Column:
- What is Mij vs Cij?
- Sign pattern for cofactors?
- How to compute efficiently?
Note Column: The minor is the determinant of the submatrix obtained by deleting row i and column j. The cofactor = (-1)^(i+j) * . The sign pattern follows a checkerboard:
+ - +
- + -
+ - +
For a 3x3 matrix, you need 9 cofactors for the adjoint, but each is a 2x2 determinant (quick). Organize systematically:
- Write out all 9 minors in a grid
- Apply the sign pattern to get cofactors
- Transpose to get adjoint
Common error: forgetting to transpose. The adjoint is the transpose of the cofactor matrix, not the cofactor matrix itself.
Summary: Cofactor = signed minor. Sign from (-1)^(i+j). Always transpose cofactor matrix to get adjoint.