how can i create method which return sqrt of given nunber? for example sqrt(16) returns 4 and sqrt(5) returns 2.3... please help i am using java and know Math.sqrt() API function but i need method itself

link|improve this question

2  
The only reason I can think is homework, so I've suggested thisin the tags. – David M Jun 16 '10 at 8:12
Google for "Newton's Method" – Paul R Jun 16 '10 at 8:20
Read the "Numerical Recipes in C" book – Fanatic23 Jun 17 '10 at 17:46
possible duplicate of Writing your own square root function. – bdonlan Jun 22 '10 at 0:04
feedback

6 Answers

up vote 6 down vote accepted

There are numerous methods to compute Square root. Try this http://en.wikipedia.org/wiki/Methods_of_computing_square_roots

link|improve this answer
feedback

You will probably have to make use of some approximation method.

Have a look at

Methods of computing square roots

link|improve this answer
1  
+1 for the link – INS Jun 16 '10 at 8:17
feedback

Here's something to think about:

To find a square root, you simply need to find a number which, raised to the power of 2 (although just multiplying by itself is a lot easier programmatically ;) ) gives back the input.

So, start with a guess. If the product is too small, guess larger. If the new product is too large, you've narrowed it down - guess somewhere in between. You see where I'm going...

Depending on your need of precision and/or performance, there are of course lots of ways. The solution hinted at in this post is in no way the best one in either of those categories, but it gives you a clue on one way to go.

link|improve this answer
That will take lot of processing though! – ivorykoder Oct 11 '10 at 10:35
feedback

Have you tried wikipedia

link|improve this answer
feedback

If I've interpreted the question right... You are a new student somewhere.

You shouldn't be asking so simple things here. And it sounds more like a program than method.

Here's how you can get on with such program:

  • Find some chassis of java program.
  • Locate standard input read and standard output write -actions.
  • insert write(sqrt(string_to_integer(read()))) into the main program block.

I don't bother with java so I don't know the particular details. http://www.devdaily.com/java/edu/pj/pj010005/

UGH. I just remembered why I don't bother with java at all. :D Who raped its IO library?

link|improve this answer
feedback

One that I invented (or reinvented if the case may be) is this:

let x be the number you are trying to square root

((Guess^2)+N)/(2*Guess) = next guess

example:

square root of 10, first guess is, let's say, 10:

(100+10)/20=5.5

(30.25+10)/(2*5.5)= 3.6590909090...

(13.3889+10)/(3.65909090*2)=3.196005082...

etc.

Gets you 3.16227766... or the

This is actually a simplified version of my original method Guess+((N+Guess^2)/(2*Guess)) which looks an awful lot like Bakhshali's method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.