Matrix determinant

Finding the determinant

For the matrix M=\begin{pmatrix} a & b \\ c & d \end{pmatrix}, the determinant can be calculated by doing:

ad-bc

Find the determinant of \begin{bmatrix} 3 & 8 \\ 4 & 6 \end{bmatrix}

Find the determinant of \begin{bmatrix} 6 & 5 \\ 1 & 2 \end{bmatrix}

Representing the determinant

The determinant of the matrix M above can be represented in one of these ways, for example:

|M|

\det M

\Delta M

|\begin{matrix} a & b \\ c & d \end{matrix}|

Singular matrix

See singular matrix.

\det{AB}=\det{BA}=\det{A}\det{B}

TODO: explain this property

flashcards

QuestionAnswer
For the matrix M=\begin{pmatrix} a & b \\ c & d \end{pmatrix}, what is the formula for its determinant?ad-bc
What is the determinant of \begin{bmatrix} 3 & 8 \\ 4 & 6 \end{bmatrix}?3 \cdot 6 - 8 \cdot 4 = 18 - 32 = -14
What is the determinant of \begin{bmatrix} 6 & 5 \\ 1 & 2 \end{bmatrix}?6 \cdot 2 - 5 \cdot 1 = 12 - 5 = 7
List three ways to represent the determinant of matrix M.$
What property relates \det{AB}, \det{BA}, \det{A}, and \det{B}?\det{AB} = \det{BA} = \det{A} \cdot \det{B}
What is the relationship between a matrix’s determinant and whether it is singular?See singular matrix. A matrix with a determinant of zero is singular.