Please see the link description at the very bottom
Let's first derive a formula for calculating square roots manually without calculus (and later for more general cases of various roots).
Let's denote our numbers as follows
$\,\sqrt{S}=x_1+a\,$ where $\,x_1\,$ is the first approximate value by our choice and $\,a\,$ is a tolerance (an error of approximation). Therefore, after squaring we obtain
$\,S=x_1^2+2\,x_1a+a^2.\,\,$ We choose $\,x_1\,$ to be much greater than $\,a\,$ so that we can cast away $\,a^2\,$ for the approximation:
$$\,S\approx x_1^2+2\,x_1a\,,\quad a\approx\frac{S-x_1^2}{2\,x_1}$$
As we previously denoted $\,\sqrt{S}=x_1+a\,$:
$$\,\sqrt{S}=x_1+a\approx x_1+\frac{S-x_1^2}{2\,x_1}=\frac{2\,x_1^2+S-x_1}{2\,x_1}=\frac{x_1^2+S}{2\,x_1}\,$$
We use the same technique for each step ($a$ gets smaller and smaller), and at the step $\,n+1\,$ we get a more general expression for our formula:
$$\sqrt{S}\approx x_{n+1}=\frac{x_n^2+S}{2\,x_n}\quad or \quad \sqrt{S}\approx\frac{1}{2}\bigg(x_n+\frac{S}{x_n}\bigg)$$
Now let's derive such a formula for the cube root.
$\,\sqrt[3]{S}=x_1+a\,$ where $\,x_1\,$ is the first approximate value by our own choice and $\,a\,$ is a tolerance (an error of approximation). By raising to the third power we obtain
$\,S=x_1^3+3\,x_1^2a+3\,x_1a^2+a^3.\,\,$ Again, we choose $\,x_1\,$ to be much greater than $\,a\,$ so that we can discard $\,a^2\,$ and $\,a^3\,$ for our approximation:
$$\,S\approx x_1^3+3\,x_1^2a\,,\quad a\approx\frac{S-x_1^3}{3\,x_1^2}$$
As we previously denoted $\,\sqrt[3]{S}=x_1+a\,$:
$$\,\sqrt[3]{S}\approx x_2=x_1+a= x_1+\frac{S-x_1^3}{3\,x_1^2}=\frac{3\,x_1^3+S-x_1^3}{3\,x_1^2}=\frac{2\,x_1^3+S}{3\,x_1^2}\,$$
Similarly for $\,x_{n+1}\,$ we get
$$\,\sqrt[3]{S}\approx x_{n+1}=x_n+\frac{S-x_n^3}{3\,x_n^2}=\frac{3\,x_n^3+S-x_n^3}{3\,x_n^2}=\frac{2\,x_n^3+S}{3\,x_n^2}\,$$
So, $$\,\sqrt[3]{S}\approx x_{n+1}=\frac{2\,x_n^3+S}{3\,x_n^2}\,$$
In the same way we can derive the formula for the $k$-th root of $S$:
$$\,\sqrt[k]{S}\approx x_{n+1}=\frac{(k-1)\,x_n^k+S}{k\,x_n^{k-1}}\,$$
Unlike the general formula we have just derived, there's an even more general formula (Newton's binomial) for $(1+a)^x$ where $x$ is any fractional or negative number. For positive integer powers Newton's binomial is finite, otherwise it is an infinite series. Here is a link (please go back to the very top of this answer) illustrating a far more general case.
However, I want to express that it is important to be able to derive formulas and understand all underlying procedures and derivations rather than plugging in numbers and hoping they will fit by hook or by crook after some attempts.