I need help with a problem in Linear Algebra:
Given a matrix $$A = \begin{bmatrix} 1 & 2 & 1\\ 1 & -1 & 1\\ 2 & 1 & 1 \end{bmatrix}$$
and a vector
$$b = \begin{bmatrix} 4\\ 1\\ 4 \end{bmatrix}$$
Find $x$ such that $T(x) = b$
What I have tried:
I know that $T(x) = Ax = b$, so plugging in yields Ax = b. Rewriting as an augmented matrix and simplifying, we get the reduced row echelon form
$$ \begin{bmatrix} 1 & 0 & 0 & 1\\ 0 & 1 & 0 & 1\\ 0 & 0 & 1 & 1\\ \end{bmatrix}$$
However, I do not know how to proceed.