Multiply the Matrices [[30,55],[30,50],[20,15]]*[[25],[6]]
Problem
Solution
Identify the dimensions of the matrices to ensure they can be multiplied. The first matrix is
3×2 and the second is2×1 so the resulting matrix will be3×1 Calculate the first element of the product by multiplying the first row of the first matrix by the column of the second matrix.
Calculate the second element by multiplying the second row of the first matrix by the column of the second matrix.
Calculate the third element by multiplying the third row of the first matrix by the column of the second matrix.
Assemble the results into the final
3×1 matrix.
Final Answer
Want more problems? Check here!