Consider the non-linear equation $x^3 = 3375$. The real solution is given by $x^* = 15$. The iteration sequence $\{x^{(k)}\}$ has the convergence order $p$, if
$$\lim_{k \rightarrow \infty} {||x^{(k+1)} - x^*||_2 \over ||x^{(k)} - x^*||_2^p} = C$$
for $C \ge 0$. Determine the parameters $p$ and $C$ numerical by using $x^{(0)} = 1$ and $k_{max} = 16$. To do so, assume that
$$\log||x^{(k+1)} - x^*||_2 \approx \log(C||x^{(k)} - x^*||_2^p)$$
and solve the problem of least squares.
The only thing I know about the problem / method of least squares is that it has something to do with minimizing $1/2||Ax - b||_2^2$, and that is done by finding an $x \in \Bbb R^n$ such that $A^*Ax = A^*b$.
But I don't see how to apply this here. Could anybody explain to me what I have to do actually?
Thanks in advance!