Wednesday, July 18, 2018

polynomials - Finding the eigenvalues of A=left(begin{smallmatrix} a &
1 & 1 \ 1 & a & 1 \ 1 & 1 & a \ end{smallmatrix}right)



I would like to calculate the eigenvalues of the following matrix A, but the factorization of the characteristic polynomial does not seem to be easy to compute.



A=(a111a111a), a1, a2




f(λ) = Char(A,λ) = (aλ)33(aλ)+2=λ3+3aλ2+3λ(13a2)+(a1)2(a+2)



I have thought about using the Rational-Root Theorem (RRT), so possible roots of f(λ) are (a1), (a+1), (a+2), (a2), and much more, as for example in the case a=2 we should also test whether f(±2)=0 or not, am I wrong?



The eigenvalues of A are a1 and a+2 (computed with Wolfram Alpha). This result can be obtained using RRT, computing f(a1) and f(a+2) and realizing that both are equal to zero but, is there an easier and 'elegant' way to find these eigenvalues?


Answer



Basically, you need to solve (aλ)33(aλ)+2=0 for λ. Don't expand the brackets, instead denote: t=aλ. Then:
t33t+2=0(t1)2(t+2)=0t1=1aλ=1λ1=a1t2=2aλ=2λ2=a+2.


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