Problem 8
Question
Let $$ A=\left[\begin{array}{cc} A_{1} & A_{2} \\ A_{2}^{\top} & A_{3} \end{array}\right], \quad S=\left[\begin{array}{cc} A_{1} & O \\ O & A_{2} \end{array}\right] $$ where \(A_{1}, A_{3}\) are symmetric \(d \times d\) matrices and the rank of the \(d \times d\) matrix \(A_{2}\) is \(r \leq d-1\). We further stipulate that the \((2 d) \times(2 d)\) matrix \(A\) is positive definite. a Let \(A_{1}=L_{1} L_{1}^{T}, A_{3}=L_{3} L_{3}^{\top}\) be Cholesky factorizations and assume that the preconditioner \(B\) is the lower-triangular Cholesky factor of \(S\) (hence \(\left.B B^{\top}=S\right)\). Prove that $$ C=B^{-1} A B^{-\top}=\left[\begin{array}{cc} I & F \\ F^{\top} & I \end{array}\right], \quad \text { where } \quad F=L_{1}^{-1} A_{2} L_{3}^{-T} . $$ \(\mathbf{b}\) Supposing that the eigenvalues of \(C\) are \(\lambda_{1}, \ldots, \lambda_{2 d}\), while the eigenvalues of \(F F^{\top}\) are \(\mu_{1}, \ldots, \mu_{d} \geq 0\), prove that, without loss of generality, $$ \lambda_{k}=1-\sqrt{\mu_{k}}, \quad \lambda_{d+k}=1+\sqrt{\mu_{k}}, \quad k=1,2, \ldots, d . $$ c Prove that the rank of \(F F^{\top}\) is \(r\), thereby deducing that \(C\) has at most \(2 r+1\) distinct eigenvalues. What does this tell you about the number of steps before the PCG method terminates in exact arithmetic?
Step-by-Step Solution
VerifiedKey Concepts
Positive Definite Matrices
- All the eigenvalues of a positive definite matrix are strictly positive, meaning no zero or negative values.
- The positive definiteness also stems from the quadratic form: for any non-zero vector \( \mathbf{x} \), \( \mathbf{x}^T A \mathbf{x} > 0 \).
Eigenvalues
- Eigenvalues determine the matrix's behavior and condition.
- They are essential for matrix diagonalization, which simplifies complex calculations.
- In the context of this problem, eigenvalues are calculated to understand the properties of the matrix \( C \).
Matrix Rank
- Rank determines the dimension of the matrix's column space.
- A rank deficient matrix means some of the rows/columns can be expressed as combinations of others, indicating dependency.
- In this particular example, assessing the rank of \( A_2 \) is crucial since it helps determine the count of non-zero eigenvalues and terminate conditions for algorithms like the PCG method.
Preconditioned Conjugate Gradient Method
- PCG is effective in improving the convergence rate by utilizing preconditioners.
- Preconditioning transforms the system into another equivalent one, enhancing its suitability for iterative solvers.
- Insights gleaned from the matrix \( C \) in the problem help predict the PCG method's termination point, which is linked to the rank of the matrix.