answersLogoWhite

0

One way to estimate the square root of a number is by iteration. This entails making a guess at the answer and then improving on it. Repeating the procedure should lead to a better estimate at each stage. One such is the Newton-Raphson method.

Since you want to find the square root of 1009, define f(x) = x^2 - 1009.

Then finding the square root of 1009 is equivalent to solving f(x) = 0.

Let f'(x) = 2x. This is the derivative of f(x) but you do not need to know that to use the N-R method.

Start with x0 as the first guess.

Then let xn+1 = xn - f(xn)/f'(xn) for n = 0, 1, 2, …

Provided you made a reasonable choice for the starting point, the iteration will very quickly converge to the true answer.

30*30 = 900 which is reasonably close to 1009 so let x0 = 30, then by x3, the absolute error is less than a quarter in 1 billion!

The solution, using this method, is 31.76476035

User Avatar

Wiki User

9y ago

Still curious? Ask our experts.

Chat with our AI personalities

EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra
SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve
JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan

Add your answer:

Earn +20 pts
Q: How do you calculate the square root of 1009?
Write your answer...
Submit
Still have questions?
magnify glass
imp