# 线性代数

# 几何意义

# Preliminary

向量使用列向量表示,可以理解为标准正交基下的线性组合

[x1x2]=x1[10]+x2[01]\begin{bmatrix} x_1 \\ x_2 \end{bmatrix} = x_1 \begin{bmatrix} \textcolor{#1f77b4}{1} \\ \textcolor{#1f77b4}{0} \end{bmatrix} + x_2 \begin{bmatrix} \textcolor{#ff7f0e}{0} \\ \textcolor{#ff7f0e}{1} \end{bmatrix}

如果把矩阵的每一列看作一个基向量,那么矩阵左乘一个向量意味着将其变换为新基向量下的线性组合

[i1j1i2j2][x1x2]=[i1x1+j1x2i2x1+j2x2]=x1[i1i2]+x2[j1j2]\begin{bmatrix} \textcolor{#1f77b4}{i_1} & \textcolor{#ff7f0e}{j_1} \\ \textcolor{#1f77b4}{i_2} & \textcolor{#ff7f0e}{j_2} \end{bmatrix} \begin{bmatrix} x_1 \\ x_2 \end{bmatrix} = \begin{bmatrix} \textcolor{#1f77b4}{i_1} \cdot x_1 + \textcolor{#ff7f0e}{j_1} \cdot x_2 \\ \textcolor{#1f77b4}{i_2} \cdot x_1 + \textcolor{#ff7f0e}{j_2} \cdot x_2 \end{bmatrix} = x_1 \begin{bmatrix} \textcolor{#1f77b4}{i_1} \\ \textcolor{#1f77b4}{i_2} \end{bmatrix} + x_2 \begin{bmatrix} \textcolor{#ff7f0e}{j_1} \\ \textcolor{#ff7f0e}{j_2} \end{bmatrix}

# 矩阵描述线性变换

# 例 1

[1320][12]=1[12]+2[30]=[52]\begin{bmatrix} \textcolor{#1f77b4}{1} & \textcolor{#ff7f0e}{3} \\ \textcolor{#1f77b4}{-2} & \textcolor{#ff7f0e}{0} \end{bmatrix} \begin{bmatrix} \textcolor{#a0a0a0}{-1} \\ \textcolor{#a0a0a0}{2} \end{bmatrix} = \textcolor{#a0a0a0}{-1} \begin{bmatrix} \textcolor{#1f77b4}{1} \\ \textcolor{#1f77b4}{-2} \end{bmatrix} + \textcolor{#a0a0a0}{2} \begin{bmatrix} \textcolor{#ff7f0e}{3} \\ \textcolor{#ff7f0e}{0} \end{bmatrix} = \begin{bmatrix} \textcolor{#a0a0a0}{5} \\ \textcolor{#a0a0a0}{2} \end{bmatrix}

TIP

两个矩阵相乘得到的新矩阵,可理解为将两个线性变换(从右至左)相继作用所对应的复合变换

# 非方阵情形

变换为由新基向量的维度所决定的空间中的向量

# 例 2

[211101][12]=[032]\begin{bmatrix} \textcolor{#1f77b4}{2} & \textcolor{#ff7f0e}{1} \\ \textcolor{#1f77b4}{-1} & \textcolor{#ff7f0e}{1} \\ \textcolor{#1f77b4}{0} & \textcolor{#ff7f0e}{1} \end{bmatrix} \begin{bmatrix} \textcolor{#a0a0a0}{-1} \\ \textcolor{#a0a0a0}{2} \end{bmatrix} = \begin{bmatrix} \textcolor{#a0a0a0}{0} \\ \textcolor{#a0a0a0}{3} \\ \textcolor{#a0a0a0}{2} \end{bmatrix}


# 例 3

[23][12]=4\begin{bmatrix} \textcolor{#1f77b4}{2} & \textcolor{#ff7f0e}{3} \end{bmatrix} \begin{bmatrix} \textcolor{#a0a0a0}{-1} \\ \textcolor{#a0a0a0}{2} \end{bmatrix} = \textcolor{#a0a0a0}{4}

# 秩 (rank)

矩阵的(列)是其列向量所张成 (span) 的向量空间的维度,也即其线性无关的纵列的极大数目

# 例 4

rank([2412])=1\text{rank}\left(\begin{bmatrix} \textcolor{#1f77b4}{2} & \textcolor{#ff7f0e}{4} \\ \textcolor{#1f77b4}{1} & \textcolor{#ff7f0e}{2} \end{bmatrix}\right) = 1

例 2 中的矩阵秩为 2
例 3 中的「矩阵」秩为 1

TODO 行秩等于列秩

# 逆矩阵

A1A=IA^{-1}A=I

矩阵 AA 的逆矩阵 A1A^{-1} 相当于「还原」AA 所做的线性变换

# 特征值

# 奇异值分解 (SVD)

Paper: The extraordinary SVD

# 实际应用

# 主成分分析 (PCA)

--- Gilbert Strang Introduction to Linear Algebra, Ch. 7

# 马尔科夫链稳态分布

# PageRank

# 谱聚类

Last updated: 9/8/2021, 3:02:37 PM