Multiply the Matrices [[17,21,9]][[1,4,-3],[2,-1,2],[2,3,-4]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
1×3 row vector and the second is a3×3 square matrix. The resulting matrix will be a1×3 row vector.Calculate the first element of the product by multiplying the row by the first column of the second matrix.
Calculate the second element of the product by multiplying the row by the second column of the second matrix.
Calculate the third element of the product by multiplying the row by the third column of the second matrix.
Combine the results into a new
1×3 matrix.
Final Answer
Want more problems? Check here!