Estimating Square Roots and the Role of Calculators

In summary, the conversation discussed various methods for estimating and calculating the square root of a number without using a calculator. These methods included the use of logarithms, Newton's method, binary search, and the old-fashioned method of extracting square roots. Each method was explained with examples and suggestions for simplifying the process.
  • #1
DeathKnight
73
0
How can I estimate the value of sqrt. of a particular no. which is not a perfect square(e.g. 125) without using the calculator?
Secondly how does the Calculator solve it? Does it use logrithms? If it does how does it solve them?
 
Mathematics news on Phys.org
  • #2
  • #3
Thanks Integral but I'm still confused... I'm just in 10th grade and I think the method there is for much senior students. Isnt there any simpler form of this method or any other simple method to find it?
Any help will be appreciated.
 
  • #4
125=25x5. [tex]\sqrt{5^2x5} =5\sqrt{5}=5\sqrt{2^2+1}=5(2+1/4-1/64+-+)[/tex]

The second part comes from using the method of Newton for fractional binominal expansion: [tex]\sqrt{4+1}=4^{1/2}+(1/2)4^{-1/2}+\frac{(1/2)(-1/2)}{2!}(4^{-3/2})[/tex]

That is a very useful method, particularly when one of the two terms under the square root is just 1. (In that case we have 1^0, 1^1, 1^2, where each successive term is multiplied to each new term, and so is irrelevant.)

However, we could also look at this:
[tex]\sqrt{121+4} =11 +(1/2)121^{-1/2}(4^1) =11+2/11-+-[/tex]

Which for two terms is just 11 +2/11. Now 1/11 = .090909..., so 2/11 = .18181818...giving 11.18 as a quick approximation, and we know the next term in the expansion would have been negative, so the real answer is a little less than 11.18181818..., but for two terms, we are completely correct!
 
Last edited:
  • #5
DeathKnight said:
Thanks Integral but I'm still confused... I'm just in 10th grade and I think the method there is for much senior students. Isnt there any simpler form of this method or any other simple method to find it?
Any help will be appreciated.

Binary Search method:
This method may seen simple, but it's really quite fast and easy to program.
You're trying to find the square root of [itex]n[/itex].
Start with some [itex]x_0=n[/itex] if [itex]n \geq 1[/itex] and [itex]x_0=1[/itex] otherwise (so [itex]x_0^2>n[/itex]).
Now, generate [tex]x_n[/tex] using the following rules
If
[tex]x_{i}^2 > n[/tex]
then
[tex]x_{i+1}=x_{i} - \frac{x_0}{2^i}[/tex]
If
[tex]x_{i}^2 <i[/tex]
then
[tex]x_{i+1}=x_{i} + \frac{x_0}{2^i}[/tex]
If
[tex]x_{i}^2=i[/tex]
then you've got the exact square root.
 
Last edited:
  • #6
I'm surprised that no one suggested the old-fashoined method i learned in the 6-th grade,10 years ago.The algorithm of extracting sqrt.Take the number and write it in decimal notation and then extract sqrt with arbitrary approximation using the algorthm.

Take 7.Write it 7.00 00 00 00 .It's still 7,right??The fact that u added 8 zeros after the dot means u'll be getting the 4 decimals from [itex] \sqrt{7} [/itex].Now apply to it the algorithm described here

Daniel.

PS.I still reccomend logarithm tables in the absence of computers.For example,u might need to extract root of order [itex] \pi\sqrt{4.5} [/itex].There's no algorithm in that case.
 
  • #7
A simple method to approximate a square root is this:
example:
[tex] \sqrt{42}[/tex]
pick any number lower than 42 and divide 42 by this number:
[tex] x = \frac{42}{6} = 7[/tex]
take the average of both divisors:
[tex]\frac{6+7}{2} = 6.50[/tex]
divide 42 by this average:
[tex]x = \frac{42}{6.50} = 6.46[/tex]
take the average:
[tex]\frac{6.5 + 6.46}{2} = 6.48[/tex]
divide 42 by this average:
[tex]x = \frac{42}{6.48} = 6.48[/tex]

[tex] \sqrt{42} \approx 6.48[/tex]

you can of course use more decimals and repeat dividing and taking averages more times to get a closer approximation
 
  • #8
Learn to square numbers really fast.

https://www.physicsforums.com/showthread.php?t=53229&page=2&pp=15
There's other short cuts you could learn, too.

If you get to the square of the nearest 0 or 5 (20^2 = 400, 25^2 = 625, etc) and understand the rate that the square is increasing (or decreasing) using the fourth and fifth term, you can get pretty close.

If you really understand the rate that the square is increasing, you can interpolate between the two closest integers a lot more accurately than you'd think (you round off your fractions to avoid unwieldy numbers and kind of get a feel for how you have to adjust). When I had to solve a lot of problems, I could pretty well count on being at least to the nearest hundredth.

Of course, when I was in high school, electronic calculators were one of those new-fangled technological inventions that only professionals or rich kids could afford. My calculator was a Post Versalog 1460, made of the finest Hemmi bamboo. Actually, that was pretty high end for high school - most kids had the cheap Picketts. I was lucky - my dad needed a pretty high end calculator for his job, so I got his Post when he switched over to an electronic calculator. Since you had to keep track of significant digits yourself, being able to get a fairly accurate estimate was always an advantage (okay, my estimates were usually accurate to more significant digits than my slide rule could give me, but that's beside the point).
 
  • #9
Lets take a number, say..., 154372. How would I find the square root of that because Dex's way was working until I found my left number was too large and BobG's method has gone over my head.

The Bob (2004 ©)
 
  • #10
The Bob said:
Lets take a number, say..., 154372)

Newton's method:
Let's start by guessing 500.
154372/500=308.744
The average is 404.372
154372/404.372=381.75...
The average is 393.06
154372/393.06=392.744
and so on.

Binary search:
Start with 512 (starting with apower of two makes this work a bit better...)
512*512 is to big subtract 256 -> 256
256*256 is too small add 128 -> 384
384*384=147456 is too small, add 64 -> 448
448*448 is too big subtract 32 -> 416
416*416 is too big subtract 16 -> 400
400*400 is too big subtract 8 -> 392
392*392 is too small, add 4 -> 396
396*396 is too big subtract 2 -> 394
394*394 is too big subtract 1 -> 393
393*383=154449 is too big, subtract 0.5 ->392.5
and so on.
 
  • #11
dextercioby Homework Helper I'm surprised that no one suggested the old-fashoined method i learned in the 6-th grade,10 years ago.The algorithm of extracting sqrt.Take the number and write it in decimal notation and then extract sqrt with arbitrary approximation using the algorthm.

Boy! You guys are slow to take a hint. He even tells you where to find the method: http://www.geocities.com/cnowlen/Cathy/Emat4680/Squareroot.htm

In the case above you separate two digits at a time: 15,43,72. The first step is to find a square, the largest and less than 15, that's 3, then you subtract 9 and bring down two more digits to get 643. (I don't have a better way of showing this.) Now that you have 3 above the number, you double this and make it 6 on the left, then you look at (10x6 +?)(?) is the largest answer less than 643. In this case it is 69, so 69x9 = 621, which you subtract from 643 and add on the last two digits, which are 72, to get 2272.

Now you have two digits above the number 39, so you double this getting 78 and look at (10x78+?)(?) is less than 2272. Etc, etc... Check the example he suggests.

When I went to school before they had calculators, that was the standard method, you know. Today, it seems mostly a lost art! Obviously it is a direct method.
 
Last edited:
  • #12
The Bob said:
Lets take a number, say..., 154372. How would I find the square root of that because Dex's way was working until I found my left number was too large and BobG's method has gone over my head.

The Bob (2004 ©)

Change it to 1543.72 x10^2 (I can't do square roots for numbers greater than 10000). It's between 1225 (35^2) and 1600 (40^2) and closer to 1600. Dropping to 39 means I need to subtract 80, then add 1, which drops me to 1521. The square root is between 39 and 40, around 39.25 (I don't have as good a feel for the interpolation as I did before I could use a calculator).

Edit: Make that about 392.5 (I forgot my powers of ten. Divide those by 2 for the square root).

(In fact, not near as good a feel, since the answer is much closer to 392.9)
 
Last edited:

1. What is the purpose of estimating square roots?

The purpose of estimating square roots is to find an approximate value for a square root without using a calculator or performing complex mathematical calculations. It is a useful skill for solving problems that involve square roots, especially in real-world applications.

2. How do I estimate a square root?

To estimate a square root, you can use a method called "guess and check." Start by finding the closest perfect squares to the number you want to find the square root of. Then, make a guess for the square root by using the perfect squares as reference points. Continue to refine your guess until you reach a satisfactory level of accuracy.

3. Can I use estimation of square roots to find irrational numbers?

Yes, you can use estimation of square roots to find irrational numbers. Since irrational numbers cannot be expressed as a fraction, they cannot be represented exactly using decimal notation. Therefore, estimation is often the best way to find an approximate value for an irrational square root.

4. What are some real-world examples where estimation of square roots is useful?

Estimation of square roots is useful in many real-world situations, such as calculating the length of a diagonal of a square or rectangle, finding the side length of a square with a given area, or estimating the amount of material needed for a construction project. It is also commonly used in the fields of engineering, physics, and finance.

5. Are there any limitations to estimating square roots?

While estimating square roots can be a helpful tool, it is important to keep in mind that it is only an approximation and may not always be completely accurate. It is also limited by the accuracy of your guesses and the number of reference points available. As a result, it is not recommended for use in situations where a high level of precision is required.

Similar threads

Replies
15
Views
1K
Replies
1
Views
1K
  • General Math
Replies
4
Views
1K
Replies
13
Views
3K
  • General Math
Replies
8
Views
2K
Replies
16
Views
1K
Replies
2
Views
737
  • General Math
Replies
8
Views
772
Replies
3
Views
905
  • General Math
Replies
5
Views
766
Back
Top