I have a problem to approximate $\sqrt{1.06}$ using a third degree Taylor polynomial. The way I learned was to pick a center that we would know the answer to that is close to the value we're trying to find. So, I chose the center to be 1.
Next I took the derivatives to find the coefficients. This could be where I made my mistake, because I'm not sure what function to use when a function is not given, but I chose my function to be $f(x)=\sqrt{1+x}$. I found the derivatives to get the coefficients as follows:
$f'(x)=\dfrac{1}{2\sqrt{1+x}}$ so $f'(1)=\dfrac{1}{2\sqrt2}$
$f''(x)=-\dfrac{1}{4\cdot(x+1)^{3/2}}$ so $f''(1)=-\dfrac{1}{4\cdot(2)^{3/2}}$
$f''(x)=\dfrac{3}{8\cdot(x+1)^{5/2}}$ so $f''(1)=\dfrac{3}{8\cdot(2)^{5/2}}$
Then I wrote the 3rd degree taylor polynomial as:
$p_3(x)=\sqrt2+\dfrac{(x-1)}{2\sqrt2}-\dfrac{(x-1)^2}{8(2)^{3/2}}+\dfrac{3(x-1)^3}{40(2)^{5/2}}$
So then I plugged in .06 for $x$ and got $1.031811$.
The actual approximated value from my calculator is $1.029563$ so somewhere I did something wrong. Yes, $1.031811$ is close to $1.029563$, but my book says the calculated value should have been $1.029564$, so there is a very small difference between the expected calculated estimate and the actual estimate (much smaller than the result I got).
I suspect it's either with the function I used or the value for $x$, but I'm not sure what to do instead of what I did. Can anyone help?
Given that $f(x) = \sqrt{1+x}$, we know that $\sqrt{1.06} = f(0.06)$. Since $0.06$ is close to $x_0 = 0$, this suggests that we center our approximation at $0$. [Alternatively, you could have defined $g(x) = \sqrt{x}$, in which case $\sqrt{1.06} = g(1.06)$, so you could center it at $x_0 = 1$]. Hence, we obtain: \begin{align*} f(x) &\approx p_3(x) \\ &= f(0) + f'(0)(x - 0) + \frac{f''(0)}{2!}(x-0)^2 + \frac{f'''(0)}{3!}(x-0)^3 \\ &= \sqrt{1+0} + \frac{1}{2\sqrt{1+0}}x + \frac{\frac{-1}{4(0+1)^{3/2}}}{2}x^2 + \frac{\frac{3}{8(0+1)^{5/2}}}{6}x^3 \\ &= 1 + \frac{1}{2}x - \frac{1}{8}x^2 + \frac{1}{16}x^3 \\ \end{align*} Thus, substituting $x = 0.06$ yields: \begin{align*} \sqrt{1.06} &= f(0.06) \\ &\approx p_3(0.06) \\ &= 1 + \frac{1}{2}(0.06) - \frac{1}{8}(0.06)^2 + \frac{1}{16}(0.06)^3 \\ &= 1.0295635 \end{align*}