Multiply the Matrices [[20,45],[25,50],[20,10]]*[[15],[9]]
Problem
Solution
Identify the dimensions of the matrices to ensure multiplication is possible. The first matrix is
3×2 and the second is2×1 The resulting matrix will be3×1 Calculate the first element of the product by multiplying the first row of the left matrix by the column of the right matrix.
Calculate the second element by multiplying the second row of the left matrix by the column of the right matrix.
Calculate the third element by multiplying the third row of the left matrix by the column of the right matrix.
Assemble the results into the final
3×1 matrix.
Final Answer
Want more problems? Check here!