Calculating a Square Root Without Calculator

AI Thread Summary
The discussion focuses on methods for estimating square roots without a calculator, specifically using the example of √4.51. One participant suggests a linearization approach, but notes that it complicates the approximation by requiring another square root calculation. Alternative methods discussed include using known square roots for rough estimates, such as averaging √4 and √5 to approximate √4.51 as 2.12, and employing logarithms for more complex calculations. Another technique mentioned is the binomial expansion to refine estimates, yielding a close approximation of 2.1275 for √4.51. Overall, various strategies are shared for achieving quick and reasonably accurate square root calculations.
bjnartowt
Messages
265
Reaction score
3
Hi all, I am trying to find a nice back-of-the-envelope way to numerically-calculate nasty things like square roots and stuff. For instance:
\sqrt {4.51} = ?

I tried to use a linearization:
\sqrt x = \sqrt {n + \varepsilon } = \sqrt {\left[ {{\rm{integer}}} \right] + \left[ {{\rm{decimal part}}} \right]} = \sqrt n + L(\sqrt x ) \cdot \varepsilon
…where you “linearly” count your way from \sqrt {n + \varepsilon } to \sqrt x by way of the linearization, L(\sqrt x ), namely, the derivative:
L(\sqrt x ) = {\left. {\frac{d}{{dx}}\sqrt x } \right|_{x = n}} = \frac{n}{{2\sqrt n }}

But that’s another square root to calculate, which would further-roughen my approximation. Are there any other numerical-approximations you’d suggest?
 
Physics news on Phys.org
bjnartowt said:
Hi all, I am trying to find a nice back-of-the-envelope way to numerically-calculate nasty things like square roots and stuff. For instance:
\sqrt {4.51} = ?

I tried to use a linearization:
\sqrt x = \sqrt {n + \varepsilon } = \sqrt {\left[ {{\rm{integer}}} \right] + \left[ {{\rm{decimal part}}} \right]} = \sqrt n + L(\sqrt x ) \cdot \varepsilon
…where you “linearly” count your way from \sqrt {n + \varepsilon } to \sqrt x by way of the linearization, L(\sqrt x ), namely, the derivative:
L(\sqrt x ) = {\left. {\frac{d}{{dx}}\sqrt x } \right|_{x = n}} = \frac{n}{{2\sqrt n }}

But that’s another square root to calculate, which would further-roughen my approximation. Are there any other numerical-approximations you’d suggest?

I tried googling the title of your thread, and got what look to be lots of good hits:

http://www.google.com/search?source...=Calculating+a+Square+Root+Without+Calculator

I didn't click into any of them -- are they helpful?
 
How accurate do you need? There are a lot of strategies if high accuracy is not the goal (and in any case, if I'm trying to estimate in my head I shoot for 5-10% accuracy). In the present case, I know sqrt(4) = 2 and sqrt(5) = 2.23 (which we had to memorize in junior high school). Taking the mean gives the estimate sqrt(4.51) = 2.12 (approx.).

OR, sqrt(4.5) = sqrt(9) * sqrt(0.5) = 3 * .707 = 2.12.

Actual answer is 2.124.

I'll often use logs, too. I wouldn't use them for this problem, but I'll do it to show how it works.
I've memorized four values, namely,
log10 of {2, 3, 5, 7} = {0.3, 0.48, 0.7, 0.85}.
I can figure out other simple ones from these: obviously log10(4)=0.6 and log10(9)=0.96, for instance.

Applied to present problem, x = sqrt(4.5)=10^(1/2*log10(4.5)).

First, 1/2 * log10(4.5) = 1/2 * log10(9*5/10) = 1/2 * (0.96 + 0.7 - 1) = 0.36

Second, find x=10^0.36. Looking at the values I know above, I find that 0.36 = 0.96 - 0.6
Using my known values in reverse (antilogs), x = 10^0.96 / 10^0.6 = 9 / 4 = 2.25. That's within 6%.

Logs are harder for this problem, but are easier for others (like finding cube roots, e.g.).
 
Last edited:
You could use the binomial expansion of (1+x)1/2≈1+x/2 to get an estimate. Using your example, you'd do something like

\sqrt{4.51} = \sqrt{4+0.51} = \sqrt{4}\sqrt{1+0.1275}

to get it into the right form, and then expand the latter square root. In this case, you'd get an answer of 2.1275, which is pretty close to the actual answer, to four decimal places, of 2.1237.
 
TL;DR Summary: I came across this question from a Sri Lankan A-level textbook. Question - An ice cube with a length of 10 cm is immersed in water at 0 °C. An observer observes the ice cube from the water, and it seems to be 7.75 cm long. If the refractive index of water is 4/3, find the height of the ice cube immersed in the water. I could not understand how the apparent height of the ice cube in the water depends on the height of the ice cube immersed in the water. Does anyone have an...
Thread 'Variable mass system : water sprayed into a moving container'
Starting with the mass considerations #m(t)# is mass of water #M_{c}# mass of container and #M(t)# mass of total system $$M(t) = M_{C} + m(t)$$ $$\Rightarrow \frac{dM(t)}{dt} = \frac{dm(t)}{dt}$$ $$P_i = Mv + u \, dm$$ $$P_f = (M + dm)(v + dv)$$ $$\Delta P = M \, dv + (v - u) \, dm$$ $$F = \frac{dP}{dt} = M \frac{dv}{dt} + (v - u) \frac{dm}{dt}$$ $$F = u \frac{dm}{dt} = \rho A u^2$$ from conservation of momentum , the cannon recoils with the same force which it applies. $$\quad \frac{dm}{dt}...
Back
Top