how to find the square root of a number by duplex method and also how to find the square of a number by duplex method

Many of the methods for calculating square roots of a positive real number S require an initial seed value. If the initial value is too far from the actual square root, the calculation will be slowed down. It is therefore useful to have a rough estimate, which may be very inaccurate but easy to calculate. If S ≥ 1, let D be the number of digits to the left of the decimal point. If S < 1, let D be the negative of the number of zeros to the immediate right of the decimal point. Then the rough estimation is this:

If D is odd, D = 2n + 1, then use  sqrt{S} approx 2 cdot 10^n.
If D is even, D = 2n + 2, then use  sqrt{S} approx 6 cdot 10^n.

Two and six are used because they approximate the geometric means of the lowest and highest possible values with the given number of digits: sqrt{sqrt{1 cdot 10}} = sqrt[4]{10} approx 2 , and sqrt{sqrt{10 cdot 100}} = sqrt[4]{1000} approx 6 ,.

When working in the binary numeral system (as computers do internally), an alternative method is to use 2^{leftlfloor D/2rightrfloor} (here D is the number of binary digits).

  • 4
square root of 35344 by duplex method
 
  • 1
avhth
  • 0
square is done by the following steps-
 if ab raise to the power 2 then
a raise to power 2+ 2(a into b)+b raise to the power 2
  • 0
ertyuio
  • 0
11111
  • 0
square is done by the following steps-
 if ab raise to the power 2 then
a raise to power 2+ 2(a into b)+b raise to the power 2
  • -2
hiiii
  • 1
Surendr kumar meena budel
  • 0
What are you looking for?