The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
92 views

lowest common multiple (lcm) of more than two binary polynomials in matlab

hello consider the binary array: A = 1 0 0 0 1 0 0 0 1 1 0 1 1 1 1 1 1 0 0 1 1 1 0 0 I want to take the lcm of all odd ...
1
vote
1answer
51 views

how would i put a whole bunch of float numbers into a list and then find the lowest common multiple of all the numbers?

how would i put a whole bunch of float numbers into a list and then find the lowest common multiple of all the numbers? My problem is that i have a text file with info on solar systems and i have ...
9
votes
10answers
8k views

Finding the LCM of a range of numbers

I read an interesting DailyWTF post today, "Out of All The Possible Answers..." and it interested me enough to dig up the original forum post where it was submitted. This got me thinking how I would ...
0
votes
0answers
23 views

LCM of N+1 consecutive numbers

How we can write code to find solution of following: (N+1)*X =LCM( 1,2,3,4,5,6,......,N,N+1) use mod when it gets greater then (10^9 +7) . USE MOD=(10^9 +7). I had written following code fragement ...
6
votes
6answers
343 views

Faster algorithm to find how many numbers are not divisible by a given set of numbers

I am trying to solve an online judge problem: http://opc.iarcs.org.in/index.php/problems/LEAFEAT The problem in short: If we are given an integer L and a set of N integers s1,s2,s3..sN, we have to ...
33
votes
8answers
25k views

Least common multiple for 3 or more numbers

How do you calculate the least common multiple of multiple numbers? So far I've only been able to calculate it between two numbers. But have no idea how to expand it to calculate 3 or more numbers. ...
1
vote
1answer
134 views

Working Example to find the LCM of more than 2 Numbers

Android 2.3.3 I have written a program for calculating the LCM for more than 2 numbers, and it worked for me. I thought of sharing it, so that it might come in handy for those who are looking for it. ...
6
votes
8answers
11k views

C++ algorithm to calculate least common multiple for multiple numbers

Is there a C++ algorithm to calculate the least common multiple for multiple numbers, like lcm(3,6,12) or lcm(5,7,9,12)?
4
votes
2answers
690 views

Least Common Multiple

I have the current coding which used to be a goto but I was told to not use goto anymore as it is frowned upon. I am having troubles changing it into for say a while loop. I am fairly new to C# and ...
-1
votes
1answer
155 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 ...
9
votes
2answers
542 views

What's the most efficient algorithm to calculate the LCM of a range of numbers?

I looked around and found other questions that had answers but none of them address the scope of this particular question., including this question, and also this one. I have to compute the LCM of ...
1
vote
1answer
287 views

Computing LCM of M consecutive numbers in an array of N integers

I came across this problem here. It was a programming contest held earlier this year. Here is the summary : Given an array of N integers, find LCM of all consecutive M integers. For e.g. Array = ...
3
votes
4answers
942 views

How to calculate all the prime factors of lcm of n integers?

I have n integers stored in an array a, say a[0],a[1],.....,a[n-1] where each a[i] <= 10^12 and n <100 . Now,I need to find all the prime factors of the LCM of these n integers i.e., LCM of ...
0
votes
0answers
174 views

How to extract pixel data

So to explain what exactly I'm trying to do: I've got a robot that has analog video only. We're using an EasyCap to get video to our linux machine. Right now mplayer is the only video player that I've ...
1
vote
2answers
949 views

C++ program to compute lcm of numbers between 1 to 20 (project euler )

as the title explains this is a program to find lcm of numbers between 1 to 20. i found an algorithm to do this, here's the link http://www.cut-the-knot.org/Curriculum/Arithmetic/LCM.shtml there is a ...
0
votes
1answer
112 views

A Java lib that has a utility for finding the least common multiple of a set of integers

I would like to find the least common multiple of a set of integers. Does a numerical Java library that does this exist? Please provide a link to it.
9
votes
5answers
12k views

How to find GCF, LCM on a set of numbers

What would be the easiest way to calculate Greatest Common Factor, Least Common Multiple on a set of numbers. What math functions can be used to find this information
1
vote
2answers
421 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
votes
2answers
812 views

How to find Least Common Multiple (LCM) for two numbers

I have used Euclid's method to find the L.C.M for two numbers. l.c.m=a*b/(gcd(a,b)) How can I do this without using this algorithm? I have an idea of first getting all factors of these two numbers ...
0
votes
1answer
580 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
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 ...
-3
votes
1answer
755 views

LCM of an array of numbers [closed]

Can someone help me out with writing a C++ code to find the lcm of an array of numbers. Thanks in advance, Arun
0
votes
4answers
367 views

How to dereference multiple void pointers in structs into 1 piece of memory?

I am working on a project where I need to send over a certain IPC stack, (in my case, LCM), and the thing is I need to provide the IPC a variable length struct. I have struct pack1 {int value1; int ...
4
votes
2answers
344 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; ...