What Are the Rules for Determining the Determinant of a 4x4 Matrix?

In summary, the conversation discusses various methods for calculating the determinant of a given matrix. Some methods mentioned include using Jacobi's rule and performing elementary row operations. It is important to keep track of how the ERO's affect the determinant, such as switching rows multiplying by -1, and multiplying a row by a nonzero number.
  • #1
Petrus
702
0
Hello MHB,
calculate determinant of:
\(\displaystyle
\left| {\begin{array}{cc} 2 & -2 & -3 & 8 \\ 1 & -1 & 2 & -1 \\ -3 & 4 & 1 & -1 \\ -2 & 6 & -4 & 19 \end{array} } \right|\)
so I multiplication -2 row 2 and add it to row 1, multiplication 3 to row 2 and add it to row 3, multiplicate 2 to row 2 and add it to row 4 and get
\(\displaystyle
\left| {\begin{array}{cc} 0 & 0 & -5 & -10 \\ 1 & -1 & 2 & -1 \\ 0 & 1 & 7 & -4 \\ 0 & 4 & 0 & 17 \end{array} } \right|\) and develops in columne 1 and use sarrus rule but I get wrong.

Regards,
\(\displaystyle |\rangle\)
 
Physics news on Phys.org
  • #2
There are several methods to do this. You can just use Jacobi's Rule as is to obtain
\begin{align*}\left| \begin{array}{cccc} 2 & -2 & -3 & 8 \\ 1 & -1 & 2 & -1 \\ -3 & 4 & 1 & -1 \\ -2 & 6 & -4 & 19 \end{array} \right|
=&(+1)(2)\left| \begin{array}{ccc}-1 & 2 & -1 \\ 4 & 1 & -1 \\ 6 & -4 & 19 \end{array} \right|
+(-1)(-2)\left| \begin{array}{ccc} 1 & 2 & -1 \\ -3 & 1 & -1 \\ -2 & -4 & 19 \end{array} \right|\\
+&(+1)(-3)\left| \begin{array}{ccc} 1 & -1 & -1 \\ -3 & 4 & -1 \\ -2 & 6 & 19 \end{array} \right|
+(-1)(8)\left| \begin{array}{ccc} 1 & -1 & 2 \\ -3 & 4 & 1 \\ -2 & 6 & -4 \end{array} \right|,
\end{align*}
and keep drilling down in each matrix.
Alternatively, you can do ERO's on the matrix, keeping track of how each ERO changes the determinant.

You can certainly do the ERO's you did. I get
$$\left| \begin{array}{cccc} 2 & -2 & -3 & 8 \\ 1 & -1 & 2 & -1 \\ -3 & 4 & 1 & -1 \\ -2 & 6 & -4 & 19 \end{array} \right| \to
\left| \begin{array}{cccc} 0 & 0 & -7 & 10 \\ 1 & -1 & 2 & -1 \\ 0 & 1 & 7 & -4 \\ 0 & 4 & 0 & 17 \end{array} \right|.$$
If I compare to yours, which is
$$\left| {\begin{array}{cc} 0 & 0 & -5 & -10 \\ 1 & -1 & 2 & -1 \\ 0 & 1 & 7 & -4 \\ 0 & 4 & 0 & 17 \end{array} } \right|,$$
I see that there are some differences. Don't forget, when you actually do the determinant, that the $-1$ in the $2,1$ position has a minus sign associated with it in the Jacobi expansion.
 
  • #3
Ackbach said:
There are several methods to do this. You can just use Jacobi's Rule as is to obtain
\begin{align*}\left| \begin{array}{cccc} 2 & -2 & -3 & 8 \\ 1 & -1 & 2 & -1 \\ -3 & 4 & 1 & -1 \\ -2 & 6 & -4 & 19 \end{array} \right|
=&(+1)(2)\left| \begin{array}{ccc}-1 & 2 & -1 \\ 4 & 1 & -1 \\ 6 & -4 & 19 \end{array} \right|
+(-1)(-2)\left| \begin{array}{ccc} 1 & 2 & -1 \\ -3 & 1 & -1 \\ -2 & -4 & 19 \end{array} \right|\\
+&(+1)(-3)\left| \begin{array}{ccc} 1 & -1 & -1 \\ -3 & 4 & -1 \\ -2 & 6 & 19 \end{array} \right|
+(-1)(8)\left| \begin{array}{ccc} 1 & -1 & 2 \\ -3 & 4 & 1 \\ -2 & 6 & -4 \end{array} \right|,
\end{align*}
and keep drilling down in each matrix.
Alternatively, you can do ERO's on the matrix, keeping track of how each ERO changes the determinant.

You can certainly do the ERO's you did. I get
$$\left| \begin{array}{cccc} 2 & -2 & -3 & 8 \\ 1 & -1 & 2 & -1 \\ -3 & 4 & 1 & -1 \\ -2 & 6 & -4 & 19 \end{array} \right| \to
\left| \begin{array}{cccc} 0 & 0 & -7 & 10 \\ 1 & -1 & 2 & -1 \\ 0 & 1 & 7 & -4 \\ 0 & 4 & 0 & 17 \end{array} \right|.$$
If I compare to yours, which is
$$\left| {\begin{array}{cc} 0 & 0 & -5 & -10 \\ 1 & -1 & 2 & -1 \\ 0 & 1 & 7 & -4 \\ 0 & 4 & 0 & 17 \end{array} } \right|,$$
I see that there are some differences. Don't forget, when you actually do the determinant, that the $-1$ in the $2,1$ position has a minus sign associated with it in the Jacobi expansion.
Hello Ackbach,
I am really grateful for the fast responed!:) Thanks alot! I did not see I start to misscalculate ...:( I have read about a triangle way, can I also use it?

Regards
\(\displaystyle |\rangle\)
 
  • #4
Petrus said:
Hello Ackbach,
I am really grateful for the fast responed!:) Thanks alot! I did not see I start to misscalculate ...:( I have read about a triangle way, can I also use it?

Regards
\(\displaystyle |\rangle\)

If you make your matrix upper triangular, the determinant of the resulting matrix is the product of the entries on the main diagonal. BUT, you still have to keep track of how your ERO's affect the determinant.
 
  • #5
Ackbach said:
BUT, you still have to keep track of how your ERO's affect the determinant.
Hello Ackbach,
What did you mean with that? If you mean with it will be an multiplicate -1 to the determinant because of well in Swedish my book called it "schedule"?
+ - + -
- + - +
+ - + -
- + - +
Regards,
\(\displaystyle |\rangle\)
 
  • #6
No, I mean this:

The ERO that takes a multiple of one row, adds it to another row, and stores it in that row, does not change the determinant.

The ERO that switches two rows multiplies the determinant by $-1$.

The ERO that multiplies a row by a nonzero number $m$ also multiplies the determinant by $m$.
 
  • #7
Ackbach said:
No, I mean this:

The ERO that takes a multiple of one row, adds it to another row, and stores it in that row, does not change the determinant.

The ERO that switches two rows multiplies the determinant by $-1$.

The ERO that multiplies a row by a nonzero number $m$ also multiplies the determinant by $m$.
Thanks again Ackbach!

Regards
\(\displaystyle |\rangle\)
 

FAQ: What Are the Rules for Determining the Determinant of a 4x4 Matrix?

What is the definition of a determinant of a 4x4 matrix?

The determinant of a 4x4 matrix is a numerical value that is calculated using the elements of the matrix. It is a special number that can provide information about the matrix, such as whether it is invertible or not.

How is the determinant of a 4x4 matrix calculated?

To calculate the determinant of a 4x4 matrix, we use a specific formula that involves the elements of the matrix. This formula is known as the "Rule of Sarrus" and it involves finding the sum of products of certain elements in the matrix.

What does the determinant of a 4x4 matrix tell us about the matrix?

The determinant of a 4x4 matrix can tell us a lot about the matrix. For example, if the determinant is equal to 0, the matrix is not invertible. If the determinant is non-zero, the matrix is invertible and we can use it to solve systems of linear equations.

Why is the determinant of a 4x4 matrix important?

The determinant of a 4x4 matrix is important for several reasons. It is used to determine if a matrix is invertible, which is necessary for solving certain mathematical problems. It also has applications in physics, engineering, and other fields of science.

Can the determinant of a 4x4 matrix be negative?

Yes, the determinant of a 4x4 matrix can be negative. The determinant can be positive, negative, or zero, depending on the values of the elements in the matrix. This information is important for understanding the properties of the matrix and its applications in various fields of science.

Similar threads

Replies
5
Views
1K
Replies
4
Views
2K
Replies
5
Views
1K
Replies
2
Views
1K
Replies
7
Views
1K
Replies
2
Views
2K
Replies
4
Views
2K
Back
Top