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. Multiplying a
2×1 matrix by a1×2 matrix results in a2×2 matrix.Calculate the entry at row 1, column 1 by multiplying the first element of the first matrix by the first element of the second matrix.
Calculate the entry at row 1, column 2 by multiplying the first element of the first matrix by the second element of the second matrix.
Calculate the entry at row 2, column 1 by multiplying the second element of the first matrix by the first element of the second matrix.
Calculate the entry at row 2, column 2 by multiplying the second element of the first matrix by the second element of the second matrix.
Assemble the results into the final
2×2 matrix.
Final Answer
Want more problems? Check here!