The question I am trying to answer is stated as follows:
The iteration
$x_{n+1} = 2 - (1+c)x_n + cx_n^3$
will converge to $\alpha = 1$ for some values of $c$ (provided that $x_0$ is sufficiently close to $\alpha$). Find the values of $c$ for which this is true. For what values of $c$ will the convergence be quadratic?
In approaching this problem, I have assumed that it is some variant of Newton's method. A large part of this assumption comes from the fact that we are both using $x$ rather than $y$, and that convergence is assumed so long as our initial guess is "sufficiently close". At first, I tried exploring with other basic iterative methods that aren't root finding (such as Euler's method) with the consideration that perhaps $c$ represented some step size. Attempts at that had failed.
If I can show that this is some variant of Newton's method, I think that quadratic convergence would come automatically. However, that makes me think that that wouldn't be the case. If it was, why would they ask? In that case, it could be some other method with super-linear convergence, but gains quadratic convergence with stricter values of $c$. The last thing here that throws me off is, expanding the parenthesis, I get a leading term of $-x_n$. I'm not sure how to approach this either.
I appreciate any help or suggestions!