Jump to content

Triangular matrix

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by MathMartin (talk | contribs) at 15:35, 29 June 2004 (changed 'Row echolon form' into 'Gaussian elimination'.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.


In linear algebra, a triangular matrix is a special kind of matrix where the entries below or above the main diagonal are zero.


Definition

A matrix L of the form

is called lower triangular matrix. If the diagonal entries in L are one

the matrix is called unit lower triangular matrix or normed lower triangular matrix.

Analogously a matrix U of the form

is called upper triangular matrix. If the diagonal entries in U are one

the matrix is called unit upper triangular matrix or normed upper triangular matrix.


Notes

The identity matrix is a normed upper and lower triangular matrix.

The product of two upper triangular matrices is upper triangular, so the set of upper triangular matrices forms an algebra. Algebras of upper triangular matrices have a natural generalisation in functional analysis which yields nest algebras.

The variable L is commonly used for lower triangular matrix, standing for lower/left, while the variable U or R is commonly used for upper triangular matrix, standing for upper/right. The variable R has the added benefit of being the same initial for the German term for 'right.'

Generally, operations can be performed on triangular matrices within half the time.


Examples

is upper triangular and

is lower triangular.


Application

A matrix equation in the form

or

is very easy to solve. The matrix equation Lx= b can be written as a system of linear equations

which can be solved by the following rekursive relation

A matrix equation with a normed upper triangular matrix R can be solved in an analogous way.

Because triangular matrices are easy to calculate they are very important in numerical analysis.The LU decomposition gives an algorithm to decompose any invertible matrix A into a normed upper triangle matrix L and a normed lower triangle matrix R.


See also