Difference between revisions of "What is matrix rank and how do i calculate it?"

From Murray Wiki
Jump to navigationJump to search
Line 1: Line 1:
The rank of a matrix <math>A</math> is the number of independent columns of <math>A</math>. A square matrix is full rank if all of its columns are independent. That is, a full rank matrix has no column vector <math>v_i</math> of <math>A</math> that can be expressed as a linear combination of the other column vectors <math>v_j \neq \Sigma_{i = 0, i\neq j}^{n} a_i v_i</math>.  
The rank of a matrix <math>A</math> is the number of independent columns of <math>A</math>. A square matrix is full rank if all of its columns are independent. That is, a full rank matrix has no column vector <math>v_i</math> of <math>A</math> that can be expressed as a linear combination of the other column vectors <math>v_j \neq \Sigma_{i = 0, i\neq j}^{n} a_i v_i</math>. For example, if one column of <math>A</math> is twice another one, then those two columns are linearly dependent (with a scaling factor 2) and thus the matrix would not be full rank.  





Revision as of 23:32, 29 October 2007

The rank of a matrix is the number of independent columns of . A square matrix is full rank if all of its columns are independent. That is, a full rank matrix has no column vector of that can be expressed as a linear combination of the other column vectors . For example, if one column of is twice another one, then those two columns are linearly dependent (with a scaling factor 2) and thus the matrix would not be full rank.


A simple test for determining if a matrix is full rank is to calculate its determinant. If the determinant is zero, there are linearly dependent columns and the matrix is not full rank. Prof. John Doyle also mentioned during lecture that one can perform the singular value decomposition of a matrix, and if the lowest singular value is near or equal to zero the matrix is likely to be not full rank ("singular").

--Sawyer Fuller 16:22, 29 October 2007 (PDT)