Multiply the Matrices [[8,-1],[-7/2,1/2]][[1],[-5]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
2×2 matrix and the second is a2×1 column vector. The resulting matrix will be a2×1 column vector.Calculate the first entry of the resulting matrix by taking the dot product of the first row of the first matrix and the column vector.
Calculate the second entry of the resulting matrix by taking the dot product of the second row of the first matrix and the column vector.
Combine the results into a single column vector.
Final Answer
Want more problems? Check here!