Multiply the Matrices [[8,9,0],[-1,-2,3]]*[[4],[5],[6]]
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 matches the number of rows in the second, the resulting matrix will be2×1 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.
Construct the final
2×1 matrix using the calculated values.
Final Answer
Want more problems? Check here!