aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2017-02-09 23:05:55 +0100
committerAdrian Kummerlaender2017-02-09 23:05:55 +0100
commite7087f26043192217e07a82f3855f68ac54b3e5a (patch)
tree5931e2cef69d04340918d1dcc93165bee438759c
parent3ac1b86ec6b6c58fc3affa18f075ec464c2c36bd (diff)
downloadmath_reference_sheets-e7087f26043192217e07a82f3855f68ac54b3e5a.tar
math_reference_sheets-e7087f26043192217e07a82f3855f68ac54b3e5a.tar.gz
math_reference_sheets-e7087f26043192217e07a82f3855f68ac54b3e5a.tar.bz2
math_reference_sheets-e7087f26043192217e07a82f3855f68ac54b3e5a.tar.lz
math_reference_sheets-e7087f26043192217e07a82f3855f68ac54b3e5a.tar.xz
math_reference_sheets-e7087f26043192217e07a82f3855f68ac54b3e5a.tar.zst
math_reference_sheets-e7087f26043192217e07a82f3855f68ac54b3e5a.zip
Add section on Cramer's rule, substitution
-rw-r--r--numerik_1.tex10
1 files changed, 10 insertions, 0 deletions
diff --git a/numerik_1.tex b/numerik_1.tex
index 2443776..dd7587f 100644
--- a/numerik_1.tex
+++ b/numerik_1.tex
@@ -102,6 +102,16 @@ Für $A \in \mathbb{K}^{n \times n} \in GL_n{\mathbb{R}}$, $\|\cdot\|$ induziert
\section*{Direkte Verfahren zur LGS Lösung}
+\subsection*{Cramersche Regel}
+
+Sei $A = (a_{i,j})_{ij} \in GL_n(\mathbb{R})$, $b \in \mathbb{R}^n$, $A[j] = (a_1, \cdots, a_{j-1}, b, a_{j+1}, \cdots, a_n) \in \mathbb{R}^{n \times n}$, $a_k$ k-ter Spaltenvektor von $A$. Dann bildet $x_j = \frac{det(A[j])}{det(A)}$ für $j = 1, \cdots, n$ die eindeutige Lösung $x \in \mathbb{R}^n$ s.d. $Ax=b$.
+
+Aufgrund des hohen Aufwands von allg. mehr als $(n+1)!$ arithmetischen Operationen ist die Cramersche Regel nur von theoretischer Bedeutung.
+
+\subsection*{Lösung gestaffelter Systeme}
+
+Obere Dreicksmatrizen können mittels Rückwärtssubstitution, untere Dreiecksmatrizen mittels Vorwärtssubstitution in $\mathcal{O}(n^2)$ gelöst werden.
+
\subsection*{LR-Zerlegung}
\subsection*{Cholesky-Zerlegung}