Numerical Methods Flashcards
Triangle inequalities
|x + y| <= |x| + |y|
|x - y| >= | |x| - |y| |
Taylor series expansion
Jacobian matrix
Matrix inverse (2D)
Decomposition method for a matrix A
let A = LU
=> LUx = b
where Ux = y
Then solve Ly = b, Ux = y
L - lower triangular matrix
U - upper triangular matrix
Properties of a vector norm
A normed vector space over a field F
, is a vector field V
equipped with a map, the norm, ||-||: V -> F
satisfying:
* for all x
in V
, ||x|| >= 0
, and ||x|| = 0
if and only if x = 0
is in V
* for all a
in F
, x
in V
, ||a x|| = |a| ||x||
* for all x,y
in V
, ||x + y|| <= ||x|| + ||y||
(triangle inequality)
Properties of a matrix norm
Provides a measure of the size of a square (nxn) matrix. The norm, ||-||
satisfies:
* for all nxn A
, ||A|| >= 0
, and ||A|| = 0
if and only if A = 0
* for all scalar a
, nxn A
, ||a A|| = |a| ||A||
* for all nxn A, B
, ||A + B|| <= ||A|| + ||B||
(triangle inequality 1)
* for all nxn A, B
, ||A . B|| <= ||A|| . ||B||
(triangle inequality 2)
Matrix and Vector norm compatibility result
A matrix norm ||-||q
is compatible with a vector norm ||-||p
if:
* ||A
x||p <= ||A||q . ||
x||p
* for all n
-vectors x, nxn
matricies A
||-||1,n,inf
for vectors x,y
||-||1,inf
for matrix A
Jacobi’s method iteration scheme
A = I - (A_L + A_U)
Newton’s method iteration scheme
Gauss-Seidel method iteration scheme
Secant method iteration scheme
Newton’s method from Taylor series iteration scheme