Triangular matrix

From Wikipedia, the free encyclopedia

(Redirected from Upper-triangular matrix)
Jump to: navigation, search

In the mathematical discipline of linear algebra, a triangular matrix is a special kind of square matrix where the entries below or above the main diagonal are zero. Because matrix equations with triangular matrices are easier to solve they are very important in numerical analysis. The LU decomposition gives an algorithm to decompose any invertible matrix A into a normed lower triangle matrix L and an upper triangle matrix U.

Contents

A matrix of the form

 \mathbf{L}=
\begin{bmatrix}
l_{1,1} &         &        &           & 0  \\
l_{2,1} & l_{2,2} &        &           &    \\
l_{3,1} & l_{3,2} & \ddots &           &    \\
\vdots  & \vdots  & \ddots & \ddots    &    \\
l_{n,1} & l_{n,2} & \ldots & l_{n,n-1} & l_{n,n}
\end{bmatrix}

is called lower triangular matrix or left triangular matrix, and analogously a matrix of the form

 \mathbf{U} =
\begin{bmatrix}
u_{1,1} & u_{1,2} & u_{1,3} & \ldots & u_{1,n}  \\
        & u_{2,2} & u_{2,3} & \ldots & u_{2,n}  \\
        &         & \ddots  & \ddots & \vdots   \\
        &         &         & \ddots & u_{n-1,n}\\
  0     &         &         &        & u_{n,n}
\end{bmatrix}

is called upper triangular matrix or right triangular matrix.

The standard operations on triangular matrices conveniently preserve the triangular form: the sum and product of two upper triangular matrices is again upper triangular. The inverse of an upper triangular matrix is also upper triangular, and of course we can multiply an upper triangular matrix by a constant and it will still be upper triangular. This means that the upper triangular matrices form a subalgebra of the ring of square matrices for any given size. The analogous result holds for lower triangular matrices. Note, however, that the product of a lower triangular with an upper triangular matrix does not preserve triangularity.

A triangular matrix with zero entries on the main diagonal is strictly upper or lower triangular. All strictly triangular matrices are nilpotent.

If the entries on the main diagonal are 1, the matrix is termed unit upper/lower or normed upper/lower triangular. (However, a normed matrix is not the same as a normal matrix, and a unit matrix is not the same as the unit matrix.)

A Gauss matrix is a special form of a normed triangular matrix, where all of the off-diagonal entries are zero, except for the entries in one column. Such a matrix is also called atomic upper/lower triangular or Gauss (transformation) matrix. So an atomic lower triangular matrix is of the form

 \mathbf{L}_{i} =
\begin{bmatrix}
     1 &        &        &           &        &         &     & 0 \\
     0 & \ddots &        &           &        &         &     &   \\
     0 & \ddots &      1 &           &        &         &     &   \\
     0 & \ddots &      0 &         1 &        &         &     &   \\
       &        &      0 & l_{i+1,i} &      1 &         &     &   \\
\vdots &        &      0 & l_{i+2,i} &      0 &  \ddots &     &   \\
       &        & \vdots &    \vdots & \vdots &  \ddots &   1 &   \\
     0 &  \dots &      0 &   l_{n,i} &      0 &   \dots &   0 & 1 \\
\end{bmatrix}.

The inverse of an atomic triangular matrix is again atomic triangular. Indeed, we have

 \mathbf{L}_{i}^{-1} =
\begin{bmatrix}
     1 &        &        &            &        &         &     & 0 \\
     0 & \ddots &        &            &        &         &     &   \\
     0 & \ddots &      1 &            &        &         &     &   \\
     0 & \ddots &      0 &          1 &        &         &     &   \\
       &        &      0 & -l_{i+1,i} &      1 &         &     &   \\
\vdots &        &      0 & -l_{i+2,i} &      0 &  \ddots &     &   \\
       &        & \vdots &     \vdots & \vdots &  \ddots &   1 &   \\
     0 &  \dots &      0 &   -l_{n,i} &      0 &   \dots &   0 & 1 \\
\end{bmatrix},

i.e. the off-diagonal entries are replaced by their opposites.

A matrix which is simultaneously upper and lower triangular is diagonal. The identity matrix is the only matrix which is both normed upper and lower triangular.

A matrix which is simultaneously triangular and normal, is also diagonal. This can be seen by looking at the diagonal entries of A*A and AA*, where A is a normal, triangular matrix.

The transpose of an upper triangular matrix is a lower triangular matrix and vice versa. The determinant of a triangular matrix equals the product of the diagonal entries, and the eigenvalues of a triangular matrix are the diagonal entries.

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.

Generally, operations can be performed on triangular matrices within half of the time that is needed for the same operation on a general matrix.

Because the product of two upper triangular matrices is again upper triangular, the set of upper triangular matrices forms an algebra. Algebras of upper triangular matrices have a natural generalization in functional analysis which yields nest algebras on Hilbert spaces.

The set of invertible triangular matrices form a group, and is a subgroup of all invertible matrices. The set of 2 by 2 triangular matrices is called the parabolic subgroup; 3 by 3 and larger normed triangular matrices form the Heisenberg group. Both are examples of a Borel subgroup.

Upper triangular matrices stabilize the standard flag, so the abstract (without a basis) analog of upper triangular matrices are the stabilizer of a complete flag, or alternatively a Borel subgroup.

The abstract analog of block upper triangular matrices are the stabilizer of a partial flag, or alternatively a parabolic subgroup.

Lower triangular matrices stabilize the flag generated by e_n,\dots,e_1 (the standard basis in reverse order). More generally, in a basis adapted to a complete flag, lower triangular matrices are the stabilizer of the orthogonal flag (given by W_i = V_{n-i}^\perp).

The matrix


\begin{bmatrix}
1 & 4 & 2 \\
0 & 3 & 4 \\
0 & 0 & 1 \\
\end{bmatrix}

is upper triangular and


\begin{bmatrix}
1 & 0 & 0 \\
2 & 8 & 0 \\
4 & 9 & 7 \\
\end{bmatrix}

is lower triangular.

The matrix


\begin{bmatrix}
1 & 0 & 0 & 0 \\
0 & 1 & 0 & 0 \\
0 & 4 & 1 & 0 \\
0 & 2 & 0 & 1 \\
\end{bmatrix}

is atomic lower triangular. Its inverse is


\begin{bmatrix}
1 &  0 & 0 & 0 \\
0 &  1 & 0 & 0 \\
0 & -4 & 1 & 0 \\
0 & -2 & 0 & 1 \\
\end{bmatrix}.

A matrix equation in the form

\mathbf{L}\mathbf{x} = \mathbf{b}

or

\mathbf{U} \mathbf{x} = \mathbf{b}

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


\begin{matrix}
l_{1,1} x_1 &   &             &            &             & = &    b_1 \\
l_{2,1} x_1 & + & l_{2,2} x_2 &            &             & = &    b_2 \\
     \vdots &   &      \vdots &     \ddots &             &   & \vdots \\
l_{m,1} x_1 & + & l_{m,2} x_2 & + \ldots + & l_{m,m} x_m & = &   b_m  \\
\end{matrix}

which can be solved by the following recursive relation

 x_1 = \frac{b_1}{l_{1,1}},
 x_2 = \frac{b_2 - l_{2,1} x_1}{l_{2,2}},
 \vdots
 x_m = \frac{b_m - \sum_{i=1}^{m-1} l_{m,i}x_i}{l_{m,m}}.

A matrix equation with an upper triangular matrix U can be solved in an analogous way. This process is called back substitution.

Advanced Search
Included Web Search Engines


Safe Search

close

Top Matching Results

Occasionally Search.com will highlight specialized results that are based on the context of your query. Examples of specialized results include specific links to news, images, or video.

Top Matching Results may highlight information from other Search.com pages, content from the CNET Network of sites, or third party content. The listings are based purely on relevance. Search.com does not receive payment for listings in this section but our partners that provide this data may get paid for listing these products.

Sponsored Links

This section contains paid listings which have been purchased by companies that want to have their sites appear for specific search terms and related content. These listings are administered, sorted and maintained by a third party and are not endorsed by Search.com.

Search Results

Search.com sends your search query to several search engines at one time and integrates the results into one list which has been sorted by relevance using Search.com's proprietary algorithm. You can customize the list of search engines included in your metasearch from the preferences.

The search engines that are used in your metasearch may allow companies to pay to have their Web sites included within the results. To view the Paid Inclusion policy for a specific search engine, please visit their Web site. Search.com does not accept payment or share revenue with any search engine partner for listings in this section.