The fixed point method $g(x)= x - \frac{f(x)}{2f ^\prime (x)}$ (can also be written as $x_{k+1} = x_k - \frac{f(x_k)}{2f ^\prime (x_k)}$) is similar to Newton's method except for the 1/2 coefficient. My question is how do I show the order of convergence for this method using Taylor series?
EDIT
I believe the goal is to get it into the form $|x_{k+1} - a| = C|x_{k} - a|^n$ and that $n$ is the order of convergence.
I tried getting it into the form $g(y) = g(x) + g^\prime(x)(y-x) + \frac{g ^{\prime\prime}(x)}{2!}(y-x)^2 + ...$
Since $g^\prime (x) = \frac{1}{2} + \frac{1}{2} \cdot \frac{f ^{\prime \prime} (x) f(x)}{[f^\prime (x)]^2}$
Substituting in I get $g(x_k) = g(a) + \frac{1}{2}(x_k -a) + \frac{g^{\prime \prime}(a)}{2}(x_k-a) $
But I'm not sure what to do from here