numerical analysis Flashcards
Prove ∃pn ∈ Πn such that pn(xi) = fi
for i = 0, 1, . . . , n.
- Write down L_n,k
- L_n,k(xi) = δ_i,k
- p_n(x) = sum from k=0 to n[f_k * L_n,k(x)]
Prove that the interpolating polynomial of degree <=n is unique
- Suppose p_n, q_n are both interpolating polynomials
- Let d_n = p_n - q_n
- So d has at most degree n
- Then d_n(x_i) = 0 for i = 0,…,n
- So d has at least n+1 roots
- So d = 0, i.e. p_n = q_n
What is the error function for an interpolating polynomial?
e(x) = f(x) - p_n(x)
What is the Lagrange interpolating polynomial and when is it used?
What is the Hermite interpolating polynomial and when is it used?
What is the error theorem for a Hermite interpolating polynomial?
What is the error theorem for a Lagrange interpolating polynomial?
What is a lower triangular matrix?
What is an upper triangular matrix?
How do lower triangular matrices help to solve linear systems and what is the procedure called?
How do upper triangular matrices help to solve linear systems and what is the procedure called?
How do we reduce Ax=b to Ux=c, where U is upper triangular?
Gauss elimination
What is a multiplier in Gaussian elimination?
aij/ajj, what we multiply the row we are adding/subtracting by to get 0
What is a pivot in Gaussian elimination?
ajj
How do we obtain a LU factorisation of a matrix?
- Perform Gaussian Elimination
- The matrices we multiply by to perform the row operations are lower triangular, and products of lower triangular matrices remain lower triangular.
- The matrix we end up with after GE is upper triangular