美文网首页
Lecture 04

Lecture 04

作者: 孙寅 | 来源:发表于2017-12-25 21:50 被阅读0次

01. Inverse of AB and A-transpose

02. A = LU (no row exchanges)

03. Operations of Eliminations

04. Permutation Matrix Family


01. Inverse of AB and A-transpose

AB_inverse.png
inverse_A_transpose.png

02. A = LU (no row exchanges)

a. A Simple Example
a_simple_example.png
b. Sequence of Elimination and A = LU
sequence.png
c. Why A = LU is preferable than elimination?
why_preferable.png

Because of the conduction effect of elimination, the final elimination matrix E includes an undesirable element in bottom left corner, which does not appear in previous elimination. While in A = LU, multipliers go to L directly(with no row exchanges), which is much simpler than elimination form.

03. Operations of Eliminations

operatin of A.png

Similar to A, the elimination of b can be represented by (N + (N-1) + ... + 1). The computation complexity is square of N.

04. Permutation Matrix Family

permutation.png

相关文章

网友评论

      本文标题:Lecture 04

      本文链接:https://www.haomeiwen.com/subject/hylrgxtx.html