Finding the determinant of a 3x3 matrix.

Click For Summary
SUMMARY

This discussion centers on finding the determinant of a 3x3 matrix using various methods, specifically Cramer's rule and expansion techniques. The original poster (OP) encountered difficulties with row augmentation for the variable z while successfully applying it for x and y. Participants clarified that expansion can be performed along any row or column, with a preference for those containing zeros to simplify calculations. Additionally, the Sarus rule was introduced as an efficient method for calculating 3x3 determinants.

PREREQUISITES
  • Understanding of Cramer's rule for solving linear equations
  • Familiarity with determinant properties and calculations
  • Knowledge of Laplace's expansion for determinants
  • Basic matrix operations including row reduction techniques
NEXT STEPS
  • Study the Sarus rule for calculating 3x3 determinants
  • Learn about Laplace's expansion in detail for larger matrices
  • Practice row reduction techniques to simplify matrix calculations
  • Explore advanced determinant properties and their applications in linear algebra
USEFUL FOR

Students and educators in mathematics, particularly those studying linear algebra, matrix theory, and determinant calculations. This discussion is beneficial for anyone looking to deepen their understanding of matrix operations and determinant evaluation techniques.

Mozart
Messages
106
Reaction score
0
Hello, I just finished doing a question in which I had to find the values of x y and z from 3 linear equations using Cramer's rule. I used row augmentation for the x and y but then for z I couldn't see any way of using row augmentation.

So I looked in my notes and saw an example using expansion along row 2 to find detA and expansion along column 1 as well to find detA. (Note I was dealing with 3x3 determinants)

My question is, when I run into 3x3 determinants and row augmentation isn't an option do I always expand along row 2 or expand along column 1. Is this some sort of rule because I first attempted to expand along row 1 and it yielded the wrong answer... When I did an expansion along row 2 I got the right answer.

Thanks.
 
Physics news on Phys.org
Mozart said:
My question is, when I run into 3x3 determinants and row augmentation isn't an option do I always expand along row 2 or expand along column 1. Is this some sort of rule because I first attempted to expand along row 1 and it yielded the wrong answer... When I did an expansion along row 2 I got the right answer.

You must have made a mistake in your expansion. When calculating a determinant, you can expand by any row or column that you like; it's normally best to pick the one with the most zeros in it though!
 
What do you mean by "row augmentation"? And why would you be able to do it for x and y but not for z?
 
Are you referring to Laplace's rule? It would be great if you would write down the exact problem.
 
Kramers rule says that if a_1x+ b_1y+ c_1z= d_1, a_2x+ b_2y+ c_2z= d_2 and a_3x+ b_3y+ c_3z= d_3 then
x= \frac{\left|\begin{array}{ccccc}d_1 && b_1 && c_1 \\ d_2 && b_2 && c_2 \\ d_3 && b_3 && c_3\end{array}\right|}{\left|\begin{array}{ccccc}a_1 && b_1 && c_1 \\ a_2 && b_2 && c_2 \\ a_3 && b_3 && c_3\end{array}\right|}
Notice that in the numerator, the first column has been replaced by the column from the right side of the equations. Replacing the second column instead gives y, replacing the third column gives z.

I am still not sure what is meant by "row augmentation". One method that I learned for 3 by 3 determinants (and only 3 by 3) was to repeat the first two columns, calculate the three diagonals from upper left to lower right, add them, then from upper right to lower left, add them, and finally subtract the second number from the first. Of course, using rows would work as well as columns. Perhaps that is what the OP meant but I don't see why z would give any particular problem.
 
Thanks for the replies. My teacher uses this method and calls it row augmentation. Pretty much if he has a 3x3 matrix he'll make either any row or column a value followed by zeros by adding some other row to it or some column. It's hard to explain but say row 1 is 1 2 3 he'll add say row 2 (lets say its 1 -2 -3) He'll show it like R2+R1= and then write the new determinant he then crosses out the row containing the two zeros and the column that joins up with the non zero value and then is able to reduce it to a 2x2 determinant. So to calculate the resulting determinant it looks like
2(-1)^2 l...l Sorry if this is not making sense but that's what I meant by row augmentation. There is probably some other name for it.
 
Mozart said:
Thanks for the replies. My teacher uses this method and calls it row augmentation. Pretty much if he has a 3x3 matrix he'll make either any row or column a value followed by zeros by adding some other row to it or some column. It's hard to explain but say row 1 is 1 2 3 he'll add say row 2 (lets say its 1 -2 -3) He'll show it like R2+R1= and then write the new determinant he then crosses out the row containing the two zeros and the column that joins up with the non zero value and then is able to reduce it to a 2x2 determinant. So to calculate the resulting determinant it looks like
2(-1)^2 l...l Sorry if this is not making sense but that's what I meant by row augmentation. There is probably some other name for it.

If that's what you meant by row augmentation, then of course it makes sense, since it is known what happenes with the value of the determinant when you add a row/column multiplied by a non zero scalar to another row/column. After a few steps, you can obtain a determinant with a row/column with only one non zero value, and that very row/column makes a good choice for the application of the Laplace's rule, which leaves you with a determinant of a lower order, in your case, order 2.
 
oops, it's already been mentioned

oh well, i'll leave it up anyway cause I spent a few minutes on typing it up :-P

there is a trick that's really nice for 3x3 matrices, but it only works for 3x3 matrices

what you do is set up...(I would call it an augmented matrix as well)

a11 a12 a13|a11 a12
a21 a22 a23|a21 a22
a31 a32 a33|a31 a32

and you take the sum of the product of the diagonals to the right minus the sum of the product of the diagonals to the left

so: (a11*a22*a33+a12*a23*a31+a13*a21*a32) - (a13*a22*a31+a11*a23*a32+a12*a21*a33)

it is a nice method though for 3x3 matrices, but make sure you know co-factor expansion anyway, it's good stuff
 
Last edited:
That's the Sarus rule, unless I'm mistaken. Nice trick.
 
  • #10
Mozart said:
Thanks for the replies. My teacher uses this method and calls it row augmentation. Pretty much if he has a 3x3 matrix he'll make either any row or column a value followed by zeros by adding some other row to it or some column. It's hard to explain but say row 1 is 1 2 3 he'll add say row 2 (lets say its 1 -2 -3) He'll show it like R2+R1= and then write the new determinant he then crosses out the row containing the two zeros and the column that joins up with the non zero value and then is able to reduce it to a 2x2 determinant. So to calculate the resulting determinant it looks like
2(-1)^2 l...l Sorry if this is not making sense but that's what I meant by row augmentation. There is probably some other name for it.
Row "augmentation"? I would call that row "reduction" since the point is to reduce a row to something simple, like 1 0 0. If you can "reduce" a matrix to "upper triangular" (only 0s below the main diagonal) with row operations, then the determinant is the product of the numbers on the main diagonal (taking into account that if you multiply an entire row by a number the determinant is multiplied by that number and if you swap two rows, the determinant is multiplied by -1).
 

Similar threads

Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
5K
  • · Replies 32 ·
2
Replies
32
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
3
Views
4K
  • · Replies 18 ·
Replies
18
Views
3K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
2
Views
2K