The greatest common divisor (GCD) of two or more non-zero integers, is the largest positive integer that divides the numbers without a remainder.

learn more… | top users | synonyms (1)

24
votes
7answers
3k 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 ...
16
votes
5answers
16k 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 ...
7
votes
1answer
2k 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 ...
7
votes
3answers
2k 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; ...
7
votes
1answer
6k views

RSA: Private key calculation with Extended Euclidean Algorithm

I'm a high school student writing a paper on RSA, and I'm doing an example with some very small prime numbers. I understand how the system works, but I can't for the life of me calculate the private ...
6
votes
4answers
3k views

what is the fastest way to find the gcd of n numbers?

what is the fastest way to find the greatest common divisor of n numbers other than using gcd(a,b,c)=gcd(gcd(a,b),c).
4
votes
2answers
348 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; ...
4
votes
1answer
619 views

Scala: (Int, Int) => Int doesn't match (Int, Int) => Int

I'm trying to use the y-combinator to define gcd in scala: object Main { def y[A,B]( f : (A => B) => A => B ) : A => B = f(y(f)) def gcd = y[(Int,Int),Int]( (g) => (x,y) => if ...
4
votes
2answers
340 views

Factor out GCD that is raised to a power

Using Mathematica (v.7) basically I want to bring an expression like this (x + x^2 + x^3)^4 to x^4 (1 + x + x^2)^4 What would be the best way to take a term like the GCD out of an expression ...
4
votes
2answers
241 views

Finding the first number larger than N that is a relative prime to M

Basically, the title says everything. The numbers are not too big (the maximum for N is ~2/3 * max(long) and max M is max(long)), so I think even a simple solution that I currently have is sufficient. ...
3
votes
2answers
2k 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?
3
votes
3answers
97 views

Compiling a C++ Program with Headers (Newbie)

I am learning C++ from Edward Schneinerman's C++ for Mathematicians. I am working on the greatest common divisor section in chapter 2. I have made three files: gcd.h #ifndef GCD_H #define GCD_H ...
3
votes
3answers
82 views

I can not make my code iterate x -= 1

I am learning Python at MIT 6.00 and stacked making recursion code. Only thing I want to do is just iterate deduct 1 from x, but don't know what to do.. Here is my code def gcdIter(a, b): ''' ...
3
votes
2answers
204 views

Calculating greatest common divisor [closed]

I have written the following function to calculate GCD of floating point numbers, but when I run this for the input (111.6, 46.5), the calculation of fmod(a,b) in the funciton starts giving the wrong ...
3
votes
5answers
414 views

Look for the GCD (greatest common divisor) of more than 2 integers?

I already have a function that find the GCD of 2 numbers. function getGCDBetween($a, $b) { while ($b != 0) { $m = $a % $b; $a = $b; $b = $m; } return $a; } ...
3
votes
1answer
120 views

Why is TI-Basic so slow?

I decided to implement a program that can find the GCD of any two numbers (including non-integers) in TI-Basic. I've used this just fine in Java, so I know it works. It works just fine in TI-Basic, ...
3
votes
1answer
336 views

Why is the binary GCD algorithm so much slower for me?

http://en.wikipedia.org/wiki/Binary_GCD_algorithm According to Wikipedia it's supposed to be a wee bit faster than Euclid's algorithm (not much, but I was at least expecting to get equal ...
3
votes
0answers
37 views

Lehmer's extended GCD algorithm implementation

While doing my own BigInteger implementation, I got stuck with the extended GCD algorithm, which is fundamental for finding modular multiplicative inverse. As the well-known Euclidean approach ...
2
votes
2answers
53 views

How can you create a unique key for two interchangable integers?

I am trying to write a simple caching mechanism for Euclid's method of finding the GCD of two numbers: gcd(a,0) = a gcd(a,b) = gcd(b, a % b) Note that gcd(a,b) == gcd(b,a). For the cache, I need ...
2
votes
1answer
108 views

GCD computation issues with GNU MP Library

I have a question about GNU MP, could you please help me how to proceed with that. I using "The GNU Multiple Precision Arithmetic Library" Edition 5.1.1 on Windows. (MinGW\gcc + MSYS) There is an ...
2
votes
3answers
3k views

How to write a simple Java program that finds the greatest common divisor between two numbers?

Here is the question: "Write a method named gcd that accepts two integers as parameters and returns the greatest common divisor of the two numbers. The greatest common divisor (GCD) of two integers a ...
2
votes
3answers
635 views

greatest common divisor Objective-C

I am new to ios programing. I have question about the GCD program. 01 // This program finds the greatest common divisor of two nonnegative integer values 02 03 #import ...
2
votes
1answer
173 views

GCD algorithms for arbitrary-precision arithmetic

I am completely stuck with this question, so I am looking for any help. I think everybody knows about basic GCD computation algorithms like binary or euclidean GCD. It is not a problem to implement ...
2
votes
2answers
14k views

C++ program to calculate greatest common divisor [closed]

I have started this program to calculate the greatest common divisor. This is what I have so far: #include <iostream> #include <math.h> using namespace std; int getGCD(int a, int b) { ...
1
vote
2answers
149 views

Method must return int

I am writing a program that uses Euclids algorithm of GCD(a, b) = GCD(b, r) r = a%b. I wrote a method that should return an integer for the main method to spit out, yet when I call for it to do this ...
1
vote
1answer
623 views

Couldn't match expected type `IO b0' with actual type `[a0]'

I'm new to haskell guys. I'm trying to write a gcd executable file. ghc --make gcd When I compile this code I'm getting the following error. Couldn't match expected type `IO b0' with actual type ...
1
vote
6answers
1k views

How to get the (Greatest Common Divisor)GCD of Doubles

This is a simple task but i can't seem to figure out how to do it Here is a sample function structure private double GetGCD(double num1, double num2) { //should return the GCD of the two double ...
1
vote
4answers
1k views

GCD function in matlab [closed]

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 ...
1
vote
3answers
141 views

Implement GCD correctly with structs in C

I'm implementing a very simple computer algebra system in c. I have some problem with my program crashing after a while. The idea is having an expression like 3^(21+8^(3^100)) + 4 and see that it ...
1
vote
4answers
1k views

GCD function in c++ sans cmath library

I'm writing a mixed numeral class and need a quick and easy 'greatest common denominator' function. Can anyone give me the code or a link to the code?
1
vote
1answer
495 views

GCD algorithms for a large integers

I looking for the information about fast GCD computation algorithms. Especially, I would like to take a look at the realizations of that. The most interesting for me: - Lehmer GCD algorithm, - ...
1
vote
2answers
146 views

Numpy gcd function

Does numpy have a gcd function somewhere in its structure of modules? I'm aware of fractions.gcd but thought a numpy equivalent maybe potentially quicker and work better with numpy datatypes. I have ...
1
vote
1answer
127 views

Assigment of 0 to %ecx register

In the label .L0, when I check the value of %eax register, I get the correct value. But when I check the value of the ecx register, it gives me zero. I dont know why. Perhaps this is the reason I get ...
1
vote
1answer
296 views

The complexity of Euclid's greatest common divisor algorithm on a Turing Machine

Consider this implementation of Euclid's algorithm: function gcd(a, b) while b ≠ 0 t := b b := a mod b a := t return a A nice proof on wikipedia shows that the ...
1
vote
4answers
438 views

Finding 2 or more numbers having the given number as GCF

I don't want to find the GCF of given numbers. I use Euclidean for that. I want to generate a series of numbers having a given GCF. For example if I choose 4, I should get something like 100, 72 or 4, ...
1
vote
2answers
444 views

How to get GCD and LCM of a range of numbers efficiently?

I currently use this code to find gcd and lcm def gcd(a, b): while b != 0: a, b = b, a%b return a def lcm(a, b): result = a*b/gcd(a,b) return result But what if I want to ...
1
vote
2answers
1k views

GCD recursive assembly language X86 MASM

Thank everyone for the help I have made some really good changes but now it gives me an answer of +4198498 instead of 5 for the first set of values which I know is wrong. Did i push something wrong or ...
0
votes
3answers
1k views

LCM of two numbers

I am getting wrong result for my LCM program. Ifirst find gcd of the numbers and then divide the product with gcd. int gcd(int x, int y) { while(y != 0) { int save = y; y = x % y; x ...
0
votes
2answers
504 views

Assembly language program to find the GCD - Floating point exception

With this program, I am intending to find the GCD of two numbers. But the result I get is "Floating point exception(core dumped)". What is the problem? The code I am trying to generate is int main() ...
0
votes
1answer
407 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 ...
0
votes
4answers
625 views

Java modulo operator and GCD

Why does this code give me an answer of 25? public int findGcd() { int num = this.num; int den = this.den; while (den != 0) { int t = den; den = num % den; num = ...
0
votes
1answer
193 views

Can't understand codes for “def gcd()”

def gcd(a, b): """Calculate the Greatest Common Divisor of a and b. Unless b==0, the result will have the same sign as b (so that when b is divided by it, the result comes out positive). ...
0
votes
4answers
132 views

Euclidean algorithm (GCD) with multiple numbers?

So I'm writing a program in Python to get the GCD of any amount of numbers. def GCD(numbers): if numbers[-1] == 0: return numbers[0] # i'm stuck here, this is wrong for i in ...
0
votes
1answer
164 views

Binary GCD - too slow algorithm

According to Wikipedia (http://en.wikipedia.org/wiki/Binary_GCD_algorithm) I was trying to write binary GCD for bignums (up to 5000 digits). My GCD itself looks like this: bitset<N> ...
0
votes
2answers
78 views

Euclidean algorithm on Sage for more than 2 elements

I'm trying to make an exercise which gets a list of numers, an shows a list of elements like this: if A=[a0,a1,a2] then there is U=[u0,u1,u2], knowing that a0*u0 + a1*u1 + a2*u2 = d and d is the gcd ...
0
votes
1answer
33 views

Java binary method for GCD infinate loop

I'm using the Binary Method to calculate the GCD of two fractions, the method works perfectly fine, except for when I subtract certain numbers from each other. I'm assuming it's because, for ...
0
votes
1answer
236 views

Java Greatest Common Divisor using a GUI Interface - Trouble With Int/String/Calculations

I am trying to create a greatest common divisor calculator. I had to create a GUI Interface for this project, and I think I did so correctly, however I can't test it because I am having an issue with ...
0
votes
4answers
1k views

How to use a value returned in a different class?

This is probably a very simple question. Say I had a class that computed the gcd, called Gcdcomp. The code in that class all works. When i refer to it in my main block of code, I say.. ...
0
votes
1answer
628 views

GCD and LCM relation

The following relation works only for two (3, 12) numbers, it fails to produce the right answer when used for three numbers (3,12,10) . Just wondering if is it my understanding or it is just for two ...
0
votes
1answer
25 views

GCD Iteratively in x86 intel Assembly

I am trying to find GCD iteratively in x86 assembly. Somehow, the loop keeps terminating after the first iteration because remainder=0. Any ideas why? ;while r > 0 do ; Set b = a ; Set a = r ...

1 2