For an assignment I need to solve a $4\times 3$ matrix (?) with the Gaussian elimination method, as well as finding the coefficients-matrix (2. language) and the determinant of the matrix. I am having issues setting up the coefficients-matrix, is this correct? Or should I include the zeroes since there are missing values in each row? A = The coeff-matrix
$$x_1-0.25x_2-0.25x_3=50$$ $$-0.25x_1+x_2-0.25x_4=50$$ $$-0.25x_1+x_3-0.25x_4=25$$ $$-0.25x_2-0.25x_3+x_4=25$$
$$A= \begin{pmatrix} 1 & -0.25 & -0.25 \\ -0.25 & 1 & -0.25 \\ -0.25 & 1 & -0.25 \\ -0.25 & -0.25 & 1 \\ \end{pmatrix}$$
If anyone could clarify how I should think around this one I would be grateful.
Jonas
in a first step i would multiply by $4$ and we get integer coefficients $$4x_1-x_2-x_3=200$$ $$-x_1+4x_2-x_4=200$$ $$-x_1+4x_3-x_4=200$$ $$-x_2-x_3+4x_4=200$$ now you can eliminate the variables multiplying the second equation by $4$ and adding to the first one and do the same with the third equation we get $$4x_1-x_2-x_3=200$$ $$15x_2-x_3-4x_4=1000$$ $$-x_2-15x_3-4x_4=1000$$ $$x_2-x_3+4x_4=200$$ in the next step we eliminate $$x_2$$: we have $$4x_1-x_2-x_3=200$$ $$15x_2-x_3-4x_4=1000$$ multiplying the third equation (from above) by $15$ and adding to the second: $$-226x_3-64x_4=16000$$ (a) and doing the same with the fourth one: $$14x_3-64x_4=-14000$$ (b) multiplying equation (a) by $-1$ and adding to the last one we can eliminate $x_4$ we get $$-240x_4=30000$$ now you can compute $x_4$