Multiply the Matrices [[1,1,1]]*[[1,-1,1],[-1,2,-1],[0,1,-1]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
1×3 row vector and the second is a3×3 square matrix. The resulting matrix will be a1×3 row vector.Calculate the first element of the result by multiplying the row by the first column of the second matrix.
Calculate the second element of the result by multiplying the row by the second column of the second matrix.
Calculate the third element of the result by multiplying the row by the third column of the second matrix.
Combine the calculated elements into the final row vector.
Final Answer
Want more problems? Check here!