Multiply the Matrices [[3],[4]]*[[-8],[6]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
2×1 column vector and the second matrix is a1×2 row vector.Determine the size of the resulting matrix. Since we are multiplying a
2×1 by a1×2 the result will be a2×2 matrix.Apply the matrix multiplication rule where the element in row
i and columnj is the product of thei th row of the first matrix and thej th column of the second matrix.Calculate the first row elements:
3×−8=−24 and3×6=18 Calculate the second row elements:
4×−8=−32 and4×6=24
Final Answer
Want more problems? Check here!