From b8c662456f2caf219de2a21f137f8fd61e34b0b2 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Wed, 6 Dec 2023 14:15:18 -0700 Subject: fix typos --- notes/29-Nov.org | 20 ++++++++++++++++++++ notes/4-Dec.org | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 notes/29-Nov.org create mode 100644 notes/4-Dec.org (limited to 'notes') 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 @@ + + -- cgit v1.2.3-70-g09d2