If you meant the bottom two rows consisting of all zeros, not quite. Since you can choose anything for d and e, there's no way that row reduction will always give you two rows of zeros at the bottom. Recall what this augmented matrix is short for:
\left[\begin{array}{ccc} 0 & 1 & 0 \\ 1 & 0 & 1 \\ 2 & 2 & 2 \\ 3 & 2 & 1 \\ 5 & 2 & ? \end{array}\right]\left[\begin{array}{c} x \\ y \\ z \end{array}\right] = \left[\begin{array}{c} a \\ b \\ c \\ d \\ e \end{array}\right].
This can be treated as a linear combination of the columns, how many of each column we use is given by x, y, and z. So, you are trying to reach anything in R
5 by 3 vectors in R
5. From analogous reasoning as that in the above discussion, we see that this is impossible. We need
at least 5 vectors in R
5 to span R
5.
But what you are referring to is probably
\left[\begin{array}{ccccc}0 & 1 & 2 & 3 & 5 \\ 1 & 0 & 2 & 2 & 2 \\ 0 & 1 & 2 & 1 & ?\end{array}\right]\left[\begin{array}{c}v \\ w \\ x \\ y \\ z\end{array}\right] = \left[\begin{array}{c}a \\ b \\ c\end{array}\right].
In this system, the variables v, w, x, y, z tell us how much of each of the 5 vectors in R
3 we are supposed to use. If they span R
3, then no matter what a, b, and c are, we never get an inconsistent system. In row reducing the augmented matrix (which has 6 columns), we never get all zeros in the first 5 columns of any row. Or else we've seen from above that a bad choice of c means our system is inconsistent. But this is not true for any 5 vectors, only 5 vectors that span R
3.