I am having trouble finding the symmetric matrix $A$ given eigenvalues $1$ and $4$ and eigenvector $(1, 1)$ corresponding to eigenvalue $1$.
I feel like I'd have to use the equation $A=PD(P^{-1})$, but I'm having trouble finding the matrix $P$ if I can't find the second eigenvector. Any help is appreciated, thanks!
Let :
$$A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}$$
Since the eigenvalues are $\lambda =1 $ and $\lambda = 4$, it must be
$$\det(A-\lambda I) = \begin{vmatrix} a - \lambda & b \\ c & d - \lambda\end{vmatrix} = (a-\lambda)(d-\lambda)-bc $$
such that $\lambda = 1$ and $\lambda = 4$ are solutions to the equation :
$$(a-\lambda)(d-\lambda)-bc=0$$
Since $(1,1)^\mathbf{T}$ is an eigenvector of $A$ for $\lambda = 1$, it is :
$$(A- I)(1,1)^\mathbf{T} = 0 \Rightarrow \begin{pmatrix} a - 1 & b \\ c & d - 1\end{pmatrix}\begin{pmatrix}1 \\ 1 \end{pmatrix} =\begin{pmatrix}0 \\ 0 \end{pmatrix} $$
$$\Leftrightarrow$$
$$\begin{cases} a-1 + b = 0 \\c + d-1 = 0\end{cases}$$
Can you now find $a,b,c$ and $d$ ?