Can someone explain to me an efficient way of finding all the factors of a number in Python (2.7)?

I can create algorithms to do this job, but i think it is poorly coded, and takes too long to execute a result for a large numbers.

link|improve this question

75% accept rate
3  
Let's see what you have, and we'll help you perfect it. Can't expect the community to give you a complete algorithm :) – Kshitij Mehta Jul 23 '11 at 12:02
3  
I don't know python. But this page maybe useful for you en.wikipedia.org/wiki/Integer_factorization – Stan Jul 23 '11 at 12:04
feedback

3 Answers

up vote 11 down vote accepted
def factors(n):    
    return set(reduce(list.__add__, ([i, n//i] for i in range(1, int(n**0.5) + 1) if n % i == 0)))

This will return all of the factors, very quickly, of a number n.

Why square root as the upper limit?

sqrt(x) * sqrt(x) = x. So if the two factors are the same, they're both the square root. If you make one factor bigger, you have to make the other factor smaller. This means that one of the two will always be less than or equal to sqrt(x), so you only have to search up to that point to find one of the two matching factors. You can then use x / fac1 to get fac2

the reduce(list.__add__, ...) is taking the little lists of [fac1, fac2] and joining them together in one long list.

The [i, n/i] for i in range(1, int(sqrt(n)) + 1) if n % i == 0 returns a pair of factors if the remainder when you divide n by the smaller one is zero (it doesn't need to check the larger one too, it just gets that by dividing n by the smaller one.)

The set(...) on the outside is getting rid of duplicates. I think this only happens for perfect squares. For n = 4, this will return 2 twice, so set gets rid of one of them.

Edit: sqrt is actually faster than **0.5, but I'll leave it out as it's nice as a self-contained snippet.

link|improve this answer
trial division algorithm is the most simple one :p – Stan Jul 23 '11 at 12:09
Thanks for your response. Yes, i am new to this. Could you explain what each part of your code does? I'm new to programming. I've seen they use of sqrt in other codes for the same function, but not sure why? – Adnan Jul 23 '11 at 12:11
Oh! I see now! The sqrt idea is clever. Thanks a lot! – Adnan Jul 23 '11 at 12:28
2  
If raw speed is a concern, you could benchmark reducing with __iadd__ instead (in place concatenation to grow the underlying array instead of allocating a new list each time). Also, using '//' floor division is supported in Python 2.x and required for 3.x. And using n ** 0.5 removes the need to import math.sqrt and cache it in __defaults__, which is a problem if factor is mistakenly called with a 2nd argument. – eryksun Jul 23 '11 at 13:23
1  
I copy-pasted this from a list of algorithms on my computer, all I did was encapsulate the sqrt -- it's probably from before people were really thinking about supporting Python 3. I think the site I got it from tried it against __iadd__ and it was faster. I seem to remember something about x**0.5 being faster than sqrt(x) at some point though -- and it is more foolproof that way. – agf Jul 23 '11 at 13:35
show 2 more comments
feedback

An alternative approach to agf's answer:

def factors(n):    
    result = set()
    for i in range(1, int(n ** 0.5) + 1):
        div, mod = divmod(n, i)
        if mod == 0:
            result |= {i, div}
    return result
link|improve this answer
Can you explain the div, mod part? – Adnan Jul 23 '11 at 18:45
1  
divmod(x, y) returns ((x-x%y)/y, x%y), i.e., the quotient and remainder of the division. – c4757p Jul 23 '11 at 22:29
oh I see, thanks! – Adnan Jul 24 '11 at 19:19
This doesn't handle duplicate factors well - try 81 for example. – phkahler Aug 15 '11 at 14:03
@phkahler: It gives the same answer as AGF's function. What's wrong with {27, 81, 3, 9, 1} as an answer? – eryksun Aug 15 '11 at 16:10
show 2 more comments
feedback

agf's answer is really quite cool. I wanted to see if I could rewrite it to avoid using reduce(). This is what I came up with:

import itertools
flatten_iter = itertools.chain.from_iterable
def factors(n):
    return set(flatten_iter((i, n//i) for i in range(1, int(n**0.5)+1) if n % i == 0))

I also tried a version that uses tricky generator functions:

def factors(n):
    return set(x for tup in ([i, n//i] for i in range(1, int(n**0.5)+1) if n % i == 0) for x in tup)

I timed it by computing:

start = 10000000
end = start + 40000
for n in range(start, end):
    factors(n)

I ran it once to let Python compile it, then ran it under the time(1) command three times and kept the best time.

  • reduce version: 11.58 seconds
  • itertools version: 11.49 seconds
  • tricky version: 11.12 seconds

Note that the itertools version is building a tuple and passing it to flatten_iter(). If I change the code to build a list instead, it slows down slightly:

  • iterools (list) version: 11.62 seconds

I believe that the tricky generator functions version is the fastest possible in Python. But it's not really much faster than the reduce version, roughly 4% faster based on my measurements.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.