-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrimaryNumbers.py
More file actions
651 lines (541 loc) · 14.9 KB
/
PrimaryNumbers.py
File metadata and controls
651 lines (541 loc) · 14.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
# To add a new cell, type '# %%'
# To add a new markdown cell, type '# %% [markdown]'
# %% Change working directory from the workspace root to the ipynb file location. Turn this addition off with the DataScience.changeDirOnImportExport setting
# ms-python.python added
import os
try:
os.chdir(os.path.join(os.getcwd(), '..\\..\..\..\AppData\Local\Temp'))
print(os.getcwd())
except:
pass
# %%
from IPython import get_ipython
# %% [markdown]
# ## Explore different algorithm to extact all primary numbers
# %%
import numpy as np
# %% [markdown]
# ### Most primary method, scan all odd numbers by all odd numbers
# #### The running time without iteraction counting is about 15s
# %%
def pn_1(num = 1000):
if num < 2:
return []
result = [2]
n_iter = 0
for n in range(3, num+1, 2):
primary = True
for i in range(3, n, 2):
n_iter += 1
if n%i == 0:
primary = False
break
if primary:
result.append(n)
print('Total iterations: {}'.format(n_iter))
return result
# %%
get_ipython().run_cell_magic('time', '', 'print(len(pn_1(100000)))')
# %% [markdown]
# ### Scan odd numbers only by numbers lower than square root
# #### this significantly reduced iteration from 227.6M to 1.35M
# %%
def pn_2(num = 1000):
if num < 2:
return []
result = [2]
n_iter = 0
for n in range(3, num+1, 2):
primary = True
for i in range(3, np.int(np.sqrt(n))+1, 2):
n_iter += 1
if n%i == 0:
primary = False
break
if primary:
result.append(n)
print('Total iterations: {}'.format(n_iter))
return result
# %%
get_ipython().run_cell_magic('time', '', 'print(len(pn_2(100000)))')
# %% [markdown]
# ### Further reduced iteration by scanning by numbers primary numbers only.
# #### this reduced iterations by 50%, from 1.35M to 0.64M
# %%
def pn_3(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
result = [2, 3]
p = 1
m = 3
# n_iter = 0
for n in range(5, num+1, 2):
primary = True
if np.int(np.sqrt(n)) >= m:
p += 1
m = result[p]
for i in result[1:p]:
# n_iter += 1
if n%i == 0:
primary = False
break
if primary:
result.append(n)
# print('Total iterations: {}'.format(n_iter))
return result
# %%
get_ipython().run_cell_magic('time', '', 'print(len(pn_3(100000)))')
# %% [markdown]
# ### On top of odd numbers, removed multipliers of 3
# #### Further compressed iterations to 0.63M
# Split numbers to bucket of 6, in every bucket, only check 1st and 5th number
# %%
def pn_4(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
# n_iter = 0
for q in range(7, num, 6):
for n in [q, q+4]:
primary = True
if np.int(np.sqrt(n)) >= m:
p += 1
m = result[p]
for i in result[1:p]:
# n_iter += 1
if n%i == 0:
primary = False
break
if primary:
result.append(n)
if result[-1] > num:
result = result[:-1]
# print('Total iterations: {}'.format(n_iter))
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_4(100000))')
# %% [markdown]
# ### Iteractions does not compressed in this version, only reverse comparison
# #### Rather than use square root of big number, compare square of smaller number, and eliminated using numpy package
# This reduced running time by about 50%, with the same number of iterations (120 ms above was when using iteraction counting, without counting, the running time was about 100 ms)
# %%
def pn_5(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
# n_iter = 0
for q in range(7, num, 6):
for n in [q, q+4]:
primary = True
if m*m <= n:
p += 1
m = result[p]
for i in result[1:p]:
# n_iter += 1
if n%i == 0:
primary = False
break
if primary:
result.append(n)
if result[-1] > num:
result = result[:-1]
# print('Total iterations: {}'.format(n_iter))
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_5(1000000))')
# %% [markdown]
# ### Trying to reduce computation of square, but increased running time slightly
# #### rather using square, tried to use adding difference on top of current number
# This introduced new variables, but did not successfully improve program performance
# %%
def pn_6(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
sq = 9
m = 3
# n_iter = 0
for q in range(7, num, 6):
for n in [q, q+4]:
primary = True
if sq <= n:
p += 1
r = result[p]
sq += (r+m)*(r-m)
# print('sq:', sq, ', p:', p, ', n:', n, ', r:', r, ', m:', m)
m = r
# m = result[p]
for i in result[1:p]:
# n_iter += 1
if n%i == 0:
primary = False
break
if primary:
result.append(n)
if result[-1] > num:
result = result[:-1]
# print('Total iterations: {}'.format(n_iter))
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_6(1000000))')
# %% [markdown]
# ### Compressed iterations again by removing dividing by 3, as all multiplier of 3 has been removed
# #### This brings iterations from 0.63M to 0.59M, but total running time does not change so much
# When num = 1M, the running time can be reduced slightly (about 2.5%, from 820ms to 800ms)
# %%
def pn_7(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
# n_iter = 0
for q in range(7, num, 6):
for n in [q, q+4]:
if n>num:
break
primary = True
if m*m <= n:
p += 1
m = result[p]
for i in result[2:p]:
# n_iter += 1
# print('n = ', n, ', i = ', i)
if n%i == 0:
primary = False
break
if primary:
result.append(n)
# if result[-1] > num:
# result = result[:-1]
# print('Total iterations: {}'.format(n_iter))
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_7(100000))')
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_7(1000000))')
# %%
get_ipython().run_cell_magic('time', '', 'for i in range(100000):\n p = i*i')
# %%
get_ipython().run_cell_magic('time', '', 'for i in range(100000):\n p = i**2')
# %%
print(pn_7(100))
# %%
def pn_7_test(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
# n_iter = 0
for q in range(7, num, 6):
for n in [q, q+4]:
if n>num:
break
primary = True
if m*m <= n:
p += 1
m = result[p]
for i in result[2:p]:
# n_iter += 1
# print('n = ', n, ', i = ', i)
if n%i == 0:
primary = False
break
if primary:
result.append(n)
# if result[-1] > num:
# result = result[:-1]
# print('Total iterations: {}'.format(n_iter))
return result
# %% [markdown]
# ### Avoid to calulation of m*m for every numbers, rather, store its result in a varaible for the comparison
# When num = 1M, the running time can be reduced slightly (lowest running time reduced from ~805ms to 790ms)
# %%
def pn_8(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
sq = 9
# n_iter = 0
for q in range(7, num, 6):
for n in [q, q+4]:
if n>num:
break
primary = True
if sq <= n:
p += 1
m = result[p]
sq = m*m
for i in result[2:p]:
# n_iter += 1
# print('n = ', n, ', i = ', i)
if n%i == 0:
primary = False
break
if primary:
result.append(n)
# if result[-1] > num:
# result = result[:-1]
# print('Total iterations: {}'.format(n_iter))
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_7_test(1000000))')
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_8(1000000))')
# %% [markdown]
# ### Removed number check, and only remove the last number when it is larger than the given number
# When num = 1M, the running time can be reduced slightly (lowest running time reduced from ~790ms to 780ms)
# %%
def pn_9(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
sq = 9
for q in range(7, num, 6):
for n in [q, q+4]:
primary = True
if sq <= n:
p += 1
m = result[p]
sq = m*m
for i in result[2:p]:
if n%i == 0:
primary = False
break
if primary:
result.append(n)
if result[-1] > num:
result.pop()
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_9(1000000))')
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_2(1000000))')
# %%
a = pn_9(100)
# %%
print(a)
a.pop()
print(a)
# %%
def pn_10(num = 1000):
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
sq = 9
f = 0
for q in range(7, num, 3):
n = q + f
# for n in [q, q+4]:
primary = True
f = 1 - f
# if f == 0:
# f = 1
# else:
# f = 0
if sq <= n:
p += 1
m = result[p]
sq = m*m
for i in result[2:p]:
if n%i == 0:
primary = False
break
if primary:
result.append(n)
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_9(2000000))')
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_10(2000000))')
# %%
for i in range(7, 100, 6):
for q in [i, i+4]:
print(q, end = ',')
# %%
r = 0
for i in range(7, 100, 3):
print(i+r, end = ',')
r = 1 - r
# 2 4 8 14
# 1 7 11 13
# 1 -3 -3 1
# %%
a = ((2,4,8,14), (1, 7, 11, 13))
f = 1
rlt = []
for i in range(0, 95, 15):
for b in a[f]:
if i + b > 1:
rlt.append(i + b)
f = 1 - f
while rlt[-1] > 95:
rlt.pop()
print(rlt)
# 2, 3, 5, 7, 11, 13
# %% [markdown]
# ### pre-removed multiplier of 5, reduced iterations by ~1%
# When num = 1M, the running time can be reduced slightly (lowest running time reduced from ~780ms to 770ms)
# %%
def pn_11(num = 1000):
# if type(num) is not int:
# raise Exception('The number must be integer!')
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
sq = 9
f = 1
seq = ((2, 4, 8, 14), (1, 7, 11, 13))
# i_iter = 0
for q in range(0, num, 15):
for s in seq[f]:
n = q + s
if n != 1 and n < num:
primary = True
if sq <= n:
p += 1
m = result[p]
sq = m*m
for i in result[2:p]:
# i_iter += 1
# print('n = ', n, 'i = ', i)
if n%i == 0:
primary = False
break
if primary:
result.append(n)
f = 1 - f
while result[-1] > num:
result.pop()
# print('Total iterations: ', i_iter)
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_11(100000))')
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_11(1000000))')
# %%
type(int(100.5)) is not int
# %%
int(100.5)
# %% [markdown]
# ### As all multipliers of 5 have been removed, no need to divide by 5, which reduced iterations down to 0.56M for 100K input
# %%
def pn_12(num = 1000):
# if type(num) is not int:
# raise Exception('The number must be integer!')
if num < 2:
return []
elif num == 2:
return [2]
elif num < 5:
return [2, 3]
result = [2, 3, 5]
p = 1
m = 3
sq = 9
f = 1
seq = ((2, 4, 8, 14), (1, 7, 11, 13))
# i_iter = 0
for q in range(0, num, 15):
for s in seq[f]:
n = q + s
if n != 1 and n < num:
primary = True
if sq <= n:
p += 1
m = result[p]
sq = m*m
for i in result[3:p]:
# i_iter += 1
# print('n = ', n, 'i = ', i)
if n%i == 0:
primary = False
break
if primary:
result.append(n)
f = 1 - f
# while result[-1] > num:
# result.pop()
# print('Total iterations: ', i_iter)
return result
# %%
get_ipython().run_cell_magic('time', '', 'len(pn_12(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_3(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_4(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_5(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_6(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_7(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_8(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_9(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_10(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_11(1000000))')
# %%
get_ipython().run_cell_magic('timeit', '', 'len(pn_12(1000000))')
# %%
print(pn_12(316))
# %%
len(pn_12(316))
# %%
for i in range(95,98):
print(len(pn_12(i)))