Multiply the Matrices
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
3×1 column vector and the second is a1×3 row vector. The resulting product will be a3×3 matrix.Apply the matrix multiplication rule where the element at row
i and columnj is the product of thei th element of the first matrix and thej th element of the second matrix.Calculate the elements for the first row:
Calculate the elements for the second row:
Calculate the elements for the third row:
Assemble the resulting
3×3 matrix using the calculated values.
Final Answer
Want more problems? Check here!