Assignment 3• All regular assignments are due in the class on the specified date.• For assignment(s) involving coding,– Must be done with Matlab. Each must include a summary report.–
– Name your code(s) as follows: Add Progx and your last name (or first 4 letters if too long) to the beginning of each file name. E.g., if the 3rd problem is a programming assignment, then my file names will be something like: P rog3 Chen main.m, P rog3 Chen newtion.m.
– Email your codes with instructions to the grader before 11:30PM of the due date If not specified otherwise, all the problems are from the textbook.1. Read Chapter 4, 52. Determine the following is true or false, and justify your answer(a)
If Ax = λx and A is nonsingular, then 1 is an eigenvalue of A−1(b) If A is nonsingular, then for any induced norm, “A−1” = “A”−13. Which of the following matrices are necessarily orthogonal? Justify your answer(a) Permutation matrices, which are obtained by permuting rows or columns of the identity matrix, so that in each row and each column we still have exactly one value equal to 1;(b) Symmetric positive definite matrices;(c) Nonsingular matrices;(d)
Diagonal matrices.4. (a) Under what condition, the matrix c s is orthogonal?−s c(b) Given rotation of the form. c sΣ .α1Σ = .αΣ .
−s c α2 0
That is, given a vector we rotate it (while preserving its length) so that one of its component is zeroed out. Express α in terms of α1, α2, and find the values of c, s.
5. Show that the eigenvalues of an orthogonal matrix are equal to 1 in modulus, and find the eigenvalues of a projector P . (A projector is a square matrix that satisfies: P 2 = P )
6. Page 134: #1
7. Let A, T be two nonsingular n × n real matrices, and
T A = L U
where L is unit lower triangular, and U is upper triangular. Write an algorithm that will solve
A x = b
in O(n2) complexity.
8. Page 138: #17