Simplify the Matrix
Problem
Solution
Multiply the two matrices together by calculating the dot product of each row from the first matrix with each column from the second matrix.
Calculate the element in the first row, first column:
(1)*(1)+(1)*(−1)+(1)*(0)=0 Calculate the remaining elements of the product matrix:
Combine these results into the intermediate product matrix:
Distribute the scalar
3 to every element inside the resulting matrix.
Final Answer
Want more problems? Check here!