Three unknowns, the last row of the matrix contains all zeros.

I'm in the process of solving a system of three linear equations in three unknowns, the last row of the matrix contains all zeros. How does this affect the solution of the system of equations?


It means that there is a "free variable", and infinitely many solutions to the system, because that "free variable" can be assigned any value. The other variables can often be expressed in terms of the free unknown variable; that is, their values will often depend on the the unknown value, depending on how "reduced" your matrix is.

E.g. If we have the augmented coefficient matrix reduced to the following, representing a system of three equations in the three unknowns $x, y, z$:

$$ \begin{pmatrix} 1 & 1 & 1 & 1 \\ 0 & 1 & 0 & 2 \\ 0 & 0 & 0 & 0 \\ \end{pmatrix} $$

Then $z$ is the free variable. $y = 2$, and $x = 1 - y - z = 1 - 2 - z = -(1 + z)$. So if we let $z = \alpha$, we'd have the an infinite "family" of solutions which can be represented as $$ \begin{pmatrix}\\ \\ -(1 + \alpha) \\ \\ 2 \\ \\ \alpha \\ \\ \end{pmatrix}$$ which depends on the value of $\alpha$, which can be any of infinitely many values.

Hence, there are an infinite number of solutions.

But this still allows us to impose some constraints on the solutions: specifically, $y$ must be $2$, and whatever the value of $\alpha$, $x = -(1+ \alpha)$.


that means the system has infinitely many solutions, and if your last matrix is in ref or rref then you will have somthing like this$$ x_1+2x_2+x_3=3\\ x_2-x_3=4 $$which implies $$x_1=3-2x_2-x_3\\ \text{and}\hspace 2mm x_2=4+x_3$$ let$x_3=t$ then you will get the value of $x_1,x_2$ and hence your solution.