Example 4.4.2.
Use the Newton Divided Difference table to produce the Hermite Polynomial that satisfies \(P(0)=0, P(2)=0, P'(0)=1\) and \(P'(2)=-1\text{.}\)
| \(z\) | \(f(z)\) | 1st D.D. | 2nd D.D. | 3rd D.D. |
| \(0\) | 0 | |||
| \(\boxed{1}\) | ||||
| \(0\) | \(0\) | \(-1/2\) | ||
| \(0\) | \(0\) | |||
| \(2\) | \(0\) | \(1/2\) | ||
| \(\boxed{-1}\) | ||||
| \(2\) | \(0\) |
where the two boxed values are the derivative values given in the problem.
And as we saw in Newton divided difference, we produce a polynomial based on the top diagonal elements of the table. The only difference is recall that since there are two \(z=0\) terms, there will be a \((z-0)^{2}\) term as well. The Hermite Polynomial will be:
\begin{equation*}
H(z) = 0 + 1 \cdot z - \frac{1}{2}z^{2} + 0 \cdot z^{2} (z-2)
\end{equation*}
or writing it back in terms of \(x\text{:}\)
\begin{equation*}
H(x) = x - \frac{1}{2}x^{2}
\end{equation*}
which is the same as seen above.
