Find the Inverse of the Resulting Matrix [[4],[5],[7]]*[[4],[6],[2]]
Problem
Solution
Multiply the given matrices to find the resulting matrix
A Since we are multiplying a3×1 matrix by a1×3 matrix, the result is a3×3 matrix.
Determine the rank of the resulting matrix. Notice that each row is a scalar multiple of the vector
[[4,6,2]] Specifically, the second row is1.25 times the first row, and the third row is1.75 times the first row.
Calculate the determinant of the matrix. Because the rows are linearly dependent (the rows are multiples of each other), the matrix is singular.
Conclude that the inverse does not exist. A matrix is invertible if and only if its determinant is non-zero. Since the determinant is zero, the matrix is non-invertible (singular).
Final Answer
Want more problems? Check here!