선형대수학 :: Gaussian Elimination | LU FactorizationCSE 학부/선형대수학2024. 2. 18. 22:00
Table of Contents
Linear Equation
- Row operations
- subtracting
- row exchange
- row scaling
Augmented matrix form
Row echelon form
- 가우스 일루미네이션을 한다.
- 사다리꼴이 나올 때까지 계속 끝까지 한다.
LU Factorization
- Elimination Matrix
- 행 교환 : Permutaion
- 행 스케일링 : Digonal
- E → E^(-1) : 원상 복구하기(2를 뺐으면 다시 2를 더하는 식으로)
$\begin{gather*}E = \begin{bmatrix} 1 & 0 \\ -2 & 1\end{bmatrix} \\E^{-1}=\begin{bmatrix} 1 & 0 \\ 2 & 1\end{bmatrix}\end{gather*}$
$\begin{gather*}EA = U \\ A = E^{-1}U \\ A = LU\end{gather*}$
$\begin{gather*}D = \{U에서 \ 대각선 \ 추출\} \\ U = DU' \\ A = LDU'\end{gather*}$
Symmetric
$\begin{gather*}A=A^T, \\ A = LDL^T\end{gather*}$
LU 를 알 때 Ax = b 풀이
$\begin{gather*}Ax = b \\ ---------\\ A = LU \\ LUx = b \\ ---------\\ Ly = b \\ Ux = y\end{gather*}$
'CSE 학부 > 선형대수학' 카테고리의 다른 글
선형대수학 :: Rank | Linear Independence (1) | 2024.02.18 |
---|---|
선형대수학 :: Subspaces (0) | 2024.02.18 |
선형대수학 :: Inverse Matrix (0) | 2024.02.18 |
선형대수학 :: Matrix Multiplication (0) | 2024.02.18 |
선형대수학 :: Vector | Matrix (0) | 2024.02.18 |
@체리비! :: 체리비 Lab。
틀린 부분은 언제든지 말씀해주세요!!! 감사합니다!