Lower Triangular Matrix by Row Operation
A system of Linear equations AX=b is to transformed into lower triangular matrix by elementary row operation in order to find a solution vector for the unknown vector X. The lower triangulation, which is a intermediate step for solving linear equations, is explained how to finds it from the system of linear equations by row operation . Lower triangular matrix - the matrix contains all elements above the main diagonal elements are zeros. system of Linear equations Matrix representation of system of Linear equations Low Triangular matrix algorithm steps Given matrix A, b and A is 3x3 and b is 3x1 matrix Augmented Matrix mat = A | b maxpivot - finds m th row has maximum value (pivotal value) along c th column RowOperation-swap - swaping two rows c th and m th RowOperation-add - Rc2 th <- ratio R c + R c2 For c=mat.Nrow-1 to ...