While on the Internet I came across a formula for cube root using recursion. The formula was:
$$ use \space x_1 = \frac{a}{3} \space (a \space is \space the \space number \space we \space want \space to \space find \space cube \space root \space of)$$
Then use the formula:
$$ x_{n+1} = \frac 13 \left( 2x_n + \frac{a}{{x_n}^2} \right)$$
Recursively.
What is this method and how does it work. Is their someway I can prove it ?