CBMS-2018-08

题目来源:[[做题/文字版题库/CBMS/2018#Question 8|2018#Question 8]] 日期:2024-07-27 题目主题: CS-Algorithms-Matrix Analysis

Solution

1. Positive Eigenvalues and Normalized Eigenvectors of

Given the singular value decomposition (SVD) of as , we can express as follows:

The matrix is diagonal with the diagonal elements (). Thus, the positive eigenvalues of are exactly the , and the associated normalized eigenvectors are the columns of .

2. Surjectivity and Injectivity of

Surjective (onto): The mapping is surjective if the range of spans , i.e., has full row rank. This occurs when .

Injective (one-to-one): The mapping is injective if the kernel of contains only the zero vector, i.e., has full column rank. This occurs when .

3. Image of and Kernel of

The pseudoinverse is defined as . Consider .

We need to show that is isomorphic to . Observe the following:

Thus, .

Now, consider . Then , and

Thus, . Therefore, .

4. Orthogonal Decomposition

Given where and :

To show orthogonality:

Since is symmetric ():

Thus, and are orthogonal.

5. Minimizing

Let . We need to show that minimizes the expression.

Consider the error:

Since , we have , thus:

The norm to be minimized is:

This is minimized when since and .

知识点

奇异值分解线性映射广义逆矩阵正交分解线性代数

重点词汇

  • singular value decomposition (SVD) 奇异值分解
  • pseudoinverse 广义逆
  • surjective 满射
  • injective 单射
  • orthogonal decomposition 正交分解

参考资料

  1. “Linear Algebra and Its Applications” by Gilbert Strang, Chapter 7: The Singular Value Decomposition (SVD)
  2. “Matrix Computations” by Gene H. Golub and Charles F. Van Loan, Chapter 2: Matrix Analysis