Please write your name and NetID on a sheet of paper and answer the following questions (will not be graded):

  1. Why are you taking the class?

  2. What is the Taylor series for 1/(1+x)?

  3. What is r2/x for r2=x2+y2?

  4. What is the solution to this linear system?

    [1203][xy]=[33]
  5. Which matrix is positive definite?

    A=[1111],B=[1221],C=[2112]
  6. What is the complexity (using order notation) of the following?

     for i = 1:n
       for j = i:n
         v(i) = v(i) + A(i,j)*x(j)
    
  7. Express in words what the previous code does