I am trying to solve this system of three equations that has 4 variables, but without using a matrix.
$$2x+7y+3z+u=6$$ $$3x+5y+2z+2u=4$$ $$9x+4y+z+7u=2$$
How should I proceed, I've never done a system of equations with 4 variables, and looking online I only come to solutions using the matrix.
You can use substitution. First, you get that $$u=6-2x-7y-3z$$ from the first equation. Now you replace it the second an third and get the new 2 equation system (it has been simplyfied): $$x+9y+4z=8,$$ $$3x+45y+20z=40.$$ Now, do the same on the first of the above equations for $x$ to get that $$x=8-9y-4z$$ and replacce it in the last one to get the equation (it has been simplyfied) $$7y+2z=4.$$ Finally, you now know that $y=\frac{4-2z}{7}$. You replace now this value in $x$ equation to get its value in function of $z$ and finally the same for $u$. Now, it's finished, obtaining infinite solutions determined by the value of $z$.