Inverse of an upper triangular matrix with one of its principal diagonal
elements 2,-5,0
Answers
Answered by
1
A standard algorithm to invert a matrix is to find its LU decomposition (decomposition into a lower-triangular and an upper-triangular matrix), use back subsitution on the triangular pieces, and then combine the results to obtain the inverse of the original matrix.
Similar questions