answersLogoWhite

0

What method to find square root?

Updated: 9/24/2023
User Avatar

Wiki User

10y ago

Best Answer

Assuming the number whose square root you require is not a perfect square, one way to find its square root is through 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.

To start with, if you want to find the square root of 7, define f(x) = x2 - 7.

Then finding the square root of 7 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. Even if your first guess is not so good:

Suppose you start with x0 = 5 (a pretty poor choice since 52 is 25, which is nowhere near 7).

Even so, x3 = 2.646178944, which is the square root of approx 7.002. Finally, remember that the negative value is also a square root.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What method to find square root?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is 63 a square root?

We will walk through the definition of the square root of 63, find out whether the square root of 63 is rational or irrational, and see how to find the square root of 63 by the long division method. ... Square Root of 63.


How do you find the square root of 27225 in diivision method?

It is: 27225/165 = 165


How do you find square root of 2 by long division method?

by long division


To find square root of a number look-up table method 8085?

52


How do you write a java program to find the square root of a number?

You can use the Math.sqrt() method.


How do find a square root for 396?

Searching Google with "square root of 396" gave 19.8997487421 (round to 19.9). To discover the method used to calculate the sq root, search Google.


What is the square root of 2304 by division method?

The square root of 2304 is 48


What is the square root of 28224 by the division method?

The square root of 28224 is 168


What is the formula to find out the square root of 20?

The square root of 20 can be found using a calculator or by using the approximation method. The exact value is √20 ≈ 4.47.


How do you find the nearest perfect square?

There is no formula relating to a perfect square but if you want a method 1. Find square root(x) 2. Take the integer component (integral value) of square root(x) 3 Add 1 to intenger(square root(x)) 4. square it So: (integer(square root(x)) + 1)^2


What is the square root of 86 with steps?

The square root of 86 is approximately 9.2736. To find this, you can first estimate the square root of 86 to be between 9 and 10. Then, using a method like the Babylonian method, you can iteratively refine your estimate until you reach a desired level of accuracy.


How do you find square root of big numbers?

mathforum.org/dr.math/faq/faq.sqrt.by.hand.html has a simple method. Try it.