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

262 Views Asked by At

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=\pmatrix{ a & 1 & 1 \\ 1 & a & 1 \\ 1 & 1 & a \\ },\ a\neq1,\ a\neq-2$$

$f(\lambda) = \operatorname{Char}(A,\lambda) = (a-\lambda)^3-3(a-\lambda)+2 = -\lambda^3 + 3a\lambda^2 + 3\lambda(1-3a^2) + (a-1)^2(a+2)$

I have thought about using the Rational-Root Theorem (R.R.T.), so possible roots of $f(\lambda)$ are $(a-1)$, $(-a+1)$, $(a+2)$, $(-a-2)$, and much more, as for example in the case $a=2$ we should also test whether $f(\pm2)=0$ or not, am I wrong?

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

4

There are 4 best solutions below

2
On BEST ANSWER

Basically, you need to solve $(a-\lambda)^3-3(a-\lambda)+2 =0$ for $\lambda$. Don't expand the brackets, instead denote: $t=a-\lambda$. Then: $$t^3-3t+2=0 \Rightarrow (t-1)^2(t+2)=0 \Rightarrow \\ t_1=1 \Rightarrow a-\lambda =1 \Rightarrow \lambda_1 =a-1\\ t_2=-2\Rightarrow a-\lambda =-2 \Rightarrow \lambda_2=a+2.$$

0
On

One way to see $a+2$ is an eigenvalue is that $$A\begin{bmatrix}1\\1\\1\end{bmatrix}=\begin{bmatrix}a+2\\a+2\\a+2\end{bmatrix}.$$ Then you can use the fact that $x-(a+2)$ divides the characteristic polynomial.


More generally: if all the rows of $A$ add up to $\lambda$, then $\lambda$ is an eigenvalue.

1
On

Hint: if $I$ denotes the identity matrix, then the eigenvalues of $A+cI$ are easily obtained from the eigenvalues of $A$: $$ (A+cI)v=\lambda v \iff Av=(\lambda-c)v $$ What if you take $c=1-a$?

0
On

I think so. The matrix in question is called the rank-one perturbation of the identity matrix. That is $A = (a-1)I +uu^\top$ where $u$ is called the unit vector with all entries one. It is know that $uu^\top$ has eigenvalues $uu^\top$ and zero with multiplicity dimension of $u$ minus 1 and the associated eigenvectors $u$ and $u^\perp$. The eigenvalues of $(a-1)I + uu^\top$ are $a-1+u^\top u = a+2$ and two times $a-1$, the determinant is then the product of these eigenvalues. That is $(a-1)^2(a+2)$.