I have a matrix called Ω. This is the matix:
$$\frac 1 2\begin{bmatrix}2 & 0 &0\\0 & 3 &-1 \\0 & -1 & 3\end{bmatrix}$$
It's eigenvalues are known (I have calculated them earlier). They are $l_1 = l_2 = 1$ and $l_3 = 2$
I want to find the eigenvectors from this data.
In the case where the eigenvalue is $2$, this is used:
$Ω ( a_{13} a_{23} a_{33} ) = 2( a_{13} a_{23} a_{33} ) ⇔ … ⇔ a_{13} = 0, a_{23} = −a_{33}$
As you can see, we arrive to some conclusion of $a_{13}, a_{23}$ and $a_{33}$. But how this is calculated?
To find the eigenvectors for an eigenvalue $\lambda$, you want to solve the linear system $(A-\lambda I)x=0$.
In this case, when $\lambda=1$, we want to solve
$$ \begin{bmatrix} 0&0&0\\ 0&1/2&-1/2\\0&-1/2&1/2\end{bmatrix}\begin{bmatrix} x\\ y\\ z\end{bmatrix}=\begin{bmatrix} 0\\ 0\\ 0\end{bmatrix}. $$ That is, $$ \begin{bmatrix} 0\\ (y-z)/2\\ (y-z)/2\end{bmatrix}=\begin{bmatrix} 0\\0\\0\end{bmatrix}. $$ So the eigenvectors will be those with coordinates $(x,y,z)$ satisfying $y-z=0$. That is, vectors of the form $(x,y,y)=x(1,0,0)+y(0,1,1)$. In this case the eigenspace is 2-dimensional.
When $\lambda=2$, the system you want to solve, $(A-2I)v=0$, is $$A-2I=\begin{bmatrix} -1&0&0\\ 0&-1/2&-1/2\\0&-1/2&-1/2\end{bmatrix}\begin{bmatrix} x\\ y\\ z\end{bmatrix}=\begin{bmatrix} 0\\ 0\\ 0\end{bmatrix}.$$ This corresponds to $x=0$, $y+z=0$, so vectors of the form $(0,y,-y)=y(0,1,-1)$. In this case the eigenspace is one-dimensional.