I need help expressing \begin{bmatrix}6\\4\\3\end{bmatrix}
as a linear combination of the vectors $$ \begin{bmatrix} 1 \\ 2 \\ -1 \end{bmatrix} \text{ , } \begin{bmatrix} 3 \\ 1 \\ 2 \end{bmatrix} \text{ and } \begin{bmatrix} 3 \\ 2 \\ -1 \end{bmatrix} $$
My approach was to create the augmented matrix $$ \left[\begin{array}{rrr|r} 1&3&3&6\\2&2&1&4\\-1&-1&2&3\end{array}\right] $$
and row reduce it to find x1, x2, and x3. Then I will write x1[matrix1] + x2[matrix2] + x3[matrix3]. Is this the correct approach?