Why is square root by long division found so

math-history

We were taught the long division method of finding square root in junior classes. The logic behind the method used to be unclear, it remains so even now! However, we learnt and practiced the algorithm well. To me it appears that the identity $$(a+b)^2=a^2+2ab+b^2$$ lies behind the method. However this seems to be only the minimal idea. So extensions and generalizations are welcome here. See the picture below as I can't type this stuff. Some one else may edit it properly.

enter image description here

Best Answer

For $3$ or $4$ digit numbers you were using $$(10a+b)^2=100a^2+(20a+b)b$$

For $5$ or $6$ digit numbers you would have used the messier $$(100a+10b+c)^2=10000a^2+(2000a+ 100b)b+(200a+ 20 b+c)c$$

So you would separate the number to be square-rooted into $100$s, in your example $27,04$

and it looked like

       ?  ?
     ------ 
     |27,04
 

The largest square less than or equal to $27$ is $25=5^2$ so you write

       5  ?
     ------ 
   5 |27,04
     |25
     ---
     | 2,04

You then double the $5$ you have written at the top to give $10$ and then add an extra digit $X$ so $10X \times X$ is a large as possible but does not exceed $204$: $102 \times 2= 204$ works exactly

       5  2
     ------ 
   5 |27,04
     |25
     ---
 102 | 2,04
     | 2,04
     ------
          0

So $\sqrt{2704} =52$

If the result had not been exact, you could have continued the same way, bringing down two more digits (possibly $00$).

My school thought this a waste of time and instead taught us to use logarithm tables.

Related Question