Find the following determinants

  • Thread starter Thread starter adc85
  • Start date Start date
  • Tags Tags
    Determinants
Click For Summary
SUMMARY

This discussion focuses on finding the determinants of two specific 5x5 matrices using cofactor expansion and row reduction techniques. The first matrix is a tridiagonal matrix with a pattern of 3s and -1s, while the second matrix features a symmetric structure with 2s and a single 0. Participants suggest using row operations to simplify the matrices before calculating the determinants, ultimately leading to a determinant value of 128 for the second matrix. The discussion emphasizes the importance of understanding both cofactor expansion and elimination methods for determinant calculation.

PREREQUISITES
  • Understanding of matrix determinants and properties
  • Familiarity with cofactor expansion method
  • Knowledge of row reduction techniques
  • Basic linear algebra concepts, including matrix operations
NEXT STEPS
  • Study the cofactor expansion method in detail
  • Learn about row reduction techniques for determinant calculation
  • Explore properties of special matrices, such as tridiagonal and symmetric matrices
  • Practice calculating determinants of larger matrices using software tools like MATLAB or Python's NumPy
USEFUL FOR

Students and professionals in mathematics, particularly those studying linear algebra, as well as educators looking for effective methods to teach determinant calculations.

adc85
Messages
34
Reaction score
0
I know how to find the determinant in general but these two problems here are tough for me:

1. Find the determinant of:
3 -1 0 0 0
-1 3 -1 0 0
0 -1 3 -1 0
0 0 -1 3 -1
0 0 0 -1 3

2. Find the determinant of:
0 2 2 2 2
2 0 2 2 2
2 2 0 2 2
2 2 2 0 2
2 2 2 2 0

Now, I know that I need to select a row or column that contains all zeros except for one number. The row or column that the one non-zero number is on would be selected as well. Then you would use the formula (for selecting row i and column j):

det A = (-1)^(i + j) * det A (without row i and column j)

But I can't figure out how to create a row or column full of zeros (except one element) for both of these problems. Thanks for any help.
 
Physics news on Phys.org
adc85 said:
I know how to find the determinant in general but these two problems here are tough for me:

2. Find the determinant of:
0 2 2 2 2
2 0 2 2 2
2 2 0 2 2
2 2 2 0 2
2 2 2 2 0

Haven't done one of these for an age. How about this one. Subtract the row below from each row

-2 2 0 0 0
0 -2 2 0 0
0 0 -2 2 0
0 0 0 -2 2
2 2 2 2 0

Add the first 4, then the next 3 then the next 2

-2 0 0 0 2
0 -2 0 0 2
0 0 -2 0 2
0 0 0 -2 2
2 2 2 2 0

Add the first 4 to the last

-2 0 0 0 2
0 -2 0 0 2
0 0 -2 0 2
0 0 0 -2 2
0 0 0 0 8

Subtrace 1/4 of last from each of the others

-2 0 0 0 0
0 -2 0 0 0
0 0 -2 0 0
0 0 0 -2 0
0 0 0 0 8

Det = 128
 
you can use cofactor formula or just do elimination like what OlderDan did. i prefer doing elimination and multiply diagonals to get determinant. i think that's how computer does it also. however on a test, you might have to write down the cofactors explicitly. i don't really remember all the details, but i believe the general idea is to reduce the problem from finding det of large matrix to a small one.
I'll illustrate w/ a smaller matrix
a b c
d e f
g h i

if you expand along the first row, it's
a * det(e f; h i) - b * det(d f; g i) + c * det(d e; g h)
so you can see, the general pattern is
(entry j from row 1) * (det of matrix w/ row 1, column j erased) * (-1)^(row+col)
i think the sign is built into cofactors, but from here i hope you can see its like reduction formula. i mean you can reduce it to finding det of 1x1 matrix.
det(e f; h i) = e * det(i) - f * det(h)
again the sign comes from (-1)^(row+col)
 

Similar threads

Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
35
Views
2K
  • · Replies 21 ·
Replies
21
Views
2K
Replies
15
Views
2K
  • · Replies 16 ·
Replies
16
Views
2K
Replies
12
Views
2K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 31 ·
2
Replies
31
Views
5K
  • · Replies 20 ·
Replies
20
Views
4K