How do I know how many solutions does a system of linear equations have?
I have such system of linear equations:
$\begin{cases} (1+b)x+y+z=1\\ x+(1+b)y+z=b\\ x+y+(1+b)z=b^2 \end{cases}$
And I would like to know if it has zero, one, or more solutions depanding on $b$ ($b\in\mathbb{R}$).
How do I do that?
Hint: write down the augumented matrix and apply Gaussian elimination to it.
Added: Here is what you should get
Now, you should analyse the last row. See here for another approach.