We can approximate $a^\frac{1}{n}$ by fixed-iteration method. This method says, instead of finding a function $f$ such that $f(a^\frac{1}{n})=0$, find another function $g$ such that $g(a^\frac{1}{n})=a^\frac{1}{n}$.
If the domain of this $g$ is a subset of its range, and $|g(x)|<1$, for all $x$ in the domain of $g$, then we can be sure that no matter what $x_0$ we choose, the sequence made by fixed-point iteration will definitely converge to $a^\frac{1}{n}$.
The definition of convergence of order $p$ to $\alpha$ is that $\operatorname{lim}_{n\to\infty}\frac{|x_{n+1}-\alpha|}{|x_n-\alpha|^p}=\lambda$ such that $\lambda$ and $p$ are two positive constants.
The question asks for a $g$ such that $g(a^\frac{1}{n})=a^\frac{1}{n}$ and the order of the convergence should be $2$.
Note: $a$ is a positive number. ($a\gt 0$)
My problem is not finding a $g$ such that $g(a^\frac{1}{n})=a^\frac{1}{n}$, but holding the condition that the order of convergence should be $2$ is a bit of mystery to me. Also, I want a method which works for any value of $x_0$.
Any idea?
Two of many possibilities are:
Use the Newton method on any variation of $f(x)=x^n-a$.
Find any contractive method, usually of the form $x_+=x-q(x)f(x)$, and apply the Aitken delta-squared process on it.