answersLogoWhite

0

  • The square root of a number, N, is the number, M, so that M2 = N.
  • The square root algorithm is set up so that we take the square root of a number in the form of (X + R)2. The square root of this number is obviously (X + R). X represents the current approximation for the square root, and R represents the remainder of the number left over from the approximation.
  • Our approximation will always be the correct square root of the number truncated (not rounded) to the number of digits in our approximation.
  • If we expand our number (X + R)2 it will equal X2 + 2RX + R2. This gives us the basis for our derivation of the square root algorithm.
  • Step 1: The square root of a number between 1 and 100 is a number between 1 and 10. Furthermore, the square root of a number between 100 and 10000 is a number between 10 and 100. And so on. Therefore, if a number is divided into groups of two digits each from the decimal point to the left, the number of digits in the integer part of the square root of that number will be equal to the number of groups of figures.
  • Step 2: Only the first group of two (or one) digits determine the first digit of the square root. If the first two (or one) digits are a perfect square, then there is nothing left over and the process can be repeated on the next two digits of the number. This is usually not the case, which means there is a part of the first two (or one) digits which has not been accounted for and our approximation is not perfect. This leads into Step 3.
  • Step 3: Take the expanded value of our number: X2 + 2RX + R2. We subtract off the current approximation, X2, which results in 2RX + R2, the part of the original number which is not accounted for in our approximation. This gives us our next value to work with.
  • Step 4: Rewriting 2RX + R2 gives us R(2X + R). We see that our current approximation, X, must be doubled, resulting in 2X, which are the first digits of the number we will be working with.
  • Step 5: In order to find the next approximation, we need the R value. This number must divide into the next grouping with the smallest remainder, as shown by R(2X + R). (R obviously divides this number.)
  • Step 6: Since you've found an approximation based on this number, you must subtract of R(2X + R) so you take into account any remainder from your previous group of numbers.
  • Step 7: The procedure can be repeated as many times as necessary until either no remainder is found, meaning you have the actual square root, or until an acceptable number of decimal places are estimated.

Refer to link below for more information.

User Avatar

Wiki User

10y ago

Still curious? Ask our experts.

Chat with our AI personalities

ProfessorProfessor
I will give you the most educated answer.
Chat with Professor
JudyJudy
Simplicity is my specialty.
Chat with Judy
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao

Add your answer:

Earn +20 pts
Q: How do you use divide and average method in extracting square roots?
Write your answer...
Submit
Still have questions?
magnify glass
imp