Lecture 5 - Interpolation Flashcards

1
Q

Interpolation

A

Estimation of the values of a quantity between the individual data points

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

NAMES

A

f(x)- original function
F(x) - interpolating function
(xi,yi) - input pairs, f(xi)=yi
xi-node

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Polynomial interpolation

A

Given a set of n+1 data points where no to xi are the same, we can finde UNIQUE n-degree polynomial which goes through all n+1 points

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Calculating coefficients of polynomial intepolation

A

We can write a set of equations of n-degree polynomial for each node.
Create a matrices from this Ma=y and calculate a= y*inv(M)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Vandermonde matrix

A

Matrix M which shows up while calculating coefficients. Its a matrix that consists n powers of every yi starting from the n power end ending with ones (zero powers)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Polynomial interpolation Drawbacks

A

M is composed with very large and very small numbers. It makes this method prone to round-off errors.
Also this method has poor conditioning - functions start to looks similar as n increases

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Lagrange interpolation

A

The obtained function F(x) is the same as with polynomials but this method is stable and easy to implement. We don’t have to solve a system of linear equations -> less prone to round-off errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Lagrange interpolation equation

A

PHOTO

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Runge’s phenomenon

A

Problem of oscillations on the edges which occurs when using polynomial interpolation with polynomials of high degree over a set of interpolation point with equivalent spaces between them

How well did you know this?
1
Not at all
2
3
4
5
Perfectly