Prime factors - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T21:19:58Zhttp://stackoverflow.com/feeds/question/23287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/23287/prime-factors3Prime factorsmercutio2008-08-22T19:35:50Z2009-06-22T08:09:18Z
<p>What is the best approach to calculating the largest prime factor of a number?</p>
<p>I'm thinking the most efficient would be the following:</p>
<ol>
<li>Find lowest prime number that divides cleanly</li>
<li>Check if result of division is prime</li>
<li>If not, find next lowest</li>
<li>Go to 2.</li>
</ol>
<p>I'm basing this assumption on it being easier to calculate the small prime factors. Is this about right? What other approaches should I look into?</p>
<p>Edit: I've now realised that my approach is futile if there are more than 2 prime factors in play, since step 2 fails when the result is a product of two other primes, therefore a recursive algorithm is needed.</p>
<p>Edit again: And now I've realised that this does still work, because the last found prime number has to be the highest one, therefore any further testing of the non-prime result from step 2 would result in a smaller prime.</p>
http://stackoverflow.com/questions/23287/prime-factors/23302#23302-3Answer by SQLMenace for Prime factorsSQLMenace2008-08-22T19:46:09Z2008-08-22T19:46:09Z<p>Take a look at the <a href="http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes" rel="nofollow">Sieve of Eratosthenes</a></p>
http://stackoverflow.com/questions/23287/prime-factors/23333#233330Answer by Klesk for Prime factorsKlesk2008-08-22T19:57:15Z2008-08-22T19:57:15Z<p>I think it would be good to store somewhere all possible primes smaller then n and just iterate through them to find the biggest divisior. You can get primes from <a href="http://www.prime-numbers.org/" rel="nofollow">prime-numbers.org</a>.</p>
<p>Of course I assume that your number isn't too big :)</p>
http://stackoverflow.com/questions/23287/prime-factors/31235#312350Answer by palotasb for Prime factorspalotasb2008-08-27T20:45:14Z2008-08-27T20:45:14Z<p>This is probably not always faster but more optimistic about that you find a big prime divisor:</p>
<ol>
<li><code>N</code> is your number</li>
<li>If it is prime then <code>return(N)</code></li>
<li>Calculate primes up until <code>Sqrt(N)</code></li>
<li>Go through the primes in descending order (largest first)
<ul>
<li>If <code>N is divisible by Prime</code> then <code>Return(Prime)</code></li>
</ul></li>
</ol>
<p>Edit: In step 3 you can use the Sieve of Eratosthenes or Sieve of Atkins or whatever you like, but by itself the sieve won't find you the biggest prime factor. (Thats why I wouldn't choose SQLMenace's post as an official answer...)</p>
http://stackoverflow.com/questions/23287/prime-factors/31254#312540Answer by Nick for Prime factorsNick2008-08-27T20:48:47Z2008-08-27T20:48:47Z<p>Not the quickest but it works!</p>
<pre><code> static bool IsPrime(long num)
{
long checkUpTo = (long)Math.Ceiling(Math.Sqrt(num));
for (long i = 2; i <= checkUpTo; i++)
{
if (num % i == 0)
return false;
}
return true;
}
</code></pre>
http://stackoverflow.com/questions/23287/prime-factors/202429#2024290Answer by Ralph Rickenbach for Prime factorsRalph Rickenbach2008-10-14T19:08:35Z2009-01-07T16:09:59Z<pre><code>n = abs(number);
result = 1;
if (n mod 2 == 0) {
result = 2;
while (n mod 2 = 0) n /= 2;
}
for(i=3; i<sqrt(n); i+=2) {
if (n mod i == 0) {
result = i;
while (n mod i = 0) n /= i;
}
}
return max(n,result)
</code></pre>
<p>There are some modulo tests that are superflous, as n can never be divided by 6 if all factors 2 and 3 have been removed. You could only allow primes for i, which is shown in several other answers here.</p>
<p>You could actually intertwine the sieve of Eratosthenes here:</p>
<ul>
<li>First create the list of integers up
to sqrt(n).</li>
<li>In the for loop mark all multiples
of i up to the new sqrt(n) as not
prime, and use a while loop instead.</li>
<li>set i to the next prime number in
the list.</li>
</ul>
<p>Also see <a href="http://stackoverflow.com/questions/201374/project-euler-question-3-help">this question</a>.</p>
http://stackoverflow.com/questions/23287/prime-factors/242189#24218913Answer by Artelius for Prime factorsArtelius2008-10-28T03:44:38Z2009-06-22T08:09:18Z<p>Actually there are several more efficent ways to find factors of numbers. One method which is very fast if the input number has two factors very close to its square root is known as <a href="http://en.wikipedia.org/wiki/Fermat's%5Ffactorization%5Fmethod" rel="nofollow">Fermat factorisation</a>. It makes use of the identity N = (a + b)(a - b) = a^2 - b^2 and is easy to understand and implement. Unfortunately it's not very fast in general.</p>
<p>The best known method for factoring numbers up to 100 digits long is the <a href="http://en.wikipedia.org/wiki/Quadratic%5Fsieve" rel="nofollow">Quadratic sieve</a>. As a bonus, part of the algorithm is easily done with parallel processing.</p>
<p>Yet another algorithm I've heard of is <a href="http://en.wikipedia.org/wiki/Pollard's%5Frho%5Falgorithm" rel="nofollow">Pollard's Rho algorithm</a>. It's not as efficient as the Quadratic Sieve in general but seems to be easier to implement.</p>
<p><hr /></p>
<p>Once you've decided on how to split a number into two factors, here is the fastest algorithm I can think of to find the largest prime factor of a number:</p>
<p>Create a priority queue which initially stores the number itself. Each iteration, you remove the highest number from the queue, and attempt to split it into two factors (not allowing 1 to be one of those factors, of course). If this step fails, the number is prime and you have your answer! Otherwise you add the two factors into the queue and repeat.</p>
http://stackoverflow.com/questions/23287/prime-factors/242274#2422740Answer by Apocalisp for Prime factorsApocalisp2008-10-28T04:42:40Z2008-10-28T04:56:00Z<p>The simplest solution is a pair of <em>mutually recursive</em> functions.</p>
<p>The first function returns all the prime numbers.</p>
<ol>
<li>Start with a list that consists of 2 and all odd numbers greater than 2.</li>
<li>Remove all numbers that have more than one prime factor (see below), as these numbers are not prime.</li>
</ol>
<p>The second function returns the prime factors of a given number n, as follows:</p>
<ol>
<li>Let p equal the first prime number (2).</li>
<li>Take a list of all the primes, starting with p (see above).</li>
<li>If p squared is greater than our number n, then n is prime and therefore its largest and only prime factor is itself.
If p divides n, then p is a prime factor of n. The other factors are the prime factors of n divided by p. Go to 2. Otherwise, let p equal the next prime number and go back to step 2.</li>
</ol>
<p>The largest prime factor of n is the last number given by the second function.</p>
http://stackoverflow.com/questions/23287/prime-factors/242290#2422900Answer by nickf for Prime factorsnickf2008-10-28T05:06:53Z2008-10-28T05:06:53Z<p>All numbers can be expressed as the product of primes, eg:</p>
<pre><code>102 = 2 x 3 x 17
712 = 2 x 2 x 2 x 89
</code></pre>
<p>You can find these by simply starting at 2 and simply continuing to divide until the result isn't a multiple of your number:</p>
<pre><code>712 / 2 = 356 .. 356 / 2 = 178 .. 178 / 2 = 89 .. 89 / 89 = 1
</code></pre>
<p>using this method you don't have to actually calculate any primes: they'll all be primes, based on the fact that you've already factorised the number as much as possible with all preceding numbers.</p>
<pre><code>number = 712;
currNum = number; // the value we'll actually be working with
for (currFactor in 2 .. number) {
while (currNum % currFactor == 0) {
// keep on dividing by this number until we can divide no more!
currNum = currNum / currFactor // reduce the currNum
}
if (currNum == 1) return currFactor; // once it hits 1, we're done.
}
</code></pre>
http://stackoverflow.com/questions/23287/prime-factors/242296#2422961Answer by moogs for Prime factorsmoogs2008-10-28T05:10:45Z2008-10-28T05:10:45Z<p>What's the application? </p>
<p>If you have an upper bound for the number, check if you can just use a table of primes instead ;)</p>
http://stackoverflow.com/questions/23287/prime-factors/242331#2423310Answer by Loren Pechtel for Prime factorsLoren Pechtel2008-10-28T05:40:45Z2008-10-28T05:40:45Z<p>It seems to me that step #2 of the algorithm given isn't going to be all that efficient an approach. You have no reasonable expectation that it is prime.</p>
<p>Also, the previous answer suggesting the Sieve of Eratosthenes is utterly wrong. I just wrote two programs to factor 123456789. One was based on the Sieve, one was based on the following:</p>
<pre><code>1) Test = 2
2) Current = Number to test
3) If Current Mod Test = 0 then
3a) Current = Current Div Test
3b) Largest = Test
3c) Goto 3.
4) Inc(Test)
5) If Current < Test goto 4
6) Return Largest
</code></pre>
<p>This version was 90x faster than the Sieve.</p>
<p>The thing is, on modern processors the type of operation matters far less than the number of operations, not to mention that the algorithm above can run in cache, the Sieve can't. The Sieve uses a lot of operations striking out all the composite numbers.</p>
<p>Note, also, that my dividing out factors as they are identified reduces the space that must be tested.</p>
http://stackoverflow.com/questions/23287/prime-factors/412942#4129420Answer by Triptych for Prime factorsTriptych2009-01-05T12:18:04Z2009-01-05T12:18:04Z<p>Here's the best algorithm I know of (in Python)</p>
<pre><code>def prime_factors(n):
"Returns all the prime factors of a positive integer"
factors = []
d = 2
while (n > 1):
while (n%d==0):
factors.append(d)
n /= d
d = d + 1
return factors
pfs = prime_factors(1000)
largest_prime_factor = pfs[-1] # The largest (last) element in the prime factor array
</code></pre>
<p>I believe <code>prime_factors()</code> runs in O(sqrt(n)) in the worst case. Besides that, it's certainly easy to code and understand.</p>
http://stackoverflow.com/questions/23287/prime-factors/830001#8300010Answer by sundar for Prime factorssundar2009-05-06T14:52:12Z2009-05-06T14:52:12Z<p>My answer is based on <a href="http://stackoverflow.com/questions/23287/prime-factors/412942#412942">Triptych</a>'s, but improves a lot on it. It is based on the fact that beyond 2 and 3, all the prime numbers are of the form 6n-1 or 6n+1. </p>
<pre><code>var largestPrimeFactor;
if(n mod 2 == 0)
{
largestPrimeFactor = 2;
n = n / 2 while(n mod 2 == 0);
}
if(n mod 3 == 0)
{
largestPrimeFactor = 3;
n = n / 3 while(n mod 3 == 0);
}
multOfSix = 6;
while(multOfSix - 1 < n)
{
if(n mod (multOfSix - 1) == 0)
{
largestPrimeFactor = multOfSix - 1;
n = n / largestPrimeFactor while(n mod largestPrimeFactor == 0);
}
if(n mod (multOfSix + 1) == 0)
{
largestPrimeFactor = multOfSix - 1;
n = n / largestPrimeFactor while(n mod largestPrimeFactor == 0);
}
multOfSix+=6;
}
</code></pre>
<p>I recently wrote a <a href="http://thetaoishere.blogspot.com/2009/04/finding-largest-prime-factor.html" rel="nofollow">blog article</a> explaining how this algorithm works. </p>
<p>I would venture that a method in which there is no need for a test for primality (and no sieve construction) would run faster than one which does use those. If that is the case, this is probably the fastest algorithm here. </p>