I am studying for an exam for work which is covering some linear algebra which I am having some difficulty with.
I have the following $(2 \times 2)$-matrix: $$ A = \begin{bmatrix} 3 & 1 \\ 2 & 4 \end{bmatrix} $$ And I have the eigenvalue $5$.
How would I go about solving for the eigenvector? I know the following formula: $$ A(\text{eigenvalue}) = (\text{eigenvalue})(\text{eigenvector}) $$
I was thinking that since I have the $A$ and the eigenvalue, I can divide the product of that by the eigenvalue (divide each value in the matrix by $1/5$)?
Any help would be great!
Let $A=\left(\begin{smallmatrix}3&1\\2&4\end{smallmatrix}\right)$. Then, since you were told (correctly) the $5$ is an eigenvalue, your approach is fine: solve the system $A\left(\begin{smallmatrix}x\\y\end{smallmatrix}\right)=5\left(\begin{smallmatrix}x\\y\end{smallmatrix}\right)$, that is, the system$$\left\{\begin{array}{l}3x+y=5x\\2x+4y=5y,\end{array}\right.$$which is equivalent to$$\left\{\begin{array}{l}-2x+y=0\\2x-y=0.\end{array}\right.$$Take $\left(\begin{smallmatrix}1\\2\end{smallmatrix}\right)$ as a solution, for instance.