Talk:Proper divisors: Difference between revisions

From Rosetta Code
Content added Content deleted
(→‎The two Python Solutions: Subheader added.)
(→‎Python: comparisons: Incorporated changed factors4 from Ledrug as factors5. Halved nmax. New timings.)
Line 32: Line 32:
Thanks Nigel,I should really turn all factor examples into proper divisor functions then time them for implementing, say, the [[Aliquot sequence classifications]] task which would probably thrash them the most. Hmmm. --[[User:Paddy3118|Paddy3118]] ([[User talk:Paddy3118|talk]]) 16:10, 19 December 2014 (UTC)
Thanks Nigel,I should really turn all factor examples into proper divisor functions then time them for implementing, say, the [[Aliquot sequence classifications]] task which would probably thrash them the most. Hmmm. --[[User:Paddy3118|Paddy3118]] ([[User talk:Paddy3118|talk]]) 16:10, 19 December 2014 (UTC)


:I hacked together timings
:I hacked together timings and cut-n-pasted stuff into Ipython's command line...
<lang python>#... marshall the factorials ...
<lang python>#... marshall the factorials (ommitted copy of code from tasks) ...




Line 52: Line 52:
return proper_divs
return proper_divs


pd = [fact2pd(fact) for fact in (factors1, factors2, factors3, factors4)] + [proper_divs22, proper_divs21]
pd = [fact2pd(fact) for fact in (factors1, factors2, factors3, factors4, factors5)] + [proper_divs22, proper_divs21]


nmax = 100000
nmax = 50000
ans = [proper_divs21(n) for n in range(1, nmax)]
_divs.cache_clear()

#... Paste the following into IPython shell...

nmax = 100000
ans = [proper_divs21(n) for n in range(1, nmax)]
ans = [proper_divs21(n) for n in range(1, nmax)]
_divs.cache_clear()
_divs.cache_clear()
Line 68: Line 62:
%time print(' OK' if ans == [proper_divs(n) for n in range(1, nmax)] else ' Whoops!')</lang>
%time print(' OK' if ans == [proper_divs(n) for n in range(1, nmax)] else ' Whoops!')</lang>


<pre>From factors1: Naive and slow but simplest (check all numbers from 1 to n):
<pre>
From factors1: Naive and slow but simplest (check all numbers from 1 to n):
OK
OK
Wall time: 11min 13s
Wall time: 2min 38s
From factors2: Slightly better (realize that there are no factors between n/2 and n):
From factors2: Slightly better (realize that there are no factors between n/2 and n):
OK
OK
Wall time: 5min 36s
Wall time: 1min 22s
From factors3: Much better (realize that factors come in pairs, the smaller of which is no bigger than sqrt(n)):
From factors3: Much better (realize that factors come in pairs, the smaller of which is no bigger than sqrt(n)):
OK
OK
Wall time: 3.9 s
Wall time: 1.44 s
From factors4: More efficient when factoring many numbers:
From factors4: More efficient when factoring many numbers:
OK
OK
Wall time: 2.55 s
Wall time: 1.06 s
From factors5: NEW 2014/12/20: More efficient when factoring many numbers:
OK
Wall time: 772 ms
A very literal interpretation
A very literal interpretation
OK
OK
Wall time: 6min 19s
Wall time: 1min 38s
Return the set of proper divisors of n.
Return the set of proper divisors of n.
OK
OK
Wall time: 6.08 s
Wall time: 2.69 s</pre>

</pre>
:--[[User:Paddy3118|Paddy3118]] ([[User talk:Paddy3118|talk]]) 00:44, 20 December 2014 (UTC)
:--[[User:Paddy3118|Paddy3118]] ([[User talk:Paddy3118|talk]]) 00:44, 20 December 2014 (UTC), --[[User:Paddy3118|Paddy3118]] ([[User talk:Paddy3118|talk]]) 08:11, 20 December 2014 (UTC)

Revision as of 08:11, 20 December 2014

Dupe?

The explanation on the J implementation here makes a good point: is this task just a trivial change of Factors of an integer? --Mwn3d (talk) 17:09, 16 December 2014 (UTC)

Yep, it is allied, but deficient, perfect, abundant number classifications as well as Amicable pairs are based on them. --Paddy3118 (talk) 18:34, 16 December 2014 (UTC)
It seems like it'd be easier to just use the "proper divisors" definition in other tasks where appropriate rather than having a separate task with essentially the same code (except for maybe esoteric languages). Especially since any definition with "factors of an integer" could be made using "proper divisors" with one or two extra additions or subtractions. It just doesn't seem worth it. It looks to me like having a task to "print the number 3" and another task to "print the number before 4". --Mwn3d (talk) 19:11, 16 December 2014 (UTC)
From my point of view 'factors' is simpler than 'Proper divisors'. Specifically: 'Proper divisors' are the factors of a number except the number itself except if the number itself is 1. I don't have an opinion on the redundancy, but if people decide that the redundancy is bad, I'd hate to sacrifice the simple concept of 'factors' (all of them, for all cases, instead of just a special case for 1). --Rdm (talk) 21:48, 16 December 2014 (UTC)
OK. I understand your point. I have just added the third of the triplet of tasks Abundant, deficient and perfect number classifications, they do form a tight triplet, but I am probably pushing it cos I started it. Could it stay guys? (I am definitely not impartial - would be nice to have one champion though in what I hope will be a debate) --Paddy3118 (talk) 19:26, 16 December 2014 (UTC)
Yes I see those, but like I said, those could easily be made using the sum of the old factors task definition and "2n" on the right side of the formulas. Seems like "2 pi" and "tau" to me, but let's see if anyone else has an opinion on whether this task should stay. --Mwn3d (talk) 19:37, 16 December 2014 (UTC)
I like the classification task, but this one seems like a very small change vs. divisors (Factors of an integer). If we have this, then why not restricted divisors (remove 1 and n) as well? It seems like the obvious implementation here is "get divisors using the other task, then remove n" which isn't very interesting (in my opinion). Danaj (talk) 14:33, 17 December 2014 (UTC)
Actually, it's "get factors using the other task then remove n unless n is 1", which is... at least as interesting as fizzbuzz? But I think I see what you are getting at -- I would not want to see too many minor-variation tasks. --Rdm (talk) 17:30, 17 December 2014 (UTC)
The "unless n is 1" has been corrected -- 1 is not an exception. Some sources include the negatives of the proper divisors as well, leading some to the definition including "...is a positive divisor...". The input 0 is another oddball case -- Wolfram/Alpha and Pari/GP don't agree on its divisors, for example. Danaj (talk) 18:43, 17 December 2014 (UTC)
Should probably use "task has changed" warning for older solutions, when that's what happened. Not always a big deal, but sometimes this can help someone editing (or even just reading) the code understand what's going on. --Rdm (talk) 23:52, 17 December 2014 (UTC)

Definition

I don't believe the definition used is correct. In particular "always includes 1" doesn't follow from the definition given at the linked site, or MathWorld or OEIS.

A simple definition from Mathworld: "A positive proper divisor is a positive divisor of a number n, excluding n itself." Danaj (talk) 21:09, 16 December 2014 (UTC)

From which we see that 1 will always divide an integer without remainder. I make a point about mentioning 1 as a reference stated that sometimes the same term "proper divisors" is used when 1 is excluded. --Paddy3118 (talk) 18:25, 16 December 2014 (UTC)
I guess my point was about the input 1. The proper divisors of 1 should be the empty set, while all the current implementations are using the "always includes 1" to mean it should be {1}. Another interesting case is the input 0, but I think we can ignore that. Danaj (talk) 21:09, 16 December 2014 (UTC)
Well... on the one hand, the definition of of what proper divisors are for 1 has changed during this discussion, which makes talking about that a bit odd. On the other hand, the list of factors of zero is probably infinite: 0 = 0*1*2*3*4... Or, put differently: the remainder of dividing zero by 100 is zero. So that can't be adequately represented on a computer, so we probably always treat it as an error case (either that or by never returning from a request for that list of divisors). --Rdm (talk) 00:05, 18 December 2014 (UTC)
The task has been changed, so the point of this topic is now settled (for me at least). Re 0, I see the task says "of a positive integer N" so sidesteps the 0 input entirely. Even if we did care, it would for this task be "whatever you've justified divisors(0) returning, without 0 if it was present." That covers divisors returning {}, {0}, {0,1}, error, a lazy list, etc. As an aside, I see sometime between Pari 2.5.3 and 2.6.2 they changed from returning {0,1} to giving a domain error. Sage returns a value error. Wolfram/Alpha indicates "(all non-zero integers are divisors of 0)" Danaj (talk) 01:16, 18 December 2014 (UTC)

The two Python Solutions

Hi Paddy3118

I believe you when you say the second version is faster than the first, but note (n + 1) // 2 + 1 can be replaced by floor(sqrt(n)) in the first version. 141 rather than 10,000 in the case of 20,000. This would be a fairer comparison!--Nigel Galloway (talk) 14:32, 19 December 2014 (UTC)

Python: comparisons

You may wish to look at the fourth example Factors_of_an_integer#Python for an efficient method of finding the factors of a large number of contiguos integers--Nigel Galloway (talk) 15:57, 19 December 2014 (UTC)

Thanks Nigel,I should really turn all factor examples into proper divisor functions then time them for implementing, say, the Aliquot sequence classifications task which would probably thrash them the most. Hmmm. --Paddy3118 (talk) 16:10, 19 December 2014 (UTC)

I hacked together timings and cut-n-pasted stuff into Ipython's command line...

<lang python>#... marshall the factorials (ommitted copy of code from tasks) ...


def fact2pd(factorise):

   'Change factoriser to proper divisor function'
   def proper_divs(n):
       if n == 1: 
           return set()
       if n == 0:
           return {1}
       f = set(factorise(n))
       try:
           f.remove(n)
       except KeyError:
           pass
       return f
   proper_divs.__doc__ = 'From %s: %s' % (factorise.__name__, factorise.__doc__)
   return proper_divs

pd = [fact2pd(fact) for fact in (factors1, factors2, factors3, factors4, factors5)] + [proper_divs22, proper_divs21]

nmax = 50000 ans = [proper_divs21(n) for n in range(1, nmax)] _divs.cache_clear()

for proper_divs in pd:

   print(proper_divs.__doc__)
   %time print('  OK' if ans == [proper_divs(n) for n in range(1, nmax)] else '  Whoops!')</lang>
From factors1: Naive and slow but simplest (check all numbers from 1 to n):
  OK
Wall time: 2min 38s
From factors2: Slightly better (realize that there are no factors between n/2 and n):
  OK
Wall time: 1min 22s
From factors3: Much better (realize that factors come in pairs, the smaller of which is no bigger than sqrt(n)):
  OK
Wall time: 1.44 s
From factors4: More efficient when factoring many numbers:
  OK
Wall time: 1.06 s
From factors5: NEW 2014/12/20: More efficient when factoring many numbers:
  OK
Wall time: 772 ms
A very literal interpretation
  OK
Wall time: 1min 38s
Return the set of proper divisors of n.
  OK
Wall time: 2.69 s
--Paddy3118 (talk) 00:44, 20 December 2014 (UTC), --Paddy3118 (talk) 08:11, 20 December 2014 (UTC)