MATH 661.FA21 Midterm Examination 1

Solve the problems for your appropriate course track. Problems probe understanding of the definitions and results from the module on floating point arithmetic and linear algebra. Formulate your answers clearly, cogently, and include a concise description of your approach. Each question is meant to be completely answered within five minutes. Allowed test time is 75 minutes.

1Common problems

  1. Matrix 𝑨m×n has the singular value decomposition (SVD) 𝑨=𝑼𝚺𝑽T. Find the SVDs of:

    1. (𝑨T𝑨)-1 ;

    2. (𝑨T𝑨)-1𝑨T ;

    3. 𝑨(𝑨T𝑨)-1 ;

    4. 𝑨(𝑨T𝑨)-1𝑨T .

2Track 1

  1. Write pseudo-code to accurately evaluate the sum

    S2n=k=12n(-1)k+1kxk

    in floating point arithmetic when x=1+ε, 1ε>0. (limnS2n=ln(1+x)).

  2. Determine the operation count for the above algorithm.

3Track 2

  1. Let 𝑨m×n. Show that the Moore-Penrose pseudoinverse 𝑿=𝑨+ minimizes ||𝑨𝑿-𝑰||F over all n by m matrices.

  2. Let 𝑨m×m be skew-Hermitian, i.e., 𝑨=-𝑨. Prove that:

    1. 𝑰-𝑨 is nonsingular;

    2. 𝑪=(𝑰-𝑨)-1(𝑰+𝑨) is unitary.