BABYLONIA METHOD { ALGORITHM}
* An algorithm to find the square root of a number.
1) Give a number
2) Guess the square root of number.
3) Square your guess number and subtract it from original number.
4) If the absolute difference is less than an acceptable tolerance then you are done.
5) Else calculate a new guessed number guessed
= (guessed +original/guessed) / 2
6) Go to step 3