Consider a variation of Newton's method in which only one derivative is needed; that is, $x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}$. Find $C$ and $s$ such that $e_{n+1} = C e^{s}_{n}$.
First of all, I thouhght the above iterative process was the usual variation of newtons method.
Please note my edit at the very bottom
So $e_n = x_n - r$ which means $e_{n+1} = x_n - \frac{f(x_n)}{ f'(x_n)} - r= e_n - \frac{f(x_n)}{ f'(x_n)}$. Eventually by applying Taylor's Theorem, I get $e_{n+1} = C e^{2}_{n}$.
So $s=2$, but how do I find $C$? Isn't it just a constant? I'm a little confused by this question. In more detail $e_{n+1} = \frac{1}{2} \frac{f''(z_n)}{f'(x_n)} e^{2}_{n}\approx \frac{1}{2}\frac{f''(r)}{f'(r)}e^{2}_{n}$. Maybe they just want me to say $C$ is the bit next to the $e^{2}_{n}$.
Can anyone confirm my answer?
It's supposed to be $x_{n+1} = x_n - \frac{f(x_n)}{f'(x_0)}$ unfortunately.