Thursday, April 20, 2017

linear algebra - Easiest way to find characteristic polynomial for this 4x4 matrix



I have been given the matrix



[1303111104282031]



and told I must find the characteristic polynomial. I began by applying cofactor expansion along the top row of the matrix



[1λ30311λ11042λ82031λ]
and attempting to multiply out my results to get the correct answer of λ45λ328λ2+58λ8. However, this takes several pages of work and I keep making calculation errors and ending up with the wrong answer.



My question is, is there an easier way to find the determinant of this specific matrix, or, once the determinant is found, to multiply out the result to find the polynomial?




The only methods I have been taught have been to either try to find or create a row with several 0's to make the cofactor expansion easier, or to get an upper or lower triangular matrix, however, those seem equally as messy here.


Answer



For convenience, I write t for λ. Call your matrix expression MtI. Divide the third row by 2, swap columns 1 and 2 and multiply the third column by 2, you get
det
where the leading minus sign is due to the swapping of columns.



Since C and D commute, we get
\begin{align} \det(M-t I) &=-\det(AD-BC) \\ &=-\det\left( \pmatrix{3 & 1-t\\ 1-t & 1} \pmatrix{2-t & 4\\ 6 & 1-t} -2\pmatrix{0&3\\ 2&1} \right) \\ &=-\det\left( \pmatrix{12-9t & t^2-2t+13\\ t^2-3t+8 & 5-5t} -\pmatrix{0&6\\ 4&2} \right) \\ &=-\det\pmatrix{12-9t & t^2-2t+7\\ t^2-3t+4 & 3-5t}\\ &=t^4 - 5 t^3 - 28 t^2 + 58 t - 8. \end{align}


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f \colon A \rightarrow B and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...