I need to solve a system of linear equations using rref. I need to put my answers in the following format:
I am assuming that they are two vectors, which one has a scalar s.
Could you help me out in solving this? Idk where to start.
The equation system is:
$$ x_1 + x_2 + 2x_3 = 2, \\ 6x_1 + 5x_2 + 3x_3 = -9. $$
Thank you for your help!

Hint:
Write the system of equations as a matrix equation:
$$\pmatrix{1 \;\;\;1 \;\;\;2 \\ 6 \;\;\;5 \;\;\;3}\pmatrix{x_1 \\ x_2 \\ x_3}=\pmatrix{2 \\ -9}$$
and perform Gaussian elimination. If this is not enough to get you started, let me know in the comments below.