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