Sunday, September 29, 2019

linear algebra - Find the characteristic polynomial PA(lambda) of this matrix



Consider the following matrix A:



A=(111111111)



I have to find the characteristic polynomial PA(λ) using the following approach:



PA(λ)=det(AλI)



I worked out the first part:




|1λ1111λ1111λ|



But then I get stuck calculating the determinant with all those λ floating around.



Help? :( The answer is supposed to be PA(λ)=(λ1)(λ+2)2



Answer



You could use properties of determinants to avoid having to factor a cubic afterwards; for example:




  • subtract the last column from the first two;

  • add the first two rows to the third:



|1λ1111λ1111λ|=|2λ0102λ12+λ2+λ1λ|=|2λ0102λ1001λ|


This is the determinant of a diagonal matrix, so it is the product of the diagonal elements:
(2λ)2(1λ)=0λ=2λ=1


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...