I have a homework problem that boils down to this:
- x1 = 1a + 1b
- x2 = 1b + 1c
- x3 = 1c + 1d
- x4 = 1d + 1e
- x5 = 1e + 1f
- x6 = 1f + 1a
I write the matrix to solve for x.
I row-reduce the matrix.
The bottom row says a bunch of zeroes sum to a nonzero number, which is false. AFAIK, this means the system of equations has no solutions.
However, if I plug in actual values for x1-x6 (i.e. they all equal 1), solutions do exist.
AFAIK, this means that there are infinite solutions. How come I can't arrive to this conclusion by using variables in the original matrix?
EDIT I got the above answers using Wolfram Alpha




The system is overdetermined, in that you can use the equations to show that you must have $$x_1-x_2+x_3-x_4+x_5 = x_6. $$ (The point of this is that the coefficient matrix, $A$, for $a,b,c,d,e,f$ is singular, so that the above is required for the equation to have any solution. On the other hand, there is a vector $v$ so that $A \cdot v = 0$, which you can add onto any solution you can find while still satisfying the equations, so any solution is not unique.)
Wolfram|Alpha has probably assumed that this is not the case when it ran its row-reduction algorithm, and thus produced a result inconsistent with what you expect. If you try putting numbers in that do not satisfy the equality above, you should find a similar result.