I am new to linear algebra and I am trying to solve a system of three equations with five unknowns. The system I have is the following:
$$ x_1+ x_2+ x_3+ x_4+ x_5=1 \\ -x_1+ x_2+ x_3 - 2x_4 - 2x_5=1 \\ 2x_1+ 2x_2 - x_3 -x_4+ x_5=1 $$
So what I did was set up the augmented matrix like this:
1 1 1 1 1 1
-1 1 1 -2 -2 1
2 2 -1 -1 1 1
Then I try to obtain an identity matrix on the left side and end up with the following:
1 0 0 3/2 3/2 0
0 1 0 -3/2 -5/6 2/3
0 0 1 1 1/3 1/3
So I think the answer is $x_1 = 0, x_2 = 2/3$ and $x_3 = 1/3$
But when I look in my answer sheet it reads:
$(x_1, x_2, x_3, x_4, x_5) = (0, 2/3, 1/3, 0, 0) + s(−3/2, 3/2, −1, 1, 0) + t(−3/2, 5/6, −1/3, 0, 1)$
I have no idea how to interpret this. My $x_1,x_2,x_3$ seems to match the first three in the first five-tuple but what are the other two five-tuples? Can someone explain what I am missing here? I would highly appreciate it.