I am doing a course on systems of differential equations. I have the following introductionary problem, to find repeated eigenvalues, before continuing on complex eigenvalues:
Solve: $$X' = \color{#C80}{\begin{pmatrix} \hfill 1 & -2 & \hfill 2\\\ -2 & \hfill 1 & -2 \\ \hfill2 & -2 & \hfill1\end{pmatrix}}X$$
Taking $det(\lambda I-A)$ I get: $$\color{#C80}{\begin{vmatrix} \lambda -1 & 2 & -2\\\ 2 & \lambda -1 & 2 \\ -2 & 2 & \lambda -1\end{vmatrix}}$$
Which after some computation gives me a long polynomial, that is shortened to $\lambda^3 -3\lambda^2-9\lambda -5$. One can guess easily that one solution is -1, so the next step is polynomial division by $\lambda+1$. In the end I get to the correct answer which is $(\lambda+1)^2(\lambda-5)$. The whole process, taking the determinant, polynomial division, without including verification took a whooping 15 minutes.
**EDIT: Besides, it is wrong. I just noticed that the correct solution is $-(\lambda+1)^2(\lambda-5)$. This does not change the eigenvalues, but is incorrect!!
Since this forum is home of many smart and resourceful people, and I enjoy discussions,are there any shortcuts I could use to skip some of the steps? All those steps are long, error prone, and I don't have this kind of time at the exam, especially since I did not even begin the complex eigenvalues part! (No matlab allowed :)!)
- I tried to use trace as in this reply, and indeed $-1-1+5=3= tr(A)$, but I could not have guessed that either! Is there a fast way of getting the eigenvalues of this 3x3 matrix?