MIT_18.065-Part_2-Matrix_Factorization
# 矩阵分解
2021-11-12
Tags: #Matrix #Math/LinearAlgebra #Math
- 我们看待矩阵乘积的新方式有助于我们理解数据科学里面对矩阵的各种分解. 我们常常需要发掘一个矩阵里面隐藏的信息, 而通过将分解为, 我们可以观察A里面最基本的组成部分: 秩为1的矩阵:
下面列举重要的分解, 在详细论述后将补充相应细节
# 五个重要的矩阵分解
# 分解 :
- 可以理解为矩阵的化简(elimination).
- 代表 Lower Triangular, 是一个下三角矩阵, 同理, 代表Upper Triangular, 是一个上三角矩阵.
- LU分解可以被视为高斯消去法的矩阵形式。 是高斯消元法的过程, 而是高斯消元法的结果. 看下面这个例子:
- LU分解的例子
LU分解的例子
将一个简单的矩阵A进行LU分解: $$ A= \begin{bmatrix} ...
# 正交分解 :
通过将矩阵 的列$\boldsymbol{a}{1}\boldsymbol{a}{n}A=Q R$
其中:
- 矩阵 的列相互正交 (orthonormal), 如果列向量长度为一, 还有: ,
- 是一个上三角矩阵(可能不是方阵).
正交化常用的方法是 “Gram-Schmidt” 方法.
#
comes from the eigenvalues of a symmetric matrix Eigenvalues on the diagonal of . Orthonormal eigenvectors in the columns of .
S是对称矩阵, Q是S的正交特征列向量, 是特征值组成的对角矩阵.
MIT_18.065-Part_3-A_Different_Perspectvie_of_Matrix_Multiplication-An_Example
#
- is diagonalization when is by with independent eigenvectors. Eigenvalues of on the diagonal of . Eigenvectors of in the columns of .
#
- is the Singular Value Decomposition of any matrix (square or not). Singular values in . Orthonormal singular vectors in and .