Simplify the Matrix [[1,0,1],[1,2,2],[0,3,3]][[0],[0],[0]]
Problem
Solution
Identify the dimensions of the matrices. The first matrix is a
3×3 matrix and the second is a3×1 column vector.Apply the rule for matrix-vector multiplication, where each element of the resulting
3×1 vector is the dot product of a row from the first matrix and the column vector.Calculate the first entry:
Calculate the second entry:
Calculate the third entry:
Conclude that multiplying any matrix by a zero vector of compatible dimensions results in a zero vector.
Final Answer
Want more problems? Check here!