Multiply the Matrices [[0.9,0.3],[0.1,0.7]]*[[21000],[18000]]
Problem
Solution
Identify the dimensions of the matrices to ensure multiplication is possible. The first matrix is
2×2 and the second is2×1 resulting in a2×1 matrix.Calculate the first element of the resulting matrix by multiplying the first row of the first matrix by the column of the second matrix.
Calculate the second element of the resulting matrix by multiplying the second row of the first matrix by the column of the second matrix.
Combine the results into the final column matrix.
Final Answer
Want more problems? Check here!