Find $n$ in Taylor series such that the approximation of the function $f(x)=\frac{\sin(\pi x)}{x}$ at the point $x=\pi$ is accurate to $6$ points after the radix.
So I first tried to use the formula $$\frac{f^{(n+1)}(c)x^{(n+1)}}{(n+1)!}$$ for some $c\in(0,\pi)$
but taking more and more derivatives of $\frac{\sin(\pi x)}{x}$ results in a huge expression.
So I used the known expansion \begin{align}\sin x&=\sum_{n=0}^{\infty}\frac{(-1)^n}{(2n+1)!}x^{2n+1}\\ \sin(\pi x)&=\sum_{n=0}^{\infty}\frac{(-1)^n}{(2n+1)!}(\pi x)^{2n+1}\\ \frac{\sin(\pi x)}{x}&=\sum_{n=0}^{\infty}\frac{(-1)^n}{(2n+1)!}(\pi x)^{2n} \end{align}
But then how can I bound the error?