Tagged Questions
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
523 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?
12
votes
3answers
371 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. ...
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 ...
0
votes
5answers
80 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 ...