I don't understand the rank of a matrix

  • Thread starter Thread starter mr_coffee
  • Start date Start date
  • Tags Tags
    Matrix rank
Click For Summary
SUMMARY

The rank of a matrix is defined as the number of linearly independent rows or columns within that matrix. To determine the rank, one must perform Gaussian elimination on the matrix and count the number of non-zero rows in the resulting echelon form. For example, the matrix A = [[2, 3, -2], [2, 6, 0], [-4, 0, 0]] has a rank of 3, while the matrix [[1, 2], [6, -3]] has a rank of 2. The rank indicates the number of columns that cannot be expressed as a linear combination of others.

PREREQUISITES
  • Understanding of matrix notation and operations
  • Familiarity with Gaussian elimination
  • Knowledge of linear independence and linear combinations
  • Basic concepts of vector spaces
NEXT STEPS
  • Study Gaussian elimination techniques in detail
  • Learn about linear independence and its implications in vector spaces
  • Explore the concept of spanning sets in linear algebra
  • Investigate applications of matrix rank in solving linear systems
USEFUL FOR

Students of linear algebra, mathematicians, and anyone seeking to understand matrix theory and its applications in various fields such as engineering and computer science.

mr_coffee
Messages
1,613
Reaction score
1
Hello everyone, can someone explain to me what the rank of a matrix is?
I have the following:
2 3 -2
2 6 0
-4 0 0
Rank = 3;

0 2 0 0
0 0 0 -4
0 0 0 0
9 0 0 0
rank = 3;


1 2
6 -3
Rank = 2;

I don't get it! any help would be great!
 
Physics news on Phys.org
Hey,

The rank of a matrix is the number of linearly independent rows in the matrix.

You can find the rank by performing Gaussian elimination. The rank will then be the number of non-zero rows in the resulting matrix.
 
To compute the rank of a matrix, do the following.

1) Let A be a m\times n matrix.
2) Perform gaussian-elimination on A
3) Count the number of non zero columns. This number is the rank of the matrix.

We'll start with your first example.
1) A = \left[ \begin{array}{ccc}2 & 3 & -2 \\2 & 6 & 0 \\-4 & 0 & 0 \\\end{array}\right]

2) Perform the gaussian-elimination on A
A' = \left[ \begin{array}{ccc}1 & 0 & 0 \\0 & 1 & 0 \\0 & 0 & 1 \\\end{array}\right]

3) Now we count the number of non-zero columns:
A' = \left[ \begin{array}{ccc}(1) & 0 & 0 \\0 & (1) & 0 \\0 & 0 & (1) \\\end{array}\right]

Rank = 3

----
Now, what does the rank mean? Well the rank of a matrix let's you know the number of columns that cannot be written as a linear combination of each other.

If you consider A' to be a matrix of vectors, we would have the following column vectors.

\vec{V_1} = (1,0,0)
\vec{V_2} = (0,1,0)
\vec{V_3} = (0,0,1)

These vectors are ALL linearly independent of each other. Which means that the column vectors in A are all linearly independent of each other.
 
Just don't forget that the rank only tells you the number of independent columns. If you are trying to find the spanning set, you must go back to the ORIGINAL matrix.
 
Awesome! thanks a lot guys! good explanation! :biggrin:
 

Similar threads

  • · Replies 14 ·
Replies
14
Views
3K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 31 ·
2
Replies
31
Views
2K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 2 ·
Replies
2
Views
706
Replies
2
Views
965
Replies
3
Views
823
  • · Replies 20 ·
Replies
20
Views
3K
Replies
2
Views
2K
Replies
15
Views
2K