Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Newton polynomial
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==Main idea== Solving an interpolation problem leads to a problem in linear algebra where we have to solve a system of linear equations. Using a standard [[monomial basis]] for our interpolation polynomial we get the very complicated [[Vandermonde matrix]]. By choosing another basis, the Newton basis, we get a system of linear equations with a much simpler [[lower triangular matrix]] which can be solved faster. For ''k'' + 1 data points we construct the Newton basis as :<math>n_0(x) := 1 , \qquad n_j(x) := \prod_{i=0}^{j-1} (x - x_i) \qquad j=1,\ldots,k.</math> Using these polynomials as a basis for <math>\Pi_k</math> we have to solve :<math>\begin{bmatrix} 1 & & \ldots & & 0 \\ 1 & x_1-x_0 & & & \\ 1 & x_2-x_0 & (x_2-x_0)(x_2-x_1) & & \vdots \\ \vdots & \vdots & & \ddots & \\ 1 & x_k-x_0 & \ldots & \ldots & \prod_{j=0}^{k-1}(x_k - x_j) \end{bmatrix} \begin{bmatrix} a_0 \\ \\ \vdots \\ \\ a_{k} \end{bmatrix} = \begin{bmatrix} y_0 \\ \\ \vdots \\ \\ y_{k} \end{bmatrix}</math> to solve the polynomial interpolation problem. This system of equations can be solved iteratively by solving :<math> \sum_{i=0}^{j} a_{i} n_{i}(x_j) = y_j \qquad j = 0,\dots,k.</math>
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)