askvity

How to Find the Under Root of Any Number?

Published in Square Root Calculation 4 mins read

Finding the under root (square root) of a number involves determining a value that, when multiplied by itself, equals the original number. There are several methods to accomplish this, each with varying degrees of complexity and accuracy. This guide explains some common techniques.

Methods for Finding Square Roots

Here are several ways to find the square root of a number:

1. Repeated Subtraction Method

The repeated subtraction method is a simple technique to find the square root of a perfect square. It involves successively subtracting odd numbers from the given number until you reach zero. The number of steps it takes to reach zero is the square root.

  • How it Works: Start with the number you want to find the square root of. Subtract consecutive odd numbers (1, 3, 5, 7, etc.) until you reach zero. The number of subtractions you performed is the square root.

  • Example: Find the square root of 25.

    • 25 - 1 = 24
    • 24 - 3 = 21
    • 21 - 5 = 16
    • 16 - 7 = 9
    • 9 - 9 = 0

    It took 5 steps, so the square root of 25 is 5.

  • Limitations: This method is only efficient for perfect squares and can be tedious for larger numbers.

2. Prime Factorization Method

The prime factorization method involves breaking down the number into its prime factors and then pairing identical factors.

  • How it Works:

    1. Find the prime factorization of the number.
    2. Pair the identical prime factors.
    3. Take one factor from each pair.
    4. Multiply these factors together. The result is the square root.
  • Example: Find the square root of 36.

    1. Prime factorization of 36: 2 x 2 x 3 x 3
    2. Pair the identical factors: (2 x 2) x (3 x 3)
    3. Take one factor from each pair: 2 x 3
    4. Multiply the factors: 2 x 3 = 6

    Therefore, the square root of 36 is 6.

  • Advantages: Relatively straightforward for perfect squares with easily identifiable prime factors.

3. Estimation and Approximation Method

This method involves educated guessing and refining the estimate until you reach a satisfactory approximation of the square root.

  • How it Works:

    1. Find two perfect squares that the number falls between.
    2. Make an initial guess based on where the number lies between the two perfect squares.
    3. Square your guess.
    4. Adjust your guess up or down based on whether the square of your guess is higher or lower than the original number.
    5. Repeat steps 3 and 4 until you achieve the desired level of accuracy.
  • Example: Find the square root of 30.

    1. 30 falls between 25 (52) and 36 (62).
    2. Initial guess: 5.5
      1. 52 = 30.25
    3. Adjust guess down: 5.4
    4. 42 = 29.16
    5. Adjust guess up: 5.48
    6. 482 = 29.98

    Continuing this process, we can approximate the square root of 30 to be around 5.48.

  • Advantages: Useful when an exact answer isn't necessary and can be done without calculators for quicker estimations.

4. Long Division Method

The long division method is a systematic approach that can be used to find the square root of any number, regardless of whether it is a perfect square.

  • How it Works: This method is a bit more involved but provides a precise square root value.

    1. Group the digits of the number in pairs, starting from the decimal point.
    2. Find the largest integer whose square is less than or equal to the leftmost group. Write this integer as the divisor and the quotient.
    3. Subtract the square of the divisor from the leftmost group and bring down the next pair of digits to form the new dividend.
    4. Double the quotient and write it as the new divisor with a blank space at the end.
    5. Find the largest digit to fill the blank space such that the new divisor multiplied by this digit is less than or equal to the new dividend. Write this digit in the quotient and the blank space of the divisor.
    6. Subtract the product from the new dividend and bring down the next pair of digits.
    7. Repeat steps 4-6 until you have achieved the desired accuracy or have processed all digit pairs.
  • Example: Find the square root of 529.

    1. Group digits: 5 29
    2. Largest integer whose square <= 5 is 2 (22 = 4). Quotient = 2. Divisor = 2.
    3. 5 - 4 = 1. Bring down 29: New dividend = 129.
    4. Double the quotient: 2 * 2 = 4. New divisor = 4_ (blank space)
    5. Largest digit to fill blank: 3 (43 * 3 = 129). Quotient becomes 23. Divisor becomes 43.
    6. 129 - 129 = 0.

    Therefore, the square root of 529 is 23.

  • Advantages: Works for both perfect and non-perfect squares and provides a systematic way to calculate square roots to any desired level of precision.

These methods provide different approaches to finding the under root (square root) of a number, each suited for various situations and levels of precision needed.

Related Articles