Determinant of a Square Matrix

Key Questions

  • Without any other information, all we can say is:

    #det(A^{-1})=1/{det(A)}#


    I hope that this was helpful.

  • Every SQUARE matrix #nxxn# has a determinant.
    The determinant #|A|# of a square matrix #A# is a number that helps you to decide:

    1) What kind of solutions a system (from whose coefficients you built the square matrix #A#) can have (unique, no solutions or an infinite number of solutions);

    2) If your matrix #A#, considered as an operator that produce transformations on vectors (making them bigger, flipping them, reducing them...etc.), can have an inverse (operating an inverse transformation) and what is the size of the transformation produced by #A#.

    You can have a look to System of Linear Equations and Eigenvalues/Eigenvectors.

  • Assuming that we have a square matrix, then the determinant of the matrix is the determinant with the same elements.

    Eg if we have a #2xx2# matrix:

    # bb(A) = ( (a,b), (c,d) ) #

    The the associated determinant given by

    # D = | bb(A) | = | (a,b), (c,d) | = ad-bc#

  • The determinant of a matrix #A# helps you to find the inverse matrix #A^(-1)#.

    You can know a few things with it :

    • #A# is invertible if and only if #Det(A) != 0#.

    • #Det(A^(-1)) = 1/(Det(A))#

    • #A^(-1) = 1/(Det(A)) * ""^t((-1)^(i+j)*M_(ij))#,

    where #t# means the transpose matrix of #((-1)^(i+j)*M_(ij))#,

    where #i# is the n° of the line, #j# is the n° of the column of #A#,

    where #(-1)^(i+j)# is the cofactor in the #i#-th row and #j#-th column of #A#,

    and where #M_(ij)# is the minor in the #i#-th row and #j#-th column of #A#.

Questions