Find the least number of terms to approximate $\sin(1.1)$ so that the error is less than $0.001$.
I know the interval of error (I think it's also known as error bounds) is [1, 1.1] and
$$R=\frac{\max(f^{n+1}(x)) * (x-a)^{n+1}}{(n+1)!}.$$
How do I use this to solve the problem?
Edit
Sorry, in the original post, I did not fully complete the question as I forgot to add "so that the error is less than 0.001."
I talked with my teacher, and as we're not allowed to use a calculator, we approximate the maximum value for sine to be 1, since it would be the highest value. As such, $f^{n+1}(x) = 1$. We are also given $R < 0.001$. According to our interval of error, [1, 1.1], $a = 1$ and $x = 1.1$.
Finally, $$\frac{1 * (1.1-1)^{n+1}}{(n+1)!} > 0.001.$$
We solve for $n$ by plugging in small values, such as 0, 1, 2, and so on. The smallest value to fit the equation is $n=2$, so the answer is 2 terms.
Now, I understand how we get the answer, but I am still lost on why $f^{n+1}(x) = 1$. My teacher explained that this was because it was a trigonometric function, and as we can't use a calculator, we need to choose between 0 and 1, but I still don't understand it.
Can someone clarify what she meant? Why use 0 and 1, and why did we choose 1 for $f^{n+1}(x) = 1$? Also, are there alternate methods to solve this problem?