diff options
Diffstat (limited to 'notes')
-rw-r--r-- | notes/29-Nov.org | 20 | ||||
-rw-r--r-- | notes/4-Dec.org | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/notes/29-Nov.org b/notes/29-Nov.org new file mode 100644 index 0000000..a478ebf --- /dev/null +++ b/notes/29-Nov.org @@ -0,0 +1,20 @@ +Jacobi Iteration (cont.) + +x^{k+1} = D^{-1}(b - (L + U)x^k) + +{ + x^{k+1} = x^k + D^-1 r^k + r^{k} = b - Ax^k +} + +error: || x^{k+1} - x^k ||_2 +residual: || r^k ||_2 + +Gauss-Seidel Iteration: +A = (L + D + U) +\Rightarrow Ax = b + (D + U)x = b - Lx + x = (D + U)^-1 (b - Lx) + +x^{k+1} = (D+U)^{-1}(b - Lx^k) +(D + U)^{-1} x (bsubst) diff --git a/notes/4-Dec.org b/notes/4-Dec.org new file mode 100644 index 0000000..d148bc8 --- /dev/null +++ b/notes/4-Dec.org @@ -0,0 +1,2 @@ + + |