Find the inverse of the matrix #[[6,-2,-3],[-1,8,-7],[4,-4,6]]#?
2 Answers
The inverse is
Explanation:
The matrix is
We calculate the inverse of the matrix as follows
Explanation:
Given:
#((6, -2, -3),(-1,8,-7),(4,-4,6))#
The nice thing about the augmented matrix approach is that it works for matrices of any size, but in the case of
Consider the matrix formed by replacing each entry by the determinant of the
#((abs((8,-7),(-4,6)), abs((-7,-1),(6,4)), abs((-1,8),(4,-4))),(abs((-4, 6),(-2,-3)), abs((6,4),(-3,6)), abs((4,-4),(6,-2))),(abs((-2,-3),(8,-7)), abs((-3,6),(-7,-1)), abs((6,-2),(-1,8))))#
#=((48-28, -28+6, 4-32),(12+12,36+12,-8+24),(14+24,3+42,48-2))#
#=((20,-22,-28),(24,48,16),(38,45,46))#
Transpose this matrix to get:
#((20,24,38),(-22,48,45),(-28,16,46))#
Multiplying by the original we find:
#((6, -2, -3),(-1,8,-7),(4,-4,6))((20,24,38),(-22,48,45),(-28,16,46)) = ((248,0,0),(0,248,0),(0,0,248))#
So:
#((6, -2, -3),(-1,8,-7),(4,-4,6))^(-1) = 1/248((20,24,38),(-22,48,45),(-28,16,46))#