I have the following equation system I need to convert into a reduced echelon form. I have issues with the unknown number, a.
- $2x_1 + (3 + a)x_2 + 2x_3 = 2 + a$
- $x_1 + ax_2 + 2x_3 = a$
- $ax_1 + 2x_2 + 2ax_3 = 0$
First I convert the above linear system into a matrix:
$$ \left(\begin{array}{ccc|c} 2 & 3+a & 2 & 2 + a \\ 1 & a & 2 & a \\ a & 2 & 2a & 0 \end{array}\right) $$
Normally I can fairly easy use Gauss' forward and backward elimination to create zeros under and above each pivot. However, with $a$ in the picture I struggle to reduce it any further. For example if I were to reduce the last row, I believe I can't just say $a \times 1/a $ ? Since a could be $0$.
I'm not sure I can go about this. Hope someone can help me!