Working out each decimal place isn't too hard. For instance, you can show the square root of 2 is between 1 and 2 by considering 1^2 and 2^2.
Similarly, it is between 1.4 and 1.5 because 1.4^2 = 1.96 and 1.5^2 = 2.25. Easy enough to do in your head, I did it in mine just now. (e.g. 1.4^2 is done by squaring 14 then adding a decimal point in the right place.)
And so on, though after a bit you'll have to start working on paper. That's the most general algorithm I can think of.
Name:
Anonymous2007-07-01 15:30 ID:U2OjrazX
1. pick a number and square it. is it the number you're trying to find the root of? then you've finished
2. else, if it's lower, pick a higher number, if it's higher, pick a lower number
3. goto step 1
Name:
Anonymous2007-07-03 20:14 ID:yIZEkb9N
to find the square root of X, start with a guess G. the loop step is:
G = avg(N/G,G)
you can convince yourself that this converges (quickly)