2

How would I solve a $4 \times 3$ matrix?

I've tried making it into an augmented matrix but I ended up with all zeros at the bottom. Please help!

$$\begin{align}\begin{cases}x_1+x_2+x_3+x_4&=1 \\ 2x_1+3x_2+4x_3+4x_4&=2 \\-x_1+x_3+x_4&=-1. \end{cases}\end{align}$$

My working so far (forgot to add it in:

enter image description here

(I'm sorry if its not clear. I don't know how to type it out on the computer. Help and tips are greatly appreciated)

Cookie
  • 13,532
  • 1
    if an answer is to your liking, it is a courtesy to accept/upvote the answer. – abel Feb 18 '15 at 23:12
  • 1
    @abel Yes, but I would add that it is not just a courtesy to the answerer but to the MSE community (since answered questions tend to get fewer views and thus less consideration). – Daniel W. Farlow Feb 18 '15 at 23:15

2 Answers2

4

Hint: $$\begin{bmatrix}1&1&1&1&1\\ 2&3&4&4&2\\ -1&0&1&1&-1\end{bmatrix}\sim\cdots\sim\begin{bmatrix}1&0&-1&-1&1\\ 0&1&2&2&0\\ 0&0&0&0&0\end{bmatrix}$$ Thus, we have that $$\begin{cases}x_1 &= x_3+x_4+1\\ x_2 &= -2x_3-2x_4\\ x_3,x_4 &{} \text{free variables}\end{cases}$$

  • What do you mean by free variables? – Ariff Aziz Feb 18 '15 at 22:57
  • 2
    @AriffAziz $x_1$ and $x_2$ are so-called "basic variables"; they are determined by the values of $x_3$ and $x_4$. The variables $x_3$ and $x_4$ are "free variables" because we can plug in any values we want for $x_3$ and $x_4$--doing this will determine the values of $x_1$ and $x_2$ in order to make your system of equations true. Try it for yourself. – Daniel W. Farlow Feb 18 '15 at 23:00
  • Thanks for the explanation @crash. Now I can see it clearly! – Ariff Aziz Feb 18 '15 at 23:08
2

You can use Gaussian elimination. Write it is a matrix equation - but it is a 3x4 matrix, 3 rows and 4 columns.

Subtract two times the first row from the second and add the first to the third. The gives you just a 1 in the first column.

You will then find that the (2,2) entry becomes 5 and the (3,2) becomes 1. Divide row 2 by 5 to get a 1 in position (2,2); now subtract row 2 from row 1 and row 3. So far we have a 1 at the top of the first column, then 0s, and a 1 in the middle of the second column and 0s above and below.

Do this again for the third column.

This gives the identity matrix on the left, followed by a column of three numbers, say $a$, $b$ and $c$; suppose the right hand side becomes $A$, $B$ and $C$. We then have the general solution in the form $$(x_1, x_2, x_3, x_4) = (A, B, C, 0) + \lambda (a, b, c, -1).$$ Note that we could have done this differently, say leaving the 2nd column and 'clearly' the other three; this would give a different, but equivalent, form of the answer. This is because your solution is a line of solutions. Doing it another way, you will always get the ratio $a : b : c : -1$ the same, but you may get a different factor.


By considering the initial work in crash's answer, the solution is

$$\left(\begin{matrix} x_1 \\ x_2 \\ x_3 \\ x_4 \end{matrix}\right) = \left(\begin{matrix} 1 \\ 0 \\ 0 \\ 0 \end{matrix}\right) + \lambda\left(\begin{matrix} -1 \\ 2 \\ -1 \\ 0 \end{matrix}\right) + \mu\left(\begin{matrix} -1 \\ 2 \\ 0 \\ -1 \end{matrix}\right),$$ where varying $\lambda$ and $\mu$ give you your two dimensional solution space.

As crash said, this is one of those things that it is worth showing at least once in your life, but then you just use it.


Note that in general, given 4 variables and 3 equations, you will have a 1-dimensional solution space. In this case it is 2D because any 3x3 submatrix has determinant zero, but there exist 2x2 submatrices with non-zero determinant.

Hopefully this helps! If it does, then please remember to upvote and/or accept this answer! :)

Sam OT
  • 6,675