How do you use elementary row or column operations to find the determinant of the following matrix?
$$\begin{bmatrix} 1 & 7 & -3\\ 1 &3 & 1\\ 4&8&1\end{bmatrix}$$
How do you use elementary row or column operations to find the determinant of the following matrix?
$$\begin{bmatrix} 1 & 7 & -3\\ 1 &3 & 1\\ 4&8&1\end{bmatrix}$$
Copyright © 2021 JogjaFile Inc.
The key idea in using row operations to evaluate the determinant of a matrix is the fact that a triangular matrix (one with all zeros below the main diagonal) has a determinant equal to the product of the numbers on the main diagonal. Therefore one would like to use row operations to 'reduce' the matrix to triangular form.
However, the effect of using the three row operations on a determinant are a bit different than when they are used to reduce a system of linear equations.
(1) Swapping two rows changes the sign of the determinant
(2) When dividing a row by a constant, the constant becomes a factor written in front of the determinant.
(3) Adding a multiple of one row to another does not change the value of the determinant.
Let's apply these operations to your matrix to find its determinant.
First we want to produce two zeros in rows $2$ and $3$ of column $1$. (Remember our goal is to produce all zeros below the main diagonal, and we do this one column at a time beginning with column $1$.)
The two row operations $-R_1+R_2\to R_2$ and $-4R_1+R_3\to R_3$ will accomplish this goal, and will not change the value of the determinant.
\begin{eqnarray} \begin{vmatrix}1 & 7 & -3\\ 1 & 3 & 1 &\\ 4 & 8 & 1 \end{vmatrix} &=& \begin{vmatrix} 1 & 7 & -3\\0 & -4 & 4\\0 & -20 & 13\end{vmatrix} \end{eqnarray}
Now all that remains is to obtain a $0$ in row $3$ column $2$. We see that adding $-5$ times row $2$ to row $3$ will accomplish this. That is, $-5R_2+R_3\to R_3$.
\begin{eqnarray} \begin{vmatrix}1 & 7 & -3\\ 1 & 3 & 1 &\\ 4 & 8 & 1 \end{vmatrix} &=& \begin{vmatrix} 1 & 7 & -3\\0 & -4 & 4\\0 & -20 & 13\end{vmatrix}\\ &=& \begin{vmatrix} 1 & 7 & -3\\0 & -4 & 4\\0 & 0 & -7 \end{vmatrix} \end{eqnarray}
Since we only had to use the third row operation, the one which does not change the value of the determinant and since we now have a triangular matrix, we find the determinant by multiplying the numbers on the main diagonal.
\begin{eqnarray} \begin{vmatrix}1 & 7 & -3\\ 1 & 3 & 1 &\\ 4 & 8 & 1 \end{vmatrix} &=& \begin{vmatrix} 1 & 7 & -3\\0 & -4 & 4\\0 & -20 & 13\end{vmatrix}\\ &=& \begin{vmatrix} 1 & 7 & -3\\0 & -4 & 4\\0 & 0 & -7 \end{vmatrix}\\ &=&28 \end{eqnarray}