quiz
play

Quiz Define the vectors a 1 and a 2 as follows: a 1 = # $ % # $ - PowerPoint PPT Presentation

Quiz Define the vectors a 1 and a 2 as follows: a 1 = # $ % # $ % 1 and a 2 = 2 1 1 4 3 Let A be the matrix whose column-dict representation is { 0 @ 0 : a 1 , 0 & 0 : a 2 } . Compute A times @ & the vector 2 4 Let B be


  1. Quiz Define the vectors a 1 and a 2 as follows: a 1 = # $ % # $ % − 1 and a 2 = 2 1 − 1 4 3 Let A be the matrix whose column-dict representation is { 0 @ 0 : a 1 , 0 & 0 : a 2 } . Compute A times @ & the vector 2 4 Let B be the matrix whose row-dict representation is { 0 @ 0 : a 1 , 0 & 0 : a 2 } . Compute B times the # $ % vector 3 . − 1 0

  2. Matrices as vectors Soon we study true matrix operations. But first.... A matrix can be interpreted as a vector: I an R × S matrix is a function from R × S to F , I so it can be interpreted as an R × S -vector: I scalar-vector multiplication I vector addition I Our full implementation of Mat class will include these operations.

  3. Transpose Transpose swaps rows and columns. a b @ # ? ------ --------- @ | 2 20 a | 2 1 3 # | 1 10 b | 20 10 30 ? | 3 30

  4. Transpose (and Quiz) Quiz: Write transpose(M) Answer: def transpose(M): return Mat((M.D[1], M.D[0]), {(q,p):v for (p,q),v in M.f.items()})

  5. Computing sparse matrix-vector product To compute matrix-vector or vector-matrix product, I could use dot-product or linear-combinations definition. I However, using those definitions, it’s not easy to exploit sparsity in the matrix. “Ordinary” Definition of Matrix-Vector Multiplication: If M is an R × C matrix and u is a C -vector then M ∗ u is the R -vector v such that, for each r ∈ R , X v [ r ] = M [ r , c ] u [ c ] c 2 C

  6. Computing sparse matrix-vector product “Ordinary” Definition of Matrix-Vector Multiplication: If M is an R × C matrix and u is a C -vector then M ∗ u is the R -vector v such that, for each r ∈ R , X v [ r ] = M [ r , c ] u [ c ] c 2 C Obvious method: 1 for i in R : 2 v [ i ] := P j 2 C M [ i , j ] u [ j ] But this doesn’t exploit sparsity! Idea: I Initialize output vector v to zero vector. I Iterate over nonzero entries of M , adding terms according to ordinary definition. 1 initialize v to zero vector 2 for each pair ( i , j ) in sparse representation, 3 v [ i ] = v [ i ] + M [ i , j ] u [ j ]

  7. Linear systems using matrices Recall: A linear system is a system of linear equations We have many questions about linear systems: a 1 · x = β 1 I How to find a solution? . . I How many solutions? . a m · x = I Does a solution even exist? β m I When does only one solution exist? Key idea: Write linear system as a I What to do if there are no solutions? matrix-vector equation. : I For which right-hand sides β 1 , . . . , β m does 2 a 1 3 a solution exist? . . 5 x = b ((((( [ β 1 , . . . , β m ][ β 1 , . . . , β m ] ( 6 7 . Matrices will help us answer these questions 4 a m and use linear systems in other applications. First advantage of a matrix: Can interpret a row matrix as a column matrix: 2 3 Interpret this matrix-vector equation as: 4 v 1 5 x = b v n · · · With what coe ffi cients can b be written as a linear combination of v 1 , . . . , v n ?

  8. Linear systems using matrices First advantage of a matrix: Can interpret a row matrix as a column matrix: 2 3 Interpret this matrix-vector equation as: 4 v 1 5 x = b v n With what coe ffi cients can b be written as a · · · linear combination of v 1 , . . . , v n ? A solution to a Lights Out configuration is a linear combination of “button vectors.” For example, the linear combination • • • • • • • = 0 + 1 + 0 + 1 • • • • • • • can be written as 2 3 • • • • • • • 6 7 = [0 , 1 , 0 , 1] ∗ 6 7 • • • • • • • 4 5 Solving an instance of Lights Out Solving a matrix-vector equation ⇒ 2 3

  9. Linear systems using matrices A solution to a Lights Out configuration is a linear combination of “button vectors.” For example, the linear combination • • • • • • • = 0 + 1 + 0 + 1 • • • • • • • can be written as 2 3 • • • • • • • 6 7 = [0 , 1 , 0 , 1] ∗ 6 7 • • • • • • • 4 5 Solving an instance of Lights Out Solving a matrix-vector equation ⇒ 2 3 • • • • • • • 6 7 = [ α 1 , α 2 , α 3 , α 4 ] ∗ 6 7 • • • • • • • 4 5

  10. The solver module We provide a module solver that defines a procedure solve(A, b) that tries to find a solution to the matrix-vector equation A ∗ x = b Currently solve(A, b) is a black box but we will learn how to code it in the coming weeks. Let’s use it to solve this Lights Out instance...

  11. The two fundamental spaces associated with a matrix Want to study linear systems, equivalently matrix-vector equations A x = b For which right-hand side vectors b does A x = b have a solution? → F R defined by f ( x ) = A x An R × C matrix A corresponds to the function f : F C − The system A x = b has a solution if and only if there is some vector v such that A v = b . Thus the system has a solution if and only if there is some vector v in F C such that f ( v ) = b . Thus the system has a solution if and only if b is in the image of the function f . (Remember that the image of a function is the set of all possible outputs.) Question: How can we characterize the image of the function f ( x ) = A x ? Answer: Use the linear-combinations interpretation. For any input x , the output is the linear combination of the columns of A where coe ffi cients are the entries of x . The set of all outputs is thus the set of all linear combinations of the columns of A . Also known as the span of the columns of A We call this the column space of A . Written Col A . We know it is a vector space.

  12. The two fundamental spaces associated with a matrix Recall: We are interested in solution set of corresponding homogeneous linear system 2 3 5 x = 0 A 4 We know this is a vector space. In context of matrices, we call it the null space of the matrix A . Written Null A Summary: The two most important spaces associated with a matrix A are I Col A I Null A

  13. Solution set of a matrix-vector equation Proposition: If u 1 is a solution to A ∗ x = b then solution set is u 1 + V where V = Null A I If V is a trivial vector space then u 1 is the only solution. I If V is not trivial then u 1 is not the only solution. Corollary: A ∗ x = b has at most one solution i ff Null A is a trivial vector space. Question: How can we tell if the null space of a matrix is trivial? Answer comes later...

  14. Matrix-matrix multiplication If I A is a R × S matrix, and I B is a S × T matrix then it is legal to multiply A times B . I In Mathese, written AB I In our Mat class, written A*B AB is di ff erent from BA . In fact, one product might be legal while the other is illegal.

  15. Matrix-matrix multiplication: matrix-vector definition Matrix-vector definition of matrix-matrix multiplication: For each column-label s of B , column s of AB = A ∗ (column s of B )  � 1 2 Let A = and B = matrix with columns [4 , 3], [2 , 1], and [0 , − 1] − 1 1  4 2 0 � B = 3 1 − 1 AB is the matrix with column i = A ∗ ( column i of B ) A ∗ [4 , 3] = [10 , − 1] A ∗ [2 , 1] = [4 , − 1] A ∗ [0 , − 1] = [ − 2 , − 1]  10 � 4 − 2 AB = − 1 − 1 − 1

  16. Matrix-matrix multiplication: Dot-product definition Combine I matrix-vector definition of matrix-matrix multiplication, and I dot-product definition of matrix-vector multiplication to get... Dot-product definition of matrix-matrix multiplication: Entry rc of AB is the dot-product of row r of A with column c of B . Example: 2 3 2 3 2 3 2 3 1 0 2 2 1 [1 , 0 , 2] · [2 , 5 , 1] [1 , 0 , 2] · [1 , 0 , 3] 4 7 5 = 5 = 3 1 0 5 0 [3 , 1 , 0] · [2 , 5 , 1] [3 , 1 , 0] · [1 , 0 , 3] 11 3 4 5 4 4 4 5 2 0 1 1 3 [2 , 0 , 1] · [2 , 5 , 1] [2 , 0 , 1] · [1 , 0 , 3] 5 5

  17. Matrix-matrix multiplication: transpose ( AB ) T = B T A T Example:  1 �  5  7 � � 2 0 4 = 3 4 1 2 19 8  5 � T  1  5 �  1  7 � T � � 0 2 1 3 19 = = 1 2 3 4 0 2 2 4 4 8 You might think “( AB ) T = A T B T ” but this is false . In fact, doesn’t even make sense! I For AB to be legal, A ’s column labels = B ’s row labels. I For A T B T to be legal, A ’s row labels = B ’s column labels.  6  1 �  6 2 1 2 3 � � 7 3 5 8 Example: 3 4 is legal but is not. 4 5 8 9 2 4 6 7 9 5 6

  18. Matrix-matrix multiplication: Column vectors Multiplying a matrix A by a one-column matrix B 2 3 2 3 4 b A 4 5 5 By matrix-vector definition of matrix-matrix multiplication, result is matrix with one column: A ∗ b This shows that matrix-vector multiplication is subsumed by matrix-matrix multiplication. Convention: Interpret a vector b as a one-column matrix (“column vector”) 2 1 3 I Write vector [1 , 2 , 3] as 2 4 5 3 2 3 2 1 3 5 or A b I Write A ∗ [1 , 2 , 3] as A 2 4 5 4 3

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend