Tagged Questions
The greatest-common-divisor tag has no wiki summary.
18
votes
6answers
2k views
“Approximate” greatest common divisor
Suppose you have a list of floating point numbers that are approximately multiples of a common quantity, for example
2.468, 3.700, 6.1699
which are approximately all multiples of 1.234. How would ...
5
votes
3answers
327 views
How does the Euclidean Algorithm work?
I just found this algorithm to compute the greatest common divisor in my lecture notes:
public static int gcd( int a, int b ) {
while (b != 0) {
final int r = a % b;
a = b;
...
5
votes
4answers
1k views
Java: get greatest common divisor
I have seen that such a function exists for BigInteger, i.e. BigInteger#gcd. Are there other functions in Java which also works for other types (int, long or Integer)? It seems this would make sense ...
4
votes
2answers
286 views
How can I optimize my C / x86 code?
int lcm_old(int a, int b) {
int n;
for(n=1;;n++)
if(n%a == 0 && n%b == 0)
return n;
}
int lcm(int a,int b) {
int n = 0;
__asm {
lstart:
inc n;
...
3
votes
2answers
560 views
What algorithm does Python employ in fractions.gcd()?
I'm using the fractions module in Python v3.1 to compute the greatest common divisor. I would like to know what algorithm is used. I'm guessing the Euclidean method, but would like to be sure. The ...
3
votes
4answers
558 views
GCD function in matlab
i am looking for a way to implement the "gcd" function used in matlab in another language but i really cant understand the way it functions.
it says in ...
3
votes
2answers
458 views
What is the fastest way to check if two given numbers are coprime?
One way is to calculate their gcd and check if it is 1.
Is there some faster way?
1
vote
4answers
80 views
Java - Recursive function of the Euclidean Algorithm
I can't seem to convert the following algorithm into Java successfully, please forgive the horrible picture quality but a question I'm working on asks:
I have tried to use the following code to ...
0
votes
1answer
119 views
Help me find mistake in greatest common divisor algorithm in python
So I have written
function gcd(a, b)
if b <> 0
gcd (b, a % b)
else
return a
print gcd (12, 9)
so it goes:
gcd(12, 9)
9 <> 0 means TRUE
gcd(9, 12 % 9 = 3)
3 <> 0 means ...