Review Questions for Singular Value Decompositions


  1. For a matrix A with SVD decomposition A=UΣVT, what are the columns of U and how can we find them? What are the columns of V and how can we find them? What are the entries of Σ and how can we find them?
  2. What special properties are true of U, V and Σ?
  3. What are the shapes of U, V and Σ in the full SVD of an m×n matrix?
  4. What are the shapes of U, V and Σ in the reduced SVD of an m×n matrix?
  5. What is the cost of computing the SVD?
  6. Given an already computed SVD of a matrix A, what is the cost of using the SVD to solve a linear system Ax=b? How would you use the SVD to solve this system?
  7. How do you use the SVD to compute a low-rank approximation of a matrix? For a small matrix, you should be able to compute a given low rank approximation (i.e. rank-one, rank-two).
  8. Given the SVD of a matrix A, what is the SVD of A+ (the psuedoinverse of A)?
  9. Given the SVD of a matrix A, what is the 2-norm of the matrix? What is the 2-norm condition number of the matrix?