The function that has been approximated with a Taylor Series is:
$$f(x) = \frac{log(x) - x + 1}{(x-1)^2} $$
It resulted in: $$f(x) = \sum_{n=2}^{\infty} \frac{(-1)^{k-1}}{k} (x-1)^{k-2}$$
I know truncation error is:
$E = f(x) - T_n (x)$
From this, I want to construct an expression that bounds the truncation error, assuming n > 2, for a given value of x.
How does one do this with a Taylor series approximation? Do you use Taylor remainders?