Lecture 10 Flashcards
What is an n x d matrix?
a table of numbers with n rows and d columns
How do we denote matrices?
using upper-case letters
How do we say write a matrix A that has two rows and three columns?
AER^2*3
What is another way to think of a matrix?
as several column vectors, stacked next to each other
When can we add two matrices?
only if they have the same dimensions
How does addition occur between two matrices?
elementwise
How does scalar multiplication occur?
elementwise
When can we multiply matrices A and B?
if and only if # of columns in A = # of rows in B
If A is n * d and B is d * p then what is AB?
n * p
What is the notation that shows multiplication is distributive in matrices?
A(B + C) = AB + AC
What is the notation that shows multiplication is associative in matrices?
(AB)C = A(BC)
What is the notation that shows the transpose of sum in matrices?
(A + B)^T = A^T + B^T
What is the notation that shows the transpose of product in matrices?
(AB)^T = B^TA^T
What is one way of thinking about the product Av?
it is the dot product of v with every row of A
What is another way of thinking about the product Av?
it is a linear combination of the columns of A, using the weights in v