answersLogoWhite

0

A simple strategy is the Newton Raphson method. See link for details.

Suppose to wish to find the square root of a number k.

Define f(x) = x2 - k

Let f'(x) = 2*x

Now start with some estimate for sqrt(k), say x0.

Then calculate x1 = x0 - f(x0)/f'(x0) as the next estimate.

Repeat, using xn+1 = xn - f(xn)/f'(xn).

The estimates will soon be very close to sqrt(k)

To illustrate:

Try sqrt(50) - which is approx 7.071068.

Even though you know the answer, start with a pretty feeble first estimate:

x0 = 10

Then x1 = 10 - (102 - 50)/(2*10) = 7.5

x3 is accurate to 4 decimal places and x4 to 11 dp.

User Avatar

Wiki User

11y ago

Still curious? Ask our experts.

Chat with our AI personalities

ReneRene
Change my mind. I dare you.
Chat with Rene
CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra

Add your answer:

Earn +20 pts
Q: What is the strategy for estimating square roots?
Write your answer...
Submit
Still have questions?
magnify glass
imp