Section 7.4 Exercises

  1. Determine F, , and 1 for each of the following matrices:

    1. [1001]

    2. [1422]

    3. [12121212]

    4. [051231122]

    5. [505410321]

  2. Let

    A=[2002]andx=[x1x2]

    and set

    f(x1,x2)=Ax2/x2

    Determine the value of A2 by finding the maximum value of f for all (x1,x2)(0,0).

  3. Let

    A=[1000]

    Use the method of Exercise 2 to determine the value of A2

  4. Let

    D=[3000050000200004]
    1. Compute the singular value decomposition of D.

    2. Find the value of D2.

  5. Show that if D is an n×n diagonal matrix, then

    D2=max1in(|dii|)
  6. If D is an n×n diagonal matrix, how do the values of D1, D2, and D compare? Explain your answers.

  7. Let I denote the n×n identity matrix. Determine the values of I1, I, and IF.

  8. Let M denote a matrix norm on n×n, V denote a vector norm on n, and I be the n×n identity matrix. Show that

    1. if M and V are compatible, then IM1.

    2. if M is subordinate to V, then IM=1.

  9. A vector x in n can also be viewed as an n×1 matrix X:

    x=X=[x1x2xn]
    1. How do the matrix norm X and the vector norm x compare? Explain.

    2. How do the matrix norm X1 and the vector norm x1 compare? Explain.

  10. A vector y in n can also be viewed as an n×1 matrix Y=(y). Show that

    1. Y2=y2

    2. YT2=y2

  11. Let A=wyT, where wm and yn. Show that

    1. Ax2x2y2w2 for all x0 in n.

    2. A2=y2w2

  12. Let

    A=[312127414]
    1. Determine A.

    2. Find a vector x whose coordinates are each ±1 such that Ax=A. (Note that x=1, so A=Ax/x.)

  13. Theorem 7.4.2 states that

    A=max1im(Σj=1n|aij|)

    Prove this in two steps.

    1. Show first that

      Amax1im(Σj=1n|aij|)
    2. Construct a vector x whose coordinates are each ±1 such that

      Axx=Ax=max1im(Σj=1n|aij|)
  14. Show that AF=ATF.

  15. Let A be a symmetric n×n matrix. Show that A=A1.

  16. Let A be a 5×4 matrix with singular values σ1=5, σ2=3, and σ3=σ4=1. Determine the values of A2 and AF.

  17. Let A be an m×n matrix.

    1. Show that A2AF.

    2. Under what circumstances will A2=AF?

  18. Let denote a family of vector norms and let M be a subordinate matrix norm. Show that

    AM=maxx=1Ax
  19. Let A be an m×n matrix and let V and W be vector norms on n and m, respectively. Show that

    A(v, w)=maxx0Axwxv

    defines a matrix norm on m×n.

  20. Let A be an m×n matrix. The (1,2)-norm of A is given by

    A(1,2)=maxx0Ax2x1

    (See Exercise 19.) Show that

    A(1,2)=max(a12,a22,. . . ,an2)
  21. Let A be an m×n matrix. Show that A(1,2)A2.

  22. Let Am×n and Bn×r. Show that

    1. Ax2A(1,2)x1 for all x in n.

    2. AB(1,2)A2B(1,2)

    3. AB(1,2)A(1,2)B1

  23. Let A be an n×n matrix and let M be a matrix norm that is compatible with some vector norm on n. Show that if λ is an eigenvalue of A, then |λ|AM.

  24. Use the result from Exercise 23 to show that if λ is an eigenvalue of a stochastic matrix, then |λ|1.

  25. Sudoku is a popular puzzle involving matrices. In this puzzle, one is given some of the entries of a 9×9 matrix A and asked to fill in the missing entries. The matrix A has a block structure

    A=[A11A12A13A21A22A23A31A32A33]

    where each submatrix Aij is 3×3. The rules of the puzzle are that each row, each column, and each of the submatrices of A must be made up of all of the integers 1 through 9. We will refer to such a matrix as a sudoku matrix. Show that if A is a sudoku matrix, then λ=45 is its dominant eigenvalue.

  26. Let Aij be a submatrix of a sudoku matrix A (see Exercise 25). Show that if λ is an eigenvalue of Aij, then |λ|22.

  27. Let A be an n×n matrix and xn. Prove:

    1. Axn1/2A2x

    2. Ax2n1/2Ax2

    3. n1/2A2An1/2A2

  28. Let A be a symmetric n×n matrix with eigenvalues λ1,. . .,λn and orthonormal eigenvectors u1,. . . ,un. Let xn and let ci=uiTx for i=1,2,. . . , n. Show that

    1. Ax22=Σi=1n(λici)2

    2. if x0, then

      min1in|λi|Ax2x2max1in|λi|
    3. A2=max1in|λi|

  29. Let

    A=[110.991]

    Find A1 and cond(A).

  30. Solve the given two systems and compare the solutions. Are the coefficient matrices well conditioned? Ill conditioned? Explain.

    1.0x1+2.0x2=1.12 1.000x1+2.011x2=1.1202.0x1+3.9x2=2.16 2.000x1+3.982x2=2.160
  31. Let

    A=[101223112]

    Calculate cond(A)=AA1.

  32. Let A be a nonsingular n×n matrix, and let M denote a matrix norm that is compatible with some vector norm on n. Show that

    condM(A)1
  33. Let

    An=[11111n]

    for each positive integer n. Calculate

    1. An1

    2. cond(An)

    3. limn cond(An)

  34. If A is a 5×3 matrix with A2=8, cond2(A)=2, and AF=12, determine the singular values of A.

  35. Given

    A=[3211]andb=[52]

    if two-digit decimal floating-point arithmetic is used to solve the system Ax=b, the computed solution will be x=(1.1,0.88)T.

    1. Determine the residual vector r and the value of the relative residual r/b.

    2. Find the value of cond(A).

    3. Without computing the exact solution, use the results from parts (a) and (b) to obtain bounds for the relative error in the computed solution.

    4. Compute the exact solution x and determine the actual relative error. Compare this to the bounds derived in part (c).

  36. Let

    A=[0.500.750.250.500.250.251.000.500.50]

    Calculate cond1(A)=A1A11.

  37. Let A be the matrix in Exercise 36 and let

    A=[0.50.80.30.50.30.31.00.50.5]

    Let x and x′ be the solutions of Ax=b and Ax=b, respectively, for some b3. Find a bound for the relative error (xx1)/x1.

  38. Let

    A=[1111011100110001],b=[5.001.021.041.10]

    An approximate solution of Ax=b is calculated by rounding the entries of b to the nearest integer and then solving the rounded system with integer arithmetic. The calculated solution is x=(12,4,2,1)T. Let r denote the residual vector.

    1. Determine the values of r and cond(A).

    2. Use your answer to part (a) to find an upper bound for the relative error in the solution.

    3. Compute the exact solution x and determine the relative error xxx.

  39. Let A and B be nonsingular n×n matrices. Show that

    cond(AB)cond(A)cond(B)
  40. Let D be a nonsingular n×n diagonal matrix and let

    dmax=max1in|dii|anddmin=min1in|dii|
    1. Show that

      cond1(D)=cond(D)=dmaxdmin
    2. Show that

      cond2(D)=dmaxdmin
  41. Let Q be an n×n orthogonal matrix. Show that

    1. Q2=1

    2. cond2(Q)=1

    3. for any bn, the relative error in the solution of Qx=b is equal to the relative residual, that is,

      e2x2=r2b2
  42. Let A be an n×n matrix and let Q and V be n×n orthogonal matrices. Show that

    1. QA2=A2

    2. AV2=A2

    3. QAV2=A2

  43. Let A be an m×n matrix and let σ1 be the largest singular value of A. Show that if x and y are nonzero vectors in n, then each of the following holds:

    1. |xTAy|x2y2σ1

      [Hint: Make use of the Cauchy–Schwarz inequality.]

    2. maxx0,y0|xTAy|xy=σ1

  44. Let A be an m×n matrix with singular value decomposition UΣVT. Show that

    minx0Ax2x2=σn
  45. Let A be an m×n matrix with singular value decomposition UΣVT. Show that, for any vector x    n,

    σnx2Ax2σ1x2
  46. Let A be a nonsingular n×n matrix and let Q be an n×n orthogonal matrix. Show that

    1. cond2(QA)=cond2(AQ)=cond2(A)

    2. if B=QTAQ, then cond2(B)=cond2(A).

  47. Let A be a symmetric nonsingular n×n matrix with eigenvalues λ1,. . . ,λn. Show that

    cond2(A)=max1in|λi|min1in|λi|
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.16.15.149