The following linear system is as follows:
$$ax+y+0=a$$ $$x+y+z=1$$ $$0+y+az=b$$
Find $a$ and $b$ such that the linear system has: 1. No solution 2. Exactly one solution 3. Infinitely many solutions
The row-echelon form of the augmented matrix of the linear system is this after working it out using Gauss Elimination:
$$ \left[ \begin{array}{ccc|c} 1&1&1&1\\ 0&1&a&b\\0&0&a^2-2a&ab-b \end{array} \right] $$
For this to have no solution, $$a^2-2a=0$$ Therefore: $$a=2, a=0$$
However, I will need to substitute it into $ab-b$ and ensure that $ab-b$ is not 0. $$a=0, ab-b=-b$$ $$a=2, ab-b=b$$
Therefore: $$a=0, b\in\mathbb R-(0)$$ $$a=2, b\in\mathbb R-(0)$$
However, I do need some help with regards to having exactly one solution and infinitely many solutions, thanks!