System of three equations with three unknowns. Augmented: $\begin{pmatrix} a & (a-1) & (a-2) & b\\ 0 & (a-3) & (a-4) & 1\\ 0 & 0 & (a-5) & 0 \end{pmatrix}$
Problem: For what values of a and b does the augmented matrix have (i) one solution, (ii) infinitely many solutions, or (iii) no solution.
I've been strungling with this and similar problems for a while now. Is there a particular algoritim for solving these kinds of problem?
I know that each equation describes a plane, and I know what it means to have one, infinitely or no solutions. I just find it difficult to find the correct a and b values for solving the problem. Especially since it tends to get messy when row reducing.
(I'm not looking for the answer, just ideas for procedures and possibly ways to think about the problem.)
Your matrix is in augmented form, i.e. $[A|b]$. The matrix $A$ is in upper triangle form and so the determinant is given by the product of its diagonal elements
$\det(A) = a(a-3)(a-5)$
The system has exactly one solution if $\det(A) \ne 0$.
To check, when it has no or infinitely many solution, look back at the augmented matrix. Looking at the last row:
$(a-5)x_3 = 0$.
If we want to be able to choose $x_3$ freely (to get more than one unique solution) we need $a=5$.
Finally assume that $a \ne5$ and therefore $x_3 = 0$ and look at the second row. With the assumptions taken, this tells us:
$(a-3)x_2 = 1$.
This only has a solution if $a \ne 3$. Therefore $a=3$ gives the case with no solutions. By using the same argument for the first line you also find that $a=0$ yields no solution.