Devise a Newton iteration formula for computing $\sqrt[3]{R}$ where $R>0$. Perform a graphical analysis of your function $f(x)$ to determine the starting values for which the iteration will converge.
Answer: Let $R>0$ and set $x=\sqrt[3]{R}$. Then $x$ is a root of the equation $x^3-R=0$. If we use Newton's method on the function $f(x)=x^3-R$, the iteration formula can be written as $$x_{n+1}=x_n-\dfrac{f(x_n)}{f'(x_n)}=x_n-\dfrac{(x_n^3-R)}{3x_n^2}=\dfrac{1}{3}\left( 2x_n+\dfrac{R}{x_n^2}\right).$$
Next, we will perform a graphical analysis of $f(x)=x^3-R$ to determine the starting values for which the iteration will converge.
Can someone explain what a graphical analysis is? I don't just want the answer. I want to under the process for this analysis.
