How to solve this parametric linear equation? I need to find all numbers for $\alpha$ with which has a single, infinity or none solution.
$$ \left[\begin{array}{rrr|r} \alpha & 1 & 0 & 1 \\ 2\alpha & \alpha & 1 & 4 \\ 0 & 2 & 1 & 2 \end{array}\right] $$
I end up with this and don't know how to remove 2 from bottom row to have zeros bellow the diagonal.
$$ \left[\begin{array}{rrr|r} \alpha & 1 & 0 & 1 \\ 0 & \alpha-2 & 1 & 2 \\ 0 & 2 & 1 & 2 \end{array}\right] $$
Thank you.
Before anything, consider the case of $\alpha = 0$. Note that in this case, we can't get a pivot in the first column, and the system is $$ \left[\begin{array}{rrr|r} 0 & 1 & 0 & 1 \\ 0 & 0 & 1 & 4 \\ 0 & 2 & 1 & 2 \end{array}\right] $$ Reduce further to show that this will yield no solutions.
Now, following your steps, you've reached $$ \left[\begin{array}{rrr|r} \alpha & 1 & 0 & 1 \\ 0 & \alpha-2 & 1 & 2 \\ 0 & 2 & 1 & 2 \end{array}\right] $$ proceed by breaking the problem into two cases. The first (and easier) case is when $\alpha - 2 = 0$ (which is to say $\alpha = 2$). We have $$ \left[\begin{array}{rrr|r} 2 & 1 & 0 & 1 \\ 0 & 0 & 1 & 2 \\ 0 & 2 & 1 & 2 \end{array}\right] \to \\ \left[\begin{array}{rrr|r} 2 & 1 & 0 & 1 \\ 0 & 2 & 1 & 2 \\ 0 & 0 & 1 & 2 \\ \end{array}\right] $$ which you can see leads to a unique solution.
Otherwise, we have $$ \left[\begin{array}{rrr|r} \alpha & 1 & 0 & 1 \\ 0 & \alpha-2 & 1 & 2 \\ 0 & 2 & 1 & 2 \end{array}\right] \to \\ \left[\begin{array}{rrr|r} \alpha & 1 & 0 & 1 \\ 0 & 1 & 1/(\alpha-2) & 2/(\alpha-2) \\ 0 & 2 & 1 & 2 \end{array}\right] $$ If $\alpha \neq 4$, we will have a unique solution.
Otherwise, the system reads as $$ \left[\begin{array}{rrr|r} \alpha & 1 & 0 & 1 \\ 0 & 1 & 1/2 & 1 \\ 0 & 2 & 1 & 2 \end{array}\right] $$ verify that this system yields infinitely many solutions.