Next: About this document
Up: No Title
Previous: Triangular Systems
It is the most commonly used algorithm for solving linear systems, based
on
decomposition of a matrix and solving the triangular system.
The most general form of Gaussian elimination is:
- Factorize
into
, where
= permutation matrix (an identity matrix with some permutation applied
to the rows)
= unit lower triangular (all the diagonal entries are equal to one)
= non-singular upper trianglar (assuming
is non-singular)
This corresponds to solving
.
-
(permuted entries of
).
-
(forward substitution)
-
(back substitution)
Dinesh Manocha
Thu Jan 29 05:51:29 EST 1998