$$\left(\begin{array}{ccc|c} -1 & 2 & 1 & 3\\ 3 & \alpha & -2 & \beta\\ -1 & 5 & 2 & 9 \end{array}\right)$$
I am struggling to solve this system $Ax=b$. I understand the basics of Gauss elimination but am not sure how to handle it with the alpha and beta. It needs to be solved giving conditions for alpha and beta for no solutions, one solution and infinitely many solutions.
I also need to compute the determinant of A and give a condition on $\alpha$ such that $A$ is invertible.
Let me start with some steps. Perhaps you'll be able to finish.
$$\left(\begin{array}{ccc|c} -1 & 2 & 1 & 3\\ 3 & \alpha & -2 & \beta\\ -1 & 5 & 2 & 9 \end{array}\right)\sim \left(\begin{array}{ccc|c} 1 &-2 &-1 &-3\\ -1 & 5 & 2 & 9\\ 3 & \alpha & -2 & \beta \end{array}\right)\sim \left(\begin{array}{ccc|c} 1 &-2 &-1 &-3\\ 0 & 3 & 1 & 6\\ 0 & \alpha+6 & 1 & \beta+9 \end{array}\right)\sim \left(\begin{array}{ccc|c} 1 &-2 &-1 &-3\\ 0 & 3 & 1 & 6\\ 0 & \alpha+3 & 0 & \beta+3 \end{array}\right) $$
Side note: Some comments to the strategy for this: It is good to avoid computations involving parameters if possible. That's the reason why I put the row with parameters into the last place. Similarly, that's the reason why in the last step I used third column rather than second. (It is much easier to subtract second row from the third, than to subtract $(\alpha+6)/3$ multiple of second row. At least when doing things by hand, it might help if we try to get simpler expressions.)
If you look at the above matrix, the last row corresponds to the equations $(\alpha+3)x_2=\beta+3$. What can you say about solutions of this equation depending on $\alpha$ and $\beta$. (What happens if $\alpha=-3$? What happens in $\alpha\ne-3$? Think about similar possibilities for $\beta$.)
We could as well introduce new parameters $c=\alpha+3$ and $d=\beta+3$ to simplify notation a bit. (In this way we have the equation $cx_2=d$ and we consider what happens depending on whether $c$, $d$ is zero or non-zero.)
If $c\ne0$, then the system will have unique solution. Let us denote $t=d/c$ to simplify the notation: $$\left(\begin{array}{ccc|c} 1 &-2 &-1 &-3\\ 0 & 3 & 1 & 6\\ 0 & c & 0 & d \end{array}\right)\sim \left(\begin{array}{ccc|c} 1 &-2 &-1 &-3\\ 0 & 3 & 1 & 6\\ 0 & 1 & 0 & t \end{array}\right)\sim \left(\begin{array}{ccc|c} 1 & 0 &-1 &-3+2t\\ 0 & 1 & 0 & t\\ 0 & 0 & 1 & 6-3t \end{array}\right)\sim \left(\begin{array}{ccc|c} 1 & 0 & 0 & 3-t\\ 0 & 1 & 0 & t\\ 0 & 0 & 1 & 6-3t \end{array}\right) $$ where $t=\frac dc = \frac{\beta+3}{\alpha+3}$. (You can check by direct computation that this is indeed a solution.)
If $c=0$, then we have $$\left(\begin{array}{ccc|c} 1 &-2 &-1 &-3\\ 0 & 3 & 1 & 6\\ 0 & 0 & 0 & d \end{array}\right).$$
What happens if $d\ne0$? What happens if $d=0$?
You mentioned that you also want to compute determinant of $A$. This can be done using basically the same row operations as above - you just need to know how row operations influence the determinant.