Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
9answers
657 views

Does a range of integers contain at least one perfect square?

Given two integers a and b, is there an efficient way to test whether there is another integer n such that a ≤ n2 < b? I do not need to know n, only whether at least one such n ...
15
votes
4answers
4k views

John Carmack's Unusual Fast Inverse Square Root (Quake III)

John Carmack has a special function in the Quake III source code which calculates the inverse square root of a float, 4x faster than regular (float)(1.0/sqrt(x)), including a strange 0x5f3759df ...
13
votes
3answers
517 views

Given r^2, is there an efficient way to compute r^3?

double r2 = dx * dx + dy * dy; double r3 = r2 * sqrt(r2); Can the second line be replaced by something faster? Something that does not involve sqrt?
13
votes
12answers
1k views

Why do most programming languages only give one answer to square root of 4?

Most programming languages give 2 as the answer to square root of 4. However, there are two answers: 2 and -2. Is there any particular reason, historical or otherwise, why only one answer is usually ...
12
votes
3answers
359 views

Numpy - square root of -1 leaves a small real part

Perhaps this is an algorithmic issue, but the following piece of code numpy.power((-1+0j),0.5) produces the following output (6.1230317691118863e-17+1j) Analogous expressions e.g. ...
8
votes
4answers
166 views

How to improve fixed point square-root for small values

I am using Anthony Williams' fixed point library described in the Dr Dobb's article "Optimizing Math-Intensive Applications with Fixed-Point Arithmetic" to calculate the distance between two ...
7
votes
2answers
770 views

Square root function in Forth using x86 Assembly?

I don't know much about assembly, but I am pretty sure that there are square root instructions on the x86? I am trying to get a square root function to work well in froth and the one that I have found ...
6
votes
4answers
824 views

How can I find the Square Root of a Java BigInteger?

Is there a library that will find the square root of a BigInteger? I want it computed offline - only once, and not inside any loop. So even computationally expensive solution is okay. I don't want to ...
6
votes
6answers
1k views

How is the square root function implemented?

How is the square root function implemented?
6
votes
10answers
7k views

Writing your own square root function

How do you write your own function for finding the most accurate square root of an integer? After googling it, I found this, but firstly, I didn't get it completely, and secondly, it is approximate ...
6
votes
7answers
5k views

Looking for an efficient integer square root algorithm for ARM Thumb2

I am looking for a fast, integer only algorithm to find the square root (integer part thereof) of an unsigned integer. The code must have excellent performance on ARM Thumb 2 processors. It could be ...
5
votes
5answers
166 views

Calculate Nth root with integer arithmetic

There are a couple of ways to find integer square roots using only integer arithmetic. For example this one. It makes for interesting reading and also a very interesting theory, particularly for my ...
5
votes
2answers
149 views

Infinite Recursion in Meta Integer Square Root

Good day, My friend of mine is asking about transforming an integer square root function into a meta-function. Here is the original function: unsigned isqrt(unsigned value) { unsigned sq = 1, ...
4
votes
3answers
100 views

Finding square root as float from int and remainder?

I'm looking right now at particular algorithm for calculating square root which returns the integer part of the square root and the remainder. So for example: mysqrt(140) = 11*11 + 19 = integer 11, ...
2
votes
5answers
895 views

Shortest way to check perfect Square? [closed]

Possible Duplicate: What's a good algorithm to determine if an input is a perfect square? I want Shortest and Simplest way to Check a number is perfect square in C# Some of Perfect ...
2
votes
2answers
824 views

How to Calculate the Square Root of a Float in C#

How to Calculate the Square Root of a Float in C# .. Like Core.Sqrt in XNA
2
votes
6answers
1k views

How do I compute the square root of a number without using builtins?

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 ...
2
votes
3answers
633 views

How to do the square root in PowerPoint VBA?

Here is some math code that adds A to B: Sub math() A = 23 B = 2 ABSumTotal = A + B strMsg = "The answer is " & "$" & ABSumTotal & "." MsgBox strMsg End Sub But how ...
1
vote
2answers
139 views

Find top log(n) or top sqt(n) values in an array of integers

Do you understand what this question means Find top log(n) or top sqt(n) values in an array of integers in less than linear time. If you don't, here is the question ...
1
vote
4answers
109 views

Finding square root of 2 upto more than 100 decimal places

i tried to get this work by using Newton's method as described here: wiki using the following code, but the problem is that it is giving accurate result only upto 16 decimal places. I tried to ...
1
vote
2answers
64 views

print arbitrary amount of digits of float

How can I print more than about 10 digits of a float in python? Right now, when do print sqr_newton(10, 3, 0.001) (where sqr_newton is newton's algorithm for square roots; returns a float) it only ...
1
vote
4answers
661 views

How to include Square root sign as depicted in the following image in android?

I need to include the following square root sign in my android as a Text resource in Button control. Any guesses?
1
vote
3answers
260 views

Fastest algorithm of getting precise answer (not approximated) when square-rooting

Sorry for unclear title, but I don't know how to state it properly (feel free to edit), so I will give example: sqrt(108) ~ 10.39... BUT I want it to be like this sqrt(108)=6*sqrt(3) so it means ...
1
vote
3answers
1k views

Binary Search to Compute Square root (Java)

I need help writing a program that uses binary search to recursively compute a square root (rounded down to the nearest integer) of an input non-negative integer. This is what I have so far: import ...
0
votes
5answers
77 views

Can a square root of a non-integer become an integer due to floating point rounding errors?

In another unrelated Internet forum a question was asked on how to check if a square root of a given number is an integer. Now in and of itself that is a trivial homework question, but I started to ...
0
votes
0answers
100 views

Square roots in python [closed]

Original post: 12,080 users and I are trying an MIT OpenCourseWare class on Python. Many of us, especially rookies, hit roadbumps on Problem Set 1. I found a solution but could use some help making it ...
0
votes
2answers
174 views

square root character/symbol

I was wondering what the character code of the square root symbol is in java? That is, I want to be able to print a square root sign on screen inside a string of other characters, or as the label on a ...
0
votes
3answers
333 views

having trouble with square root loop using python

i have a user input 'n' and i am finding the square root. Which i know is math.sqrt(n), but i need to make the program continue find the square root until it is less than 2. also return to the user ...
0
votes
3answers
493 views

Simplify radical expression in java

Here is my method so far: public static int[] simplifyRadical(int number) { int[] result = new int[2]; for (int i = 1; i < number / 2; i++) { if ((i % number == 0)) { ...
0
votes
3answers
612 views

square-root and square of vector doubles in C++

I'd like to calculate the square and square-root of a vector of doubles. For example given: vector<double> Array1(10,2.0); vector<double> Array2(10,2.0); for(unsigned int i=0; ...
0
votes
3answers
795 views

Arrays- Square root of an Array and printing the result JAVA

The title says it all, really. I'm trying to get an array of (9) numbers square rooted then printed but I keep coming back with only one result - the number of numbers in the array squared- obviously ...
-1
votes
3answers
234 views

sqrt turn out to be 4.9999 , instead of 5 [closed]

Possible Duplicate: Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273? sqrt(25.0) turns out to be 4.99999 ,instead of 5 how would I fix this ...