Multiply the Matrices [[1/2,1/2],[1/4,-1/4]][[3],[-1]]
Problem
Solution
Identify the dimensions of the matrices to ensure multiplication is defined. The first matrix is
2×2 and the second is2×1 resulting in a2×1 matrix.Calculate the first entry of the resulting matrix by taking the dot product of the first row of the left matrix and the column of the right matrix.
Simplify the arithmetic for the first entry.
Calculate the second entry of the resulting matrix by taking the dot product of the second row of the left matrix and the column of the right matrix.
Simplify the arithmetic for the second entry.
Final Answer
Want more problems? Check here!