Tagged Questions

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 ...
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 ...
5
votes
5answers
165 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 ...
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
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 ...
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
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 ...