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
feedback
|
|
There are numerous methods to compute Square root. Try this http://en.wikipedia.org/wiki/Methods_of_computing_square_roots | |||
|
feedback
|
|
You will probably have to make use of some approximation method. Have a look at | |||||
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. | |||
|
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:
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? | |||
|
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. | |||
|
feedback
|