Quiz: Iterative Solvers for Calibration Problems
Module 5 of 5 · Hard
Quick Quiz
1. For a symmetric positive definite (SPD) matrix with condition number , the conjugate gradient (CG) method satisfies , while steepest descent satisfies . For , approximately how many iterations does each method require to reduce the A-norm error by a factor of ?
2. In the CG algorithm, the search direction update is with . Which property does this update enforce, and why is it essential?
3. A Crank-Nicolson pricer for a 1D Black-Scholes PDE has spatial nodes and runs for time steps. Each time step requires solving where is tridiagonal. Comparing the Thomas algorithm vs LU factorisation for each solve, and assuming the LU factorisation is recomputed at every step, what are the approximate total flop counts?
4. The preconditioned CG (PCG) method for applies a preconditioner . Which statement correctly describes the trade-off in choosing ?
5. An analyst applies CG to solve where is a SPD matrix with eigenvalues: 100 copies of , 100 copies of , 100 copies of , 100 copies of , 100 copies of . The condition number is . How many CG iterations are needed to reach machine precision?
6. LSQR solves iteratively without forming . Compared to solving the normal equations directly via Cholesky, what is the key numerical advantage of LSQR?
7. A quant calibrates a 3-factor short-rate model to 50 swap rates using Levenberg-Marquardt. After 20 LM iterations, the residual is and barely decreasing. The stopping tolerance was set to . What is the most likely cause and the correct remediation?
8. The Thomas algorithm solves a tridiagonal system in two passes. Under what condition is it numerically stable without pivoting?