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 \times n$ matrix $A$에서 다음이 성립.
$$ \text{Column Rank}(A) \le n \\ \text{Row Rank}(A) \le n \\ \text{Rank}(A) \le \text{min}(m,n)$$
Important Properties of Rank
- $\text{Rank}(A^\top) = \text{Rank}(A)$ : row rank와 column rank가 같음을 기억.
- $\text{Rank}(A_{m \times n}B_{n \times q})=\text{min}(\text{Rank}(A_{m \times n}),\text{Rank}(B_{n \times q})) \le \text{min}(m,n,q)$ : SfM에서 Observation Matrix에서 사용되는 성질.
- $\text{Rank}(A^\top A) = \text{Rank}(A A^\top) = \text{Rank} (A^\top) = \text{Rank}(A)$
- $A_{m\times m}$ is not singular iff $\text{Rank}(A_{m \times m})=m$: 이 경우 $A$ is a full rank matrix.
Example 3 :
Determine the rank of the matrix
$$
A \sim \begin{bmatrix}2 & 5 & -3 & -4 & 8 \\ 0 & -3 & 2 & 5 & -7 \\
0 & -6 & 4 & 14 & -20 \\ 0 & -9 & 6 & 5 & -6\end{bmatrix}
$$
- 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 $\text{Nul }A = n$.
2024.07.08 - [.../Linear Algebra] - [LA] Null Space
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로 $\textbf{x}^TA^TA\textbf{x}$의 최소값 및 해 구하기: Total Least Squares (0) | 2024.06.23 |
[LA] Span (생성) (0) | 2024.05.29 |