A has rows (1, 2) and (3, 4), and B has rows (5, 6) and (7, 8). What is the top left entry of AB?
Answer: ______________
With A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]], what is the bottom right entry of AB?
Answer: ______________
With A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]], what is the top left entry of AB?
Answer: ______________
A is 2 by 3 and B is 3 by 4. What shape is the product AB?
A is a 2 by 2 matrix and v holds 2 entries. How is the product Av best read?
A has rows (1, 2) and (3, 4), and B has rows (5, 6) and (7, 8). What is the bottom right entry of AB?
Answer: ______________
A is a 2 by 2 matrix and v is a vector with 2 entries. How is the product Av best read?
A is a 3 by 2 matrix. Which product with A on the left is defined?
A has rows (1, 2) and (3, 4), and B has rows (5, 6) and (7, 8). What is the top left entry of BA?
A has columns (2, 0) and (0, 2), and v holds entries 3 then 4. What is the top entry of Av?
Answer: ______________