Advice on calculating the determinant for 3x3 Matrix by inspection

In summary, the conversation is about calculating the determinant of a 3x3 matrix using elementary row operations. The steps involve getting a triangular matrix and then multiplying the elements of the diagonal to get the determinant. The mistake made was in the linear combination used to replace a row, which resulted in a sign error.
  • #1
SubZer0
19
0

Homework Statement



The problem is to calculate the determinant of 3x3 Matrix by using elementary row operations. The matrix is:

A =
[1 0 1]
[0 1 2]
[1 1 0]

Homework Equations

The Attempt at a Solution



By following the properties of determinants, I attempt to get a triangular matrix. The steps I follow are:

R3 = (-1)*R1 + R3
[1 0 1]
[0 1 2]
[0 1 -1]

R3 = (-1)*R3 + R2
[1 0 1]
[0 1 2]
[0 0 3]

Which is now a triangular matrix. To calculate the determinant, it should be a simple matter of multiplying the elements of the diagonal, eg. 1 * 1 * 3 = 3. If I calculate the determinant by cofactor, the determinant is -3.
By following the row operations (adding a multiple of a row), this should not affect the determinant. Where am I going wrong?

Retrospectively, doing a row swap of 1 and 3 would have been easier, but this, theoretically, should work.
 
Physics news on Phys.org
  • #2
You can only add/subtract other rows to a row. The linear combination you replace the row with must have 1 as the prefactor of the old row. In your case you are doing
SubZer0 said:
R3 = (-1)*R3 + R2
which has -1 as the prefactor. You need to do R3new = R3 - R2. Because you put a minus sign before R3, you are getting a sign error.
 
  • #3
Thanks, Orodruin, this makes perfect sense now. Thanks for the explanation.
 

1. What is a determinant?

A determinant is a mathematical concept used to determine properties of a square matrix, such as whether it is invertible or singular. It is denoted by the symbol "|" or "det" and is calculated by a specific formula.

2. Why is calculating the determinant important for 3x3 matrices?

Calculating the determinant of a 3x3 matrix is important because it can help determine if the matrix has an inverse, which is necessary for solving systems of linear equations. It also provides information about the linear transformation represented by the matrix.

3. What is the process for calculating the determinant of a 3x3 matrix by inspection?

The process for calculating the determinant of a 3x3 matrix by inspection is to identify the elements of the matrix, group them into three 2x2 submatrices, and then use the formula ad-bc to find the determinant of each submatrix. Finally, add or subtract these determinants to find the overall determinant of the 3x3 matrix.

4. Can you provide an example of calculating the determinant of a 3x3 matrix by inspection?

Sure, let's consider the matrix A = [1 2 3; 4 5 6; 7 8 9]. We can group the elements into three 2x2 submatrices: A1 = [1 2; 4 5], A2 = [2 3; 5 6], and A3 = [4 5; 7 8]. Using the formula ad-bc, we get det(A1) = (1*5)-(2*4) = -3, det(A2) = (2*6)-(3*5) = -3, and det(A3) = (4*8)-(5*7) = -3. Therefore, det(A) = -3 + (-3) + (-3) = -9.

5. Are there any shortcuts or tricks for calculating the determinant of a 3x3 matrix?

Yes, there are a few shortcuts that can be used to calculate the determinant of a 3x3 matrix. One is the "Sarrus rule," which involves writing out the matrix twice in a specific pattern and then adding the products of the upward diagonal elements and subtracting the products of the downward diagonal elements. Another shortcut is using the Laplace expansion method, which involves expanding the determinant along a row or column and using the determinants of smaller submatrices to find the overall determinant.

Similar threads

  • Introductory Physics Homework Help
Replies
8
Views
853
  • Linear and Abstract Algebra
Replies
8
Views
873
  • Introductory Physics Homework Help
Replies
11
Views
1K
  • Introductory Physics Homework Help
Replies
22
Views
2K
  • Introductory Physics Homework Help
Replies
4
Views
1K
  • Precalculus Mathematics Homework Help
Replies
32
Views
836
  • Linear and Abstract Algebra
Replies
2
Views
418
Replies
13
Views
2K
  • Linear and Abstract Algebra
Replies
12
Views
1K
  • Introductory Physics Homework Help
Replies
2
Views
730
Back
Top