728x90
Pivot (position)
Matrix의 row echelon form(REF)에서 leading entry들의 위치를 가르킴.
- leading entry : row에서 0이 아닌 첫번째 element를 가르킴.
- 실제로 REF나 RREF나 pivot position은 같음.
- RREF는 matrix에 대해 unique하게 결정됨 : Pivot역시 고정됨!
Pivot column
Matrix에서 Pivot (or Pivot position)을 포함하고 있는 column.
Example
다음의 matrix A에서 pivot position과 pivot column을 구하라.
A=[0−3−649−1−2−131−2−303−1145−9−7]
Solution
A의 REF를 구하면 (row-deduction algorithm 또는 Gauss elimination을 사용) 다음과 같음.
[145−9−7024−6−6000−5000000]
- 붉은 색의 element들의 위치가 바로 pivot임.: (1,1),(2,2), (3,4)
- pivot column은 1,2,4 열임.
즉, 원래 A에서 표시하면 다음과 같음.
A=[0−3−649−1−2−131−2−303−1145−9−7]
- Pivot은 위치임.
- 즉, matrix에 따라 해당 위치의 값이 0일 수 있다.(물론 이 경우 matrix는 REF 및 RREF가 아님.)
반응형
'... > Linear Algebra' 카테고리의 다른 글
[LA] Gauss-Jordan Elimination (including Gauss Elimination) and LU Factorization (0) | 2024.02.17 |
---|---|
[LA] Row Operations and Row Equivalent (0) | 2024.02.17 |
[LA] Existence and Uniqueness Theorem (1) | 2024.02.17 |
[LA] Linear Equation (선형 방정식) and Linear System 정리. (0) | 2024.02.16 |
[LA] Affine Combination, Affine Hull and Affine Set (0) | 2024.02.16 |