Gilbert Strang의 18.065 강의 Lecture 2: Multiplying and Factoring Matrices를 정리한 내용이다. 5가지의 Matrix factorization 방법들과 4개의 Fundamental Sub-space에 대해서 다룬다.

Factorization methods


  1. $A : LU$ (Elimination)
  2. $A : QR$ (Gram-Schmidt Process)
  3. $S : Q{\Lambda}Q^T$ (Symmetric Eigendecomposition)
  4. $A : X\Lambda X^{-1}$ (Eigendecomposition**)**
  5. $A : U\Sigma V^T$ (Singular Vector Decomposition)

Elimination (A = LU)


Elimination with multiplier

한 matrix를 Lower Triangular matrix와 Upper Triangular matrix로 만들어보자!

Elimination in the other view

(column) x (row)의 방식으로 생각해보자!

$A = \begin{bmatrix} x&...&x\\ ... & \;\;\; & \;\;\;\\ x& &\\ \end {bmatrix} = (col_1)(row_1) + \begin{bmatrix} 0 & - & 0\\ | & A_2\\ 0 &
\end {bmatrix}$