
Definition: Rank ◁ matrix 속성
The rank of a matrix A, denoted by rank A,
is the dimension of the column space of A.
- Matrix를 이루는 Column Vectors에서 Linearly Independent 인 것들의 수를 의미
Row Space의 Dimension 의 경우를 강조하여 Row Rank라고 부르고,
Column Space의 경우를 강조하여 Column Rank라고도 부르는 경우가 있으나,
동일한 Matrix에 대해 이 둘은 같기 때문에 그냥 Rank라고 지칭하는게 일반적임.
m×n Matrix A에서 다음이 성립.
Column Rank(A)≤nRow Rank(A)≤nRank(A)≤min(m,n)
Important Properties of Rank
- Rank(A⊤)=Rank(A) : Row Rank와 Column Rank가 같음을 기억.
- Rank(Am×nBn×q)=min(Rank(Am×n),Rank(Bn×q))≤min(m,n,q) : SfM에서 Observation Matrix에서 사용되는 성질.
- Rank(A⊤A)=Rank(AA⊤)=Rank(A⊤)=Rank(A)
- Am×m is not singular iff Rank(Am×m)=m: 이 경우 A is a Full Rank matrix.
SfM (Structure from Motion): 여러시점의 카메라의 이미지를 이용하여 3D 구조나 카메라의 모션을 복원하는 기술을 가리킴.
Example 3 :
Determine the rank of the matrix
A∼[25−3−480−325−70−6414−200−965−6]
- Solution
- Reduce A to echelon form.
- The matrix A has 3 pivot columns, so rank A = 3.
Theorem 14 : Rank Theorem
If a matrix A has n columns, then rank A + dim Nul A=n.
2024.07.08 - [.../Linear Algebra] - [LA] Null Space
[LA] Null Space
Null Space는 주로 matrix 에 관련된 맥락에서 사용되며,Linear Transform 의 맥락에서는 Kernel 이라고 불림.Definition : Null SpaceThe null space of an m×n matrix A, written as Nul(A), is the set of all solutions of the ho
dsaint31.tistory.com
Reference
Linear Algebra and Its Applications, 5th ed., David C. Lay: Chapter 4.6 Rank
https://www.google.co.kr/books/edition/Linear_Algebra_and_Its_Applications_Fift/lZ4mzgEACAAJ?hl=ko
'... > Linear Algebra' 카테고리의 다른 글
[LA] Skew-Symmetric Matrix 란 (0) | 2024.07.16 |
---|---|
[LA] Null Space (0) | 2024.07.08 |
[LA] Matrix Multiplication for Cross Product (0) | 2024.06.28 |
[Math] EVD 및 SVD로 x⊤A⊤Ax의 최소값 및 해 구하기: Total Least Squares (0) | 2024.06.23 |
[LA] Span (생성) (0) | 2024.05.29 |