Content deleted Content added
Jitse Niesen (talk | contribs) →Application: do not assume that L is *unit* lower triangular |
|||
Line 94:
:<math>\mathbf{U} \mathbf{x} = \mathbf{b}</math>
is very easy to solve. The matrix equation ''Lx'' = ''b'' can be written as a system of linear equations
:<math>
\begin{matrix}
l_{1,1} x_1 & &
l_{2,1} x_1 & + & l_{2,2} x_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}
</math>
which can be solved by the following recursive relation
:<math> x_1 = \frac{b_1}{l_{1,1}}, </math>
:<math> x_2 = \frac{b_2 - l_{2,1} x_1}{l_{2,2}}, </math>
::<math> \vdots </math>
▲x_m & = & b_m - \sum_{i=1}^{m-1} l_{m,i}b_i
A matrix equation with
== See also ==
|