Out of curiosity I'm trying to find an effective algorithm to find the value of a square root of a number(a) without a calculator. I'm trying to find a solution without searching it up. What I have so far: $$ \sqrt{a} = a^{1/2} $$ $$ a^2 = a.a $$ $$ a^3 = a.a.a $$ $$ a^n = a x .\cdots .n $$ All I need to know is what will $a^{1/2}$ equal to?
I tried: $$ a^{1/2} = a . \frac{a}{2} $$ $$ a^{1/2} = (a.a)/a $$
But these are definitely wrong
Use the Newton_Raphson Method $$x=\sqrt{a}\rightarrow x^2-a=0$$ or $$y=x^2-a$$ $$x_{i+1}=x_i-\frac{y}{y'}$$ $$x_{i+1}=x_i-\frac{x_i^2-a}{2x_i}=\frac{x_i^2+a}{2x_i}$$