I have been sitting with this exercise for quite some time now, and I cannot understand how to solve it. The exercise is:
Use the second order Taylor Polynomial of $f(x)= x^{1/3}$ about x = 8 to approximate $9^{1/3}$. Also, estimate the error. Lastly, write the smallest interval you can be sure contains the exact value $9^{1/3}$.
I have already calculated the Taylor Polynomial $P_2(x) = 2 + \frac{x-8}{12} + \frac{(x-8)^2}{288}$ and also the estimated value $P_2(9) = 599/288$. However, what really trips me over is:
- How do I estimate the error?
My thought process is that I need to give the interval of possible errors by maximizing and minimizing the absolute value of the Lagrange Remainder, and then use these values as bounds for the interval. But this did not work.
- How do I calculate the smallest interval that is sure to contain $9^{1/3}$?
Here, I thought I could use the minimum value from the error bounds as a left bound for where the exact value could be, and do the analog for the right bound, to yield $estimate + minError < exactAnswer < estimate + maxError$ However this was incorrect as well.
I would appreciate a thorough answer that explains at least one of these points.
Thank you :)