I have the following equation system matrix:
$$\left[\begin{array}{ccc|c} c & 1 & 1 & 1 \\ 1 & c & 1 & 1 \\ 1 & 1 & c & 1 \end{array}\right]$$
From this one I'm supposed to be able to define the constant $c$, for creating an equation with either no solutions, one solution or infinite solutions.
I have successfully gotten the row reduce matrix:
$$\left[\begin{array}{ccc|c} 1 & 0 & 0 & \frac{1}{c+2} \\ 0 & 1 & 0 & \frac{1}{c+2} \\ 0 & 0 & 1 & \frac{1}{c+2} \end{array}\right]$$
But I'm not sure where to go from this. Is it possible just from the this form to see which definitions of $c$ gives the different solutions?