The greatest common divisor (GCD) of two or more non-zero integers, is the largest positive integer that divides the numbers without a remainder.
24
votes
7answers
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 ...
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).
-6
votes
1answer
158 views
Greatest common denominator (eucilid method) in C [closed]
I keep getting errors with my implementation. I have 3 files, the .c file includes the funciton, the demo file contains the implementation. My work is being tested by an online grader and gives me ...
1
vote
4answers
854 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?
0
votes
0answers
93 views
BigIntegers, gcd , modulus inverse to find public key
So, Im using java to find the public key of a RSA password. Right now Im unsure what I'm doing and also if it's correct.
I have this information for the public key.
C = 5449089907
n = p*q = ...
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 ...
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 ...
1
vote
2answers
428 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 ...
0
votes
1answer
587 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 ...