Multiply the Matrices [[2,0,3],[1,1,1]]*[[2],[-1],[1]]
Problem
Solution
Identify the dimensions of the matrices to ensure multiplication is possible. The first matrix is
2×3 and the second is3×1 Since the number of columns in the first equals the number of rows in the second, the result will be a2×1 matrix.Calculate the first element of the resulting matrix by taking the dot product of the first row of the first matrix and the column of the second matrix.
Calculate the second element of the resulting matrix by taking the dot product of the second row of the first matrix and the column of the second matrix.
Combine the results into the final
2×1 matrix.
Final Answer
Want more problems? Check here!