About 713,000 results
Open links in new tab
  1. Square root algorithms - Wikipedia

    Since all square roots of natural numbers, other than of perfect squares, are irrational, [1] square roots can usually only be computed to some finite precision: these algorithms typically construct a series of …

  2. Why the square root algorithm works - Homeschool Math

    Each time the algorithm is applied, it finds one more digit to the square root. That means we are approaching the actual value of the square root from below; in other words, that at each step the …

  3. Finding Square Roots: From Basic Iterations to Advanced ... - Medium

    Apr 17, 2025 · This post will explore three ( except buit-in function) different approaches to calculating square roots, analyzing their time complexity, space requirements, and practical applications.

  4. Square Root Algorithm - Basic-mathematics.com

    Learn how to calculate the square root of a number without a calculator using the square root algorithm.

  5. classic algorithm p that illustrates many of these concerns is “Newton’s” method to compute square roots x = a for a > 0, i.e. to solve x2 = a. The algorithm starts with some guess x1 > 0 and computes …

  6. Program for Square Root of Integer - GeeksforGeeks

    Aug 12, 2025 · If a number's square is more than n, the square root must be smaller. If it's less than or equal to n, the square root could be that number or greater. Because of this pattern, we can apply …

  7. Integer Square Root Algorithm (With Visualization and Code Examples)

    Oct 3, 2025 · Learn how to implement integer square root algorithms with both brute force and optimized binary search approaches. Includes Python, C++, and Java code examples.

  8. Square Root Algorithms - from Wolfram MathWorld

    Dec 3, 2025 · Wolfram's iteration provides a method for finding square roots of integers using the binary representation.

  9. A Fast Algorithm for the Integer Square Root - Cornell University

    This idea prompted us to explore the method of using the real number, decimal square root to find the integer square root. This method would involve two main steps: (1) finding the real square root and …

  10. The Square Root Algorithm. A look at the beautiful algebra ... - Medium

    Aug 21, 2021 · Why does the square root algorithm work, what’s the reasoning behind it? The answer, in a nutshell, is that the algorithm exploits the underlying algebra of the decimal place value system.