Multiply the Matrices [[2],[1]]*[[3],[2]]
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 matrix by a1×2 matrix, the result will be a2×2 matrix.Calculate each element
(c_i*j) by multiplying thei th row of the first matrix by thej th column of the second matrix.Compute the first row:
(c_11)=2⋅3=6 and(c_12)=2⋅2=4 Compute the second row:
(c_21)=1⋅3=3 and(c_22)=1⋅2=2
Final Answer
Want more problems? Check here!