ich bräuchte mal kurz Hilfe bei folgender Aufgabe
Aufgabe:
Gegeben Stützpunkte (0,3), (1,4), (2,1)
Wende Newton-Verfahren an, um eindeutig bestimmes Interpolationspolynom in R[x]2, welches zwischen den gegeben Stützpunkten interpoliert.
Beweise dass es mindestens ein weiteres Polynom gibt, dass die Stützpunkte interpoliert.
Problem/Ansatz:
(x0, y0) = (0,3) (x1, y1) = (1,4) (x2, y2) = (2,1)
y0 = c0
y1 = c0 + c1 (x1 - x0)
y2 = c0 + c1 (x2 - x0) + c2 (x2 - x0) (x2 - x1)
P (x) = c0 + c1 (x - x0) + c2 (x - x0) (x - x1)
3 = y0 = P (x0) = c0
=> c0 = 3
4 = y1 = P (x1) = c0 + c1 (x1 - x0)
4 = 3 + c1 (1 - 0)
4 = 3 + c1
1 = c1
=> c1 = 1
1 = y2 = P (x2) = c0 + c1 (x2 - x0) + c2 (x2 - x0) (x2 - x1)
1 = 3 + 1 * (2 - 0) + c2 (2 - 0) (2 - 1)
1 = 3 + 2 + 2c2
1 = 5 + 2c2
-4 = 2c2
-2 = c2
=> c2 = -2
P(x) = 3 + 1 * (x - 0) - 2 (x - 0) (x - 1)
= 3 + x - 2 x (x - 1)
= 3 + x - 2x² + 2x
= - 2x² + 3x +3
Somit wäre das Interpolationspolynom -2 x² + 3x +3 .
Wie zeige ich jetzt, dass es mindestens noch ein weiteres gibt, welches die Stützpunkte interpoliert?