The greatest common divisor (GCD) of two or more non-zero integers, is the largest positive integer that divides the numbers without a remainder.
0
votes
1answer
28 views
Using GCD in performSelectorInBackground: , How this action get an exception?
When I call "performSelectorInBackground" to process some action asynchronously.
My code struct is like:
[self performSelectorInBackground:@selector(AddTheAdditionalDataSourceToTableView) ...
0
votes
4answers
65 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
80 views
Loading images from file to UICollectionView, using GCD
When i take a picture, I save the image file in to a folder i made in the NSDocuments Directory. (/Documents/Photos/....png)
Then I load all the photos in the photo's folder in the collection view. ...
-1
votes
1answer
38 views
PHP , Sum Of Common Division 2 Numbers
I want to Sum of Common Division Between two number,
in below is my code , and output is maghsom moshtarak is=24612
but Goal is 12 only;
please help me,
<?php
$m=0;
$j=6;
$h=12;
function ...
-3
votes
2answers
71 views
Difference between brute force and Euclidean algorithms for finding GCD [closed]
Why is consecutive integer checking algorithm for finding GCD considered brute force, but Euclidean algorithm is not? I am just confused about it. Is it because we are checking one by one?
-1
votes
1answer
81 views
Identify the greatest common divisor (GCD) of the two values using Euclid's Algorithm
My program asks a user for two numbers, and then I have to pass those numbers to my function. My function is supposed to "Identify the greatest common divisor (GCD) of the two values using Euclid's ...
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 = ...
1
vote
2answers
94 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 ...
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 ...
0
votes
0answers
117 views
Problems with verilog pipeline
I have to write a module for calculate the GCD with Euclidean algorithm with two numbers of 16 bit.
I know that I need, in the worst case, 22 steps for reach the solution, I obtain this steps number ...
3
votes
3answers
85 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
...
1
vote
2answers
134 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
474 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,
- ...
2
votes
1answer
155 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 ...
0
votes
1answer
184 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).
...
2
votes
1answer
88 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 ...
-1
votes
1answer
36 views
Can someone help figure out what my variable needs to be initialized to while using Euclid's GCD? [closed]
I'm transferring my Euclid GCD program into a method for an assignment. Yes this is rather basic, but one problem keeps occurring and for the life of my partners and I can't figure it out. This is our ...
1
vote
1answer
516 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 ...
14
votes
5answers
15k 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 ...
3
votes
2answers
188 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 ...
1
vote
3answers
140 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 ...
2
votes
2answers
13k 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)
{
...
3
votes
5answers
340 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;
}
...
0
votes
1answer
158 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> ...
-1
votes
3answers
96 views
Can't compile code for greatest common divisor? [closed]
I am having trouble compiling my code, specifically in the main program where I call "gcd();" What should I be putting in the parentheses? Thank you.
import java.util.Scanner;
public class gcd {
...
-1
votes
2answers
660 views
How to find the GCD of three numbers within a single method
I've got to ensure that the GCD between 3 numbers is no greater than 1.
Here's the code I have so far for the method:
private int greatestCommonFactor(int a, int b, int c)
{
for(int n = 0; n ...
0
votes
1answer
217 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
2answers
73 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 ...
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 ...
1
vote
1answer
124 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 ...
0
votes
2answers
484 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() ...
1
vote
1answer
280 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
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?
-1
votes
1answer
156 views
Wrong Answer in interview street challenge
First of all a small clarification.I did got AC in this problem,but my better approach (which is mathematically equivalent,I assume to my AC solution) is getting a WA verdict
There is a problem in ...
3
votes
1answer
109 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, ...
-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 ...
-2
votes
1answer
440 views
How can I find the number of pairs a,b<N such that GCD(a,b) = x?
I am trying to solve the SPOJ problem PGCD, which asks how many primes appear in a table of greatest common divisors.
The first idea that came to my mind is to generate the primes first by sieving.
...
-1
votes
1answer
145 views
Using Greatest Common Divisor for a ratio in Objective-C?
I would like to write a method in Objective-C that will result in a text string 'a:b:c:d'. I have four UISteppers (their values are displayed in a label each). I would like the ratio of those four ...
2
votes
3answers
610 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 ...
0
votes
1answer
154 views
Euclid algorithm for finding GCD [closed]
In our algo class today, our professor mentioned that
GCD(m,n) = GCD(n mod m,m)
but didn't mention its proof
Can someone prove this ??
Thanks
0
votes
1answer
393 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 ...
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
...
0
votes
4answers
620 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 = ...
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. ...
4
votes
1answer
591 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 ...
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
4answers
915 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..
...
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 ...
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 ...
3
votes
1answer
318 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 ...









