About 28,000 results
Open links in new tab
  1. Methods of computing square roots - Wikipedia

    This is a method to find each digit of the square root in a sequence. This method is based on the binomial theorem and basically an inverse algorithm solving (+) = + +. It is slower than the …

  2. Computing square roots in binary by hand is actually simple

    Mar 12, 2022 · Square roots in binary are easy to compute by hand: Let's take the square root of 121 as an example. First off, convert it to binary and pad it to an even number of digits, so that …

  3. binary - Digit by digit square root algorithm for negabinary …

    How could one calculate the square root of a negabinary number digit by digit? I know how to calculate the square root of binary numbers by hand, but I'm unsure how to expand this to …

  4. computer science - Calculating a SQRT digit-by-digit?

    sqrtl.c: Calculates the square root of a long double floating-point number using Newton-Raphson method. You can dive into these implementations written by amazingly smart people and try to …

  5. square root of a binary number and beyond

    Apr 14, 2013 · Either use a numerical method (like Newton's) to solve $x^n - a = 0$ (starting points could be estimated roughly, or given by a table), or use a CORDIC algorithm for digit-by …

  6. Find square root of number upto given precision using binary search

    Sep 14, 2024 · Given a positive number n and precision p, find the square root of number upto p decimal places using binary search. 1) As the square root of number lies in range 0 <= …

  7. What's the name of this finding square root algorithm?

    Sep 29, 2017 · As Peter Cordes mentioned in comments, this is digit-by-digit algorithm (here binary digits). It is kind of binary search. You set i-th bit if squared result becomes closer to x …

  8. Can you name this square root algorithm on an unsigned integer …

    Sep 29, 2016 · Apparently this algorithm is well known. The algorithm will build the square root answer bit by bit starting from the left-most bit to the last. Let's say we will support squaring up …

  9. The Square Root Algorithm - Medium

    Aug 21, 2021 · That is, we go about finding the square root digit-by-digit, building upon the value obtained thus far. Note that the binary number system has only two digits (also known as bits) …

  10. Methods of computing square roots - Wikipedia, the free …

    The duplex method is a variant of the digit by digit method for calculating the square root of a whole or decimal number one digit at a time. [5] The duplex is the square of the central digit …

  11. Some results have been removed
Refresh