Eigenvalue & Eigenvector Cheatsheet
1. 定义 (Definitions)
特征值 (Eigenvalue)
特征值 是方阵 的一个标量 ,使得存在非零向量 ,满足 。
Eigenvalue is a scalar of a square matrix , such that there exists a non-zero vector satisfying .
特征向量 (Eigenvector)
特征向量 是方阵 的一个非零向量 ,使得存在标量 ,满足 。
Eigenvector is a non-zero vector of a square matrix , such that there exists a scalar satisfying .
2. 性质 (Properties)
-
特征值的数量: 方阵 的特征值的数量等于矩阵的阶数 。
The number of eigenvalues of a square matrix is equal to its order .
-
特征向量的线性无关性: 对于不同的特征值对应的特征向量是线性无关的。
Eigenvectors corresponding to different eigenvalues are linearly independent.
-
特征值的迹和行列式: 矩阵 的特征值之和等于矩阵的迹,特征值的乘积等于矩阵的行列式。
The sum of the eigenvalues of a matrix equals the trace of the matrix, and the product of the eigenvalues equals the determinant of the matrix.
-
幂次方性质: 如果 是矩阵 的特征值,那么 是 的特征值。
If is an eigenvalue of matrix , then is an eigenvalue of .
-
特征向量的旋转不变性: 如果 是 的特征向量,那么对任意标量 , 也是 的特征向量。
If is an eigenvector of , then for any scalar , is also an eigenvector of .
3. 计算方法 (Computation Methods)
计算特征值 (Finding Eigenvalues)
-
特征多项式 (Characteristic Polynomial): 计算 ,其中 是单位矩阵。解该多项式方程得到特征值 。
Calculate , where is the identity matrix. Solve the polynomial equation to find the eigenvalues .
计算特征向量 (Finding Eigenvectors)
-
求解线性方程组: 对于每个特征值 ,求解 的非零解 。
For each eigenvalue , solve for non-zero vector .
4. 例子 (Examples)
例 1:二维矩阵 (2x2 Matrix)
给定矩阵 :
-
计算特征多项式:
\lambda = 2, \ 5
3. 对于 $\lambda = 2$:(A - 2I)\mathbf{v} = 0 \Rightarrow \begin{pmatrix} 2 & 1 \ 2 & 1 \end{pmatrix} \begin{pmatrix} v_1 \ v_2 \end{pmatrix} = 0 \Rightarrow v_1 = -v_2
特征向量为 $\mathbf{v} = \begin{pmatrix} -1 \\ 1 \end{pmatrix}$。 4. 对于 $\lambda = 5$:(A - 5I)\mathbf{v} = 0 \Rightarrow \begin{pmatrix} -1 & 1 \ 2 & -2 \end{pmatrix} \begin{pmatrix} v_1 \ v_2 \end{pmatrix} = 0 \Rightarrow v_1 = v_2
特征向量为 $\mathbf{v} = \begin{pmatrix} 1 \\ 1 \end{pmatrix}$。 ## 5. 常见应用 (Common Applications) 1. **系统稳定性分析 (System Stability Analysis)**: 通过分析系统矩阵的特征值来判断系统的稳定性。 Analyze the stability of a system by examining the eigenvalues of its system matrix. 2. **图像处理 (Image Processing)**: 主成分分析(PCA)用于图像降维和特征提取。 Principal Component Analysis (PCA) is used for image dimensionality reduction and feature extraction. 3. **量子力学 (Quantum Mechanics)**: 特征值和特征向量在薛定谔方程中用于描述量子态。 Eigenvalues and eigenvectors are used in the Schrödinger equation to describe quantum states.