0

I have problems determining the rank of the following matrix. Note: Most probably it is me missing something, but I am sincerely confused by this:

$$ \begin{matrix} 1 & 2 & -2 \\ 0 & 0 & 5 \\ 0 & 0 & -8 \\ \end{matrix} $$

Now, I would say that the matrix is in its reduced form because each one of the three entries under the main diagonal are zeroes. I'd say that the rank of this matrix is three, because that is the number of non-zero rows, but every calculator says that the rank is two. Why?

Thanks and sorry for taking your time!

l0ner9
  • 623
  • 1
    Hint: is there any way to eliminate the 3rd row? – Alex Feb 06 '19 at 15:22
  • yes but why would we do it? sorry for my ignorance but i am new to this...i think that it is not a requirement for the matrix to be in its reduced form? – l0ner9 Feb 06 '19 at 15:32

3 Answers3

1

It is not yet in reduced form: the last row is a (scalar) multiple of the middle row so you can further reduce it to: $$\begin{pmatrix} 1 & 2 & -2 \\ 0 & 0 & 5 \\ 0 & 0 & 0 \\ \end{pmatrix}$$

From this form, it should be clear that the rank is $2$.

Now, I would say that the matrix is in its reduced form because each one of the three entries under the main diagonal are zeroes.

Take a look at The Row Echelon Form, I quote:

A rectangular matrix is in row echelon form if it has the following three properties:

  • All nonzero rows are above any rows of all zeros
  • Each leading entry of a row is in a column to the right of the leading entry of the row above it
  • All entries in a column below a leading entry are zeros
StackTD
  • 27,903
  • 34
  • 63
  • so which one of these properties does my matrix not contain? sorry for my ignorance, i am pretty new to this!

    thanks for answering

    – l0ner9 Feb 06 '19 at 15:34
  • The middle one: the leading entry ("non-zero") in your last row, is not to the right of the leading entry of the row above (but on the same position). So also the third one: the entry under the leading entry of the middle row, is not (yet) zero. – StackTD Feb 06 '19 at 15:41
0

The rank is, by definition the dimension of the image of your matrix, which is the space generated by the columns of your matrix. Now, as you can see, the second column is a multiple of the first one, and so the rank has to be at MOST 2. Finally, it should be easy to figure out that the last two columns are linearily independant !

PS: Your reduced form would rather be: $$ \begin{matrix} 1 & 2 & -2 \\ 0 & 0 & 5 \\ 0 & 0 & 0 \\ \end{matrix} $$

J.F
  • 393
0

The first tow coloums are linearly dependent. So the rank is either 2 or 1. But the last tow coloums are linearly independent so the rank is greter than 2. So the rank is 2.

Mahran
  • 133
  • 5