Simplify the Determinant of a 4x4 Matrix A with Row and Column Operations

  • Thread starter Thread starter ultima9999
  • Start date Start date
  • Tags Tags
    Determinant Matrix
AI Thread Summary
The discussion focuses on simplifying the determinant of a 4x4 matrix A using row and column operations to achieve upper triangular form. The initial matrix is transformed, but there is confusion regarding the determinant's value, initially calculated as 1, while the correct answer is -12. The determinant of an upper triangular matrix is the product of its diagonal elements, leading to the conclusion that the determinant is -12 after proper row operations. Participants emphasize the importance of tracking operations and suggest checking the result by expanding the determinant using the third row. The final consensus confirms that the determinant is indeed -12, validating the calculations through different methods.
ultima9999
Messages
43
Reaction score
0
Use row and/or column operations to simplify the determinant of the following matrix A, by reduction to upper triangular form, then evaluate.
A = \left(\begin{array}{cccc}<br /> 2 &amp; 3 &amp; 4 &amp; 5\\<br /> 0 &amp; -1 &amp; 2 &amp; 1\\<br /> 0 &amp; 0 &amp; 2 &amp; 4\\<br /> 0 &amp; 3 &amp; -6 &amp; 0<br /> \end{array}<br /> \right)

Is there an simpler way to find the determinant so that I don't have to expand cofactors etc? Because it would be: 2|(3x3 matrix)| - 3|(3x3 matrix| + 4|(3x3 matrix)| - 5|(3x3 matrix)| and then I have to find the determinants of each 3x3 matrix...
 
Physics news on Phys.org
Yes, there is a simpler way, and the text of the problem itself suggests which way it is. Investigate row and column operations and try to solve the problem.
 
I have reduced to this:A = \left(\begin{array}{cccc}<br /> 1 &amp; 1.5 &amp; 2 &amp; 2.5\\<br /> 0 &amp; 1 &amp; -2 &amp; -1\\<br /> 0 &amp; 0 &amp; 1 &amp; 2\\<br /> 0 &amp; 0 &amp; 0 &amp; 1<br /> \end{array}<br /> \right)

How would I determine the determinant using this?
 
Good work. You can evaluate the determinant by using the fourth row now.
 
Last edited:
The determinant would be 1.

However, the answer is listed as -12, and the second part is to check my answer by expanding the third row of the determinant. I'm at a loss as to what to do now.
 
ultima9999 said:
The determinant would be 1.

However, the answer is listed as -12, and the second part is to check my answer by expanding the third row of the determinant. I'm at a loss as to what to do now.
Then something went wrong with your row/column operations. Actually, I reduced it to an upper triangular form in 3 steps with row operations only. Its easy, go through it one more time.
 
You had better have kept track of your divisors while row reducing. Dividing one row by a number divides the determinant by that number.
Swapping two rows multiplies the determinant by -1. Add a multiple of one row to another does not change the determinant.

Starting with
\left(\begin{array}{cccc}2 &amp; 3 &amp; 4 &amp; 5\\0 &amp; -1 &amp; 2 &amp; 1\\0 &amp; 0 &amp; 2 &amp; 4\\0 &amp; 3 &amp; -6 &amp; 0\end{array}\right)
since the first column is already 0's (except for the first row), start on the second column: add 3 times the second row to the fourth row to get
\left(\begin{array}{cccc}2 &amp; 3 &amp; 4 &amp; 5\\0 &amp; -1 &amp; 2 &amp; 1\\0 &amp; 0 &amp; 2 &amp; 4\\0 &amp; 0 &amp; 0&amp; 3\end{array}\right)
Now we have an upper triangular matrix: it's determinant is just the product of the numbers on the main diagonal:2(-1)(2)(3)= -12. Since the only row operation used was "add a multiple of one row to another", that is the determinant of the original matrix.
 
I realized that I reduced to upper triangular row echelon form rather than just upper triangular form.

The next part asks me to check this determinant by expanding the third row. How do I go about expanding it? Would it be using cofactors etc.?
 
Yes, that's what "expanding" a determinant means. Using the third row is particularly easy since it has only 2 non-zero numbers.
 
  • #10
I thought I'd mention
that the -12 seems to
be the right answer, because
I am getting -48 + 48 -12 + many zero terms,
so -12 seems right.
I am using a pictoral technique
from post#7 from this forum:
http://www.mathisfunforum.com/viewtopic.php?pid=95302#p95302
(I made that red/black diagram, so I was checking
my work with this example)
 
  • #11
Jack, this thread is two years old! And it was said two years ago that -12 is the determinant.
 
  • #12
ultima9999 said:
...Because it would be: 2|(3x3 matrix)| - 3|(3x3 matrix| + 4|(3x3 matrix)| - 5|(3x3 matrix)| and then I have to find the determinants of each 3x3 matrix...

You should know that you can take the determinant along any column as well as any row, so the obvious choice here is to thake the det. along column 2,0,0,0.

this way you end up with 2|(3x3 matrix)| - 0|(3x3 matrix| + 0|(3x3 matrix)| - 0|(3x3 matrix)|
so now the det is 2 times the determinant of the remaining matrix

-1, 2, 1
0, 2, 4
0, 0, 3

Which is -6, and -6*2= -12.
 
Back
Top