Exam (elaborations) TEST BANK FOR Linear Algebra and Optimization for Machine Learning By Charu C. Aggarwal (Solution Manual)
1 Linear Algebra and Optimization: An Introduction 1 2 Linear Transformations and Linear Systems 17 3 Diagonalizable Matrices and Eigenvectors 35 4 Optimization Basics: A Machine Learning View 47 5 Optimization Challenges and Advanced Solutions 57 6 Lagrangian Relaxation and Duality 63 7 Singular Value Decomposition 71 8 Matrix Factorization 81 9 The Linear Algebra of Similarity 89 10 The Linear Algebra of Graphs 95 11 Optimization in Computational Graphs 101 vii Chapter 1 Linear Algebra and Optimization: An Introduction 1. For any two vectors x and y, which are each of length a, show that (i) x − y is orthogonal to x + y, and (ii) the dot product of x − 3y and x + 3y is negative. (i) The first is simply x·x−y·y using the distributive property of matrix multiplication. The dot product of a vector with itself is its squared length. Since both vectors are of the same length, it follows that the result is 0. (ii) In the second case, one can use a similar argument to show that the result is a2 − 9a2, which is negative. 2. Consider a situation in which you have three matrices A, B, and C, of sizes 10 × 2, 2 × 10, and 10 × 10, respectively. (a) Suppose you had to compute the matrix product ABC. From an efficiency perspective, would it computationally make more sense to compute (AB)C or would it make more sense to compute A(BC)? (b) If you had to compute the matrix product CAB, would it make more sense to compute (CA)B or C(AB)? The main point is to keep the size of the intermediate matrix as small as possible in order to reduce both computational and space requirements. In the case of ABC, it makes sense to compute BC first. In the case of CAB it makes sense to compute CA first. This type of associativity property is used frequently in machine learning in order to reduce computational requirements. 3. Show that if a matrix A satisfies A = −AT , then all the diagonal elements of the matrix are 0. Note that A+AT = 0. However, this matrix also contains twice the diagonal elements of A on its diagonal. Therefore, the diagonal elements of A must be 0. 4. Show that if we have a matrix satisfying A = −AT , then for any column vector x, we have xTAx = 0. Note that the transpose of the scalar xTAx remains unchanged. Therefore, we have xTAx = (xTAx)T = xTAT x = −xTAx. Therefore, we have 2xTAx = 0. 1 5. Show that if we have a matrix A, which can be written as A = DDT for some matrix D, then we have xTAx ≥ 0 for any column vector x. The scalar xTAx can be shown to be equal to ||DT x||2. 6. Show that the matrix product AB remains unchanged if we scale the ith column of A and the ith row of B by respective factors that are inverses of each other. The idea is to express the matrix multiplication as the sum of outer-products of columns of A and rows of B. AB = k AkBk Here, Ak is the kth column of A and Bk is the kth row of B. Note that the expression on the right does not change if we multiply Ai by α and divide Bi by α. Each component of the sum remains unchanged including the ith component, where the scaling factors cancel each other out. 7. Show that any matrix product AB can be expressed in the form AΔB, where A is a matrix in which the sum of the squares of the entries in each column is 1, B is a matrix in which the sum of the squares of the entries in each row is 1, and Δ is an appropriately chosen diagonal matrix with nonnegative entries on the diagonal. After expressing the matrix product as the sum of outer-products, we can scale each vector in the outer-product to unit-norm, while pulling out a scalar multiple for the outer-product component. The matrices A and B contain these normalized vectors, whereas Δ contains these scalar multiples. In other words, consider the case, where we have the product in the following form using the kth column Ai of A and the kth row Bi of B: AB = k AkBk One can express this matrix product in the following form: AB = k AkBk δkk Ak Ak Bk Bk We create a diagonal matrix Δ in which the kth diagonal entry is δkk and then create A and B as the normalized versions of A and B, respectively. 8. Discuss how a permutation matrix can be converted to the identity matrix using at most d elementary row operations of a single type. Use this fact to express A as the product of at most d elementary matrix operators. Only row interchange operations are required to convert it to the identity matrix. In particular, in the ith iteration, we interchange the ith row of A with whatever row contains the ith row of the identity matrix. A permutation matrix will always contain such a row. This matrix can be represented as the product of at most d elementary row interchange operators by treating each interchange operation as a matrix multiplication. 9. Suppose that you reorder all the columns of an invertible matrix A using some random permutation, and you know A−1 for the original matrix. Show how you can (simply) 2 compute the inverse of the reordered matrix from A−1 without having to invert the new matrix from scratch. Provide an argument in terms of elementary matrices. All the rows of A−1 are interchanged using exactly the same permutation as the columns of A are permuted. This is because if P is the permutation matrix that creates AP, then PTA−1 is the inverse of AP. However, PT performs exactly the same reordering on the rows of A as P performs on the columns of A. 10. Suppose that you have approximately factorized an n×d matrix D as D ≈ UV T, where U is an n × k matrix and V is a d × k matrix. Show how you can derive an infinite number of alternative factorizations UV T of D, which satisfy UV T = UV T . Let P be any invertible matrix of size k×k. Then, we set U = UP, and V = V (P−1)T . It can be easily shown that UV T = UV T . 11. Either prove each of the following statements or provide a counterexample: (a) The order in which you apply two elementary row operations to a matrix does not affect the final result. (b) The order in which you apply an elementary row operation and an elementary column operation does not affect the final result. It is best to think of these problems in terms of elementary matrix operations. (a) If you start with the matrix A, then the two successive row operations corresponding to matrices E1 and E2 create the matrix E2E1A. Note that matrix multiplication is not commutative and this is not the same as E1E2A. For example, rotation matrices do not commute with scaling matrices. Scaling the first row by 2 followed by interchanging the first and second rows creates a different result than the one obtained by reversing these operations. (b) In this case, if the row and column operators are Er and Ec, the final result is ErAEc. Because of the associativity of matrix multiplication, (ErA)Ec and Er(AEc) are the same. The result follows that the order does not matter. 12. Discuss why some power of a permutation matrix is always the identity matrix. There are a finite number of permutations of a sequence. Therefore, after some number k of repeated permutations by P, the sequence will be repeated. In other words we have Pk = I. 13. Consider the matrix polynomial t i=0 aiAi. A straightforward evaluation of this polynomial will require O(t2) matrix multiplications. Discuss how you can reduce the number of multiplications to O(t) by rearranging the polynomial. The matrix polynomial can be written as a0I + A( t i=1 aiAi−1). This can be further expanded as follows: a0I + A( t i=1 aiAi−1) = a0I + A(a1I + A( t i=2 aiAi−2)) = a0I + A(a1I + A(a2I + A( t i=3 aiAi−2))) Using this type of expansion recursively, one can obtain the desired result. 3 14. Let A = [aij ] be a 2 × 2 matrix with a12 = 1, and 0s in all other entries. Show that A1/2 does not exist even after allowing complex-valued entries. Suppose that such a matrix exists. If the entries of the 2×2 matrix A1/2 listed row-wise are a, b, c, and d, then we obtain the following system of equations: a2 + bc = 0 cb + d2 = 0 ab + bd = 1 ca + dc = 0 Using the first two equations, we obtain a2 − d2 = 0, which means either a = −d or a = d. Note that a = −d is not possible because the third equation would be violated. Using a = d, we can eliminate d to obtain the following system: a2 + bc = 0 2ab = 1 ac = 0 Since ab is nonzero and ac is zero, it means that a cannot be zero, and c is zero. However, if c is zero, then the first equation implies that a is zero is well. Therefore, we reach a contradiction. 15. Parallelogram law: The parallelogram law sates that the sum of the squares of the sides of a parallelogram is equal to the sum of the squares of its diagonals. Write this law as a vector identity in terms of vectors A and B. Now use vector algebra to show why this vector identity must hold. The identity is as follows: 2||A||2 + 2||B||2 = ||A − B||2 + ||A + B||2 One can expand the right-hand side by using dot products, and then apply the distributive property to show that it is equal to the left-hand side. ||A − B||2 + ||A + B||2 = A · A − 2A · B + B · B + A · A + 2A · B + B · B After canceling out the terms involving A · B and consolidating others, we get the desired result. 16. Write the first four terms of the Taylor expansion of the following univariate functions about x = a: (i) log(x); (ii) sin(x); (iii) 1/x; (iv) exp(x). (i) log(a) + (x − a)/a − (x − a)2/(2a2) + (x − a)3/(3a3) (ii) sin(a) + (x − a)cos(a) − (x−a)2 2 sin(a) − (x−a)3 6 cos(a) (iii) 1 a − (x−a) a2 + (x−a)2 a3 − (x−a)3 a4 (iv) exp(a) + (x − a)exp(a) + (x−a)2 2 exp(a) + (x−a)3 6 exp(a) 17. Use the multivariate Taylor expansion to provide a quadratic approximation of sin(x+ y) in the vicinity of [x, y] = [0, 0]. Confirm that this approximation loses its accuracy with increasing distance from the origin. 4 The Taylor
Geschreven voor
- Instelling
- Chamberlian School Of Nursing
- Vak
- TEST BANK FOR Linear Algebra and Optimization for Machine Learning By Charu C. Aggarwal -Converted
Documentinformatie
- Geüpload op
- 15 november 2021
- Aantal pagina's
- 114
- Geschreven in
- 2021/2022
- Type
- Tentamen (uitwerkingen)
- Bevat
- Onbekend
Onderwerpen
-
exam elaborations
-
test bank for linear algebra and optimization for machine learning by charu c aggarwal solution manual