Closed-form determinant of a hermitian banded toeplitz matrix

phd_student
Messages
1
Reaction score
0
Hello everyone,

I found that you're actively discussing math problems here and thought to share my problem with you.

[Givens:]
I have a specially structured complex-valued n \times n matrix, that has only three non-zero constant diagonals (the main diagonal, the j^{th} subdiagonal and the j^{th} superdiagonal), 1 \leq j \leq n-1. Moreover, it is a hermitian matrix, where the element composing the superdiagonal is actually the conjugate of that of the subdiagonal. For example, if n=7, j=3, the matrix is given by:

\begin{eqnarray}
A &=& \left[\begin{array}{ccccccc}
a &0 &0 &b^* &0 &0 &0 \\
0 &a &0 &0 &b^* &0 &0 \\
0 &0 &a &0 &0 &b^* &0 \\
b &0 &0 &a &0 &0 &b^* \\
0 &b &0 &0 &a &0 &0 \\
0 &0 &b &0 &0 &a &0 \\
0 &0 &0 &b &0 &0 &a
\end{array} \right]
\end{eqnarray}.

[Question:] I want to get the determinant, or the eigenvalues in closed form.

[Some hints:]
- It is clear that the determinant will be only a function of a, b, the shift j and the order of the matrix, n.
- The matrix has the following properties:
1- It is a sparse Toeplitz matrix, that has only three non-zero diagonals.
2- It is a hermitian matrix.
3- It can be regarded as a special banded matrix, with zero diagonals inside the band.
4- We can also consider it as a diagonally dominant matrix. However, neglecting b may not give a good approximation.
- A Tridiagonal Toeplitz matrix (for the special case when j=1) already has a known closed form expression for its eigen values, and consequently the determinant which is their direct product. It would be helpful also if we can express this shift in the diagonals as a certain simple operator, and use the known results of the tridiagonal case.

Any ideas?
 
Last edited:
Physics news on Phys.org
Unfortunately there are more than three non-zero (general) diagonals. Nevertheless, the matrix is so sparse, that we can develop the determinant after, e.g. the first row and just calculate it.

A calculator program
https://matrixcalc.org/en/det.html#...,c,0,0,a,0},{0,0,0,c,0,0,a}}expand-along-row1got
$$
a^7−2a(b^*b)^3+5a^3(b^*b)^2−4a^5(b^*b)
$$
which gives the characteristic polynomial with ##a \longmapsto a-x##.
 
Back
Top