Multiply the Matrices [[12],[10]]*[[7,14]]
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 the inner dimensions match (
1 = 1),t*h*e*p*r*o*d(u)*c*t*e*x*i*s(t)*s(a)*n*d(w)*i*l*l*b*e*a \times 2$ matrix.Calculate the element at row 1, column 1 by multiplying the first element of the first matrix by the first element of the second matrix.
Calculate the element at row 1, column 2 by multiplying the first element of the first matrix by the second element of the second matrix.
Calculate the element at row 2, column 1 by multiplying the second element of the first matrix by the first element of the second matrix.
Calculate the element 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!