So, Let $f(x) = \frac{1} {1 + x^2}$, $f'(x) = Af(x-2h) + Bf(x-h) + Cf(x) + Df(x+h) + Ef(x+2h)$, Use central difference scheme to approximate $f'(1)$ to show the order of convergence and the de-stabilization of the numerical methods of $h$.
So using central difference formula i've gotten this far, but im stuck as what to do next:
$f(x) = \frac{\frac{1}{1+(1+h)^2} - \frac{1}{1+(x-h)^2}}{2h}$
$f'(x) = \frac{\frac{2(x+h)}{((x+h)^2+1)^2} - \frac{2(x-h)}{((x-h)^2+1)^2}}{2h}$
do i plug in 1 for x? What do i have to do or use with the other equation? My notes on the matter just show scientific notation.
::::EDIT::::
I decided to take another approach, i expanded the taylor series and multiplied by $\frac{1}{1+x^2}$. So i get something link this: $ \frac{f(x)}{2h+2hx^2} + \frac{f'(x)}{2h+2hx^2} + \frac{f''(x)}{4h+4hx^2} + \frac{f'''(x)h^2}{6h + 6hx^2} - \frac{f'(x)}{2h+2hx^2} + \frac{f''(x)}{4h+4hx^2}-\frac{f'''(x)h^2}{6h + 6hx^2} $ Then we remove like terms and simplify: $ \frac{f'(x)}{h + hx^2} + \frac{f'''(x)h^2}{3h + 4hx^2} + \frac{f''''(x)h^4}{5h + 5hx^2} $ somehow $\frac{f'''(x)h^2}{3h + 3hx^2}$ is chosen to be $\frac{f(c)h^2}{3h+3hx^2}$ and is rewritten as $theta(h^2)$ and this makes it the central difference a scheme of order two.
