Multiply the Matrices [[1,1],[1,2],[1,-1]][[27/7],[-9/7]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
3×2 matrix and the second is a2×1 matrix. The resulting matrix will be a3×1 matrix.Calculate the first row entry by multiplying the first row of the left matrix by the column of the right matrix.
Calculate the second row entry by multiplying the second row of the left matrix by the column of the right matrix.
Calculate the third row entry by multiplying the third row of the left matrix by the column of the right matrix.
Assemble the resulting values into a single column matrix.
Final Answer
Want more problems? Check here!