Content deleted Content added
MathMartin (talk | contribs) |
MathMartin (talk | contribs) changed pmatrix into bmatrix to make it consistent with other wikipedia articles |
||
Line 5:
A matrix
:<math> \mathbf{L}=
\begin{
l_{1,1} & & & & 0 \\
l_{2,1} & l_{2,2} & & & \\
Line 11:
\vdots & \vdots & \ddots & \ddots & \\
l_{n,1} & l_{n,2} & \ldots & l_{n,n-1} & l_{n,n}
\end{
</math>
is called '''lower triangular matrix''' or '''left triangular matrix''', and analogously a matrix of the form
:<math> \mathbf{U} =
\begin{
u_{1,1} & u_{1,2} & u_{1,3} & \ldots & u_{1,n} \\
& u_{2,2} & u_{2,3} & \ldots & u_{2,n} \\
Line 22:
& & & \ddots & u_{n-1,n}\\
0 & & & & u_{n,n}
\end{
</math>
Line 31:
The matrix
:<math> \mathbf{L}_n =
\begin{
1 & & & & & 0 \\
& \ddots & & & & \\
Line 38:
& & \vdots & & \ddots & \\
0 & & l_{n,n} & & & 1 \\
\end{
</math>
is called '''atomic lower triangular''' matrix, with
:<math> \mathbf{U}_n =
\begin{
1 & & & l_{1,n} & & 0 \\
& \ddots & & \vdots & & \\
Line 49:
& & & & \ddots & \\
0 & & & & & 1 \\
\end{
</math>
being called '''atomic upper triangular''' matrix.
Line 67:
== Examples ==
:<math>
\begin{ 1 & 4 & 2 \\
0 & 3 & 4 \\
0 & 0 & 1 \\
\end{
</math> is upper triangular and
:<math>
\begin{ 1 & 0 & 0 \\
2 & 8 & 0 \\
4 & 9 & 7 \\
\end{
</math> is lower triangular.
|