Advice on calculating the determinant for 3x3 Matrix by inspection

Click For Summary
SUMMARY

The discussion centers on calculating the determinant of a 3x3 matrix using elementary row operations. The matrix in question is A = [1 0 1; 0 1 2; 1 1 0]. The user initially attempted to achieve a triangular form through row operations but encountered a discrepancy in the determinant values, calculating 3 through row operations and -3 via cofactor expansion. The error was identified as a sign error due to an incorrect prefactor in the row operation, specifically using R3 = (-1)*R3 + R2 instead of the correct R3 = R3 - R2.

PREREQUISITES
  • Understanding of 3x3 matrix determinants
  • Familiarity with elementary row operations
  • Knowledge of triangular matrices
  • Experience with cofactor expansion method
NEXT STEPS
  • Study the properties of determinants in linear algebra
  • Learn about the implications of row operations on determinant values
  • Practice calculating determinants using both row operations and cofactor methods
  • Explore the concept of matrix row echelon form and its applications
USEFUL FOR

Students studying linear algebra, educators teaching matrix operations, and anyone looking to deepen their understanding of determinant calculations.

SubZer0
Messages
19
Reaction score
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
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.
 
Thanks, Orodruin, this makes perfect sense now. Thanks for the explanation.
 

Similar threads

  • · Replies 8 ·
Replies
8
Views
1K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
22
Views
4K
Replies
3
Views
848
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 6 ·
Replies
6
Views
2K