Saturday, July 20, 2019

matrices - Determinant of a matrix with specific main diagonal


Determine the determinant of the following matrix: A=(1+a11111+a21111+an),aiR,i=1,2,,n.


My attempt: Set I={iai=0,i=1,,n}. I found that detA={0 if |I|2nj=1,jiaj if |I|=1nj=1aj(1+nj=11aj) if |I|=0..

However I am given a different answer. Any comment would be appreciated.


Answer




Clearly the answer should be totally symmetric in the ai, but this is one of those annoying problems where we seem to have to live without the symmetry to actually solve it.


Your first line is obviously correct, since you have two of the same row.


If, WLOG, a1=0 and the others nonzero, you use row operations to subtract the first row from every other row, which gives you a lower diagonal matrix, and I agree with your second answer.


Now if a10, doing the same thing gives you detA=|1+a1111a1a200a10a30a100an|

Now you can divide the ith column by ai and add it to the first row to give (1+a1+a1ni=21ai)(ni=2ai)=(ni=1ai)(1+nj=1ai),
which agrees with your answer. To get rid of the divisions, you can multiply through to get (ni=1ai)+nj=1ijai,
i.e. the product of all the ai plus the symmetric polynomial of degree n1 in the ai, so for example for n=3, detA=a1a2a3+a1a2+a2a3+a3a1
This formula in this form still works for the zero cases: note that if two are zero, then all the products are zero because each only excludes one factor, and if one is zero, then the only one to survive is indeed the product that excludes it.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...