I have the following expression:
$$ \begin{bmatrix} 1 & 2 & -1 \\ 2 & -2 & -0.5 \\ 2 & 1 & 1 \end{bmatrix} \begin{bmatrix} p_1 \\ p_2 \\ p_3 \end{bmatrix} = \begin{bmatrix} 6 \\ -3 \\ 0 \end{bmatrix} $$
For which I have found $p_1 = 0$, $p_2 = 2$, $p_3 = -2$. The columns of the above matrix are the eigenvectors $e_1$, $e_2$, and $e_3$ of this matrix $A$: $$ A = \begin{bmatrix} 4 & -2 & 0 \\ -2 & 3 & -2 \\ 0 & -2 & 2 \end{bmatrix} $$
By expressing $y = p_1e_1 + p_2e_2 + p_3e_3 $ and $x = q_1e_1 + q_2e_2 + q_3e_3 $, I want to solve the equation $Ax = y$.
I have tried a brute force approach by simply constructing $x$ as a vector formed from the 3 eigenvectors, since I know the values. But this result in a very complicated algebra which involves 3 variables at each term in the matrix on the left hand side, which cannot be discernably solved using a cleaner linear algebra method. How should I proceed?