I have a very specific kind of matrix and I have to find the formula to find the determinant of these matrix.
a(i,j)=a if(i==j) and a(i,j)=0 if(floor(i/2)=floor(j/2) and i!=j) and n is odd
A=(ai,j)n×n=(a0bb⋯bb0abb⋯bbbba0⋯bbbb0a⋯bb⋮⋮⋮⋱⋯bbb⋯ba)?
Answer
The problem is closely related to this one posted and answered yesterday, with p←2, np←n−1, c←a/b, with the entire matrix divided by b.
Since according to a comment under the question n is odd, we need to deal with the last component separately. All eigenvectors in the linked question except for the one filled with 1s sum to 0. Thus we can append a 0 to them to obtain eigenvectors of the present matrix. That leaves a two-dimensional subspace to be dealt with, spanned by the vector x that has a 1 in the last component and the vector y that has 1s everywhere else. Applying A to these vectors yields Ax=ax+by and Ay=(n−1)bx+((n−3)b+a)y. Thus the product of the remaining two eigenvalues is
|ab(n−1)b(n−3)b+a|=((n−3)b+a)a−(n−1)b2.
Multiplying this by the n−2 eigenvalues from the linked question, with the above substitutions and the factor bn−2 that was divided out, yields the determinant of the present matrix:
det
No comments:
Post a Comment