Solving Jacobi Matrices: Finding Det H6

  • Thread starter Thread starter dracolnyte
  • Start date Start date
  • Tags Tags
    Jacobi Matrices
Click For Summary
SUMMARY

The discussion focuses on solving Jacobi matrices, specifically determining the determinant of H6 using the recursive relationship det Hn = a (det Hn-1) - bc (det Hn-2). The participants clarify that Hn-1 and Hn-2 represent Jacobi matrices of order n-1 and n-2, respectively. The solution involves expanding the determinant using cofactor expansion, leading to a clear calculation for H4 and establishing a pattern for higher-order matrices.

PREREQUISITES
  • Understanding of Jacobi matrices and their properties
  • Familiarity with determinant calculations and cofactor expansion
  • Knowledge of recursive relationships in linear algebra
  • Basic matrix theory concepts, including upper triangular matrices
NEXT STEPS
  • Study the properties of Jacobi matrices in greater detail
  • Learn advanced techniques for calculating determinants of larger matrices
  • Explore recursive methods in linear algebra
  • Investigate applications of determinants in solving linear systems
USEFUL FOR

Students and professionals in mathematics, particularly those studying linear algebra, matrix theory, and anyone involved in computational methods for solving matrix equations.

dracolnyte
Messages
28
Reaction score
0

Homework Statement


An n x n array Hn = (hij) is said to be a jacobi matrix if hij = 0 whenever |i - j| >= 2. Suppose Hn also has the property that for each index i, hii = a, hi, i+1 = b and hi,i-1 = c. For instance, H4 =

a b 0 0
c a b 0
0 c a b
0 0 c a

(i) Show that det Hn = a (det Hn-1) - bc (det Hn-2) for n = 3,4,...

(ii) Find det H6.

The Attempt at a Solution


I was thinking of converting this into an upper triangle and use that theorem to solve by finding the product of the main diagonals. but I don't know how to prove for general n x n case and I don't know what it means by det Hn-1 and Hn-2
 
Physics news on Phys.org
Looks like a straightforward calculation. Hn-1 and Hn-2 are, of course, the Jacobi matrices of order n-1 and n-2.

Expand Hn on the first row. Then Hn= a(cofactora)- b(cofactorb). It should be easy to see that "cofactora" is just Hn-1, so that part is aHn-1 while "cofactorb" has first column consisting of "c 0 0 ...". Expand that on the first column and you have "bcHn-2".

For example, with n= 4 you have
H_3= \left|\begin{array}{cccc}a & b & 0 & 0 \\ c & a & b& 0 \\ 0 & c & a & b \\0 & 0 & c & a\end{array}\right|= a\left|\begin{array}{ccc}a & b & 0 \\ c & a & b \\ 0 & c & b\end{array}\right|- b\left|\begin{array}{ccc}c & b & 0 \\ 0 & a & b \\ 0 & c & a\end{array}\right|
= a\left|\begin{array}{ccc}a & b & 0 \\ c & a & b \\ 0 & c & b\end{array}\right|- bc\left|\begin{array}{cc}a & b \\ c & a \end{array}\right|= aH_2- bcH_1
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 25 ·
Replies
25
Views
4K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 5 ·
Replies
5
Views
5K
Replies
17
Views
3K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 2 ·
Replies
2
Views
8K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K