Forum: Factoring
2022-06-12, 22:58
|
Replies: 21
Views: 1,054
|
Forum: And now for something completely different
2022-06-01, 20:48
|
Replies: 184
Views: 11,547
|
Forum: And now for something completely different
2022-05-31, 13:51
|
Replies: 184
Views: 11,547
|
Forum: And now for something completely different
2022-05-29, 12:01
|
Replies: 184
Views: 11,547
|
Forum: And now for something completely different
2022-05-28, 21:24
|
Replies: 184
Views: 11,547
For those who has big guns.
I believe this...
For those who has big guns.
I believe this could be faster, for that runs where the current code spends a lot of time on trial division comparing to the the total running time [big N value with a...
|
Forum: And now for something completely different
2022-05-20, 15:34
|
Replies: 184
Views: 11,547
|
Forum: And now for something completely different
2022-05-19, 00:46
|
Replies: 184
Views: 11,547
|
Forum: And now for something completely different
2022-05-18, 22:38
|
Replies: 184
Views: 11,547
|
Forum: And now for something completely different
2022-05-18, 20:27
|
Replies: 184
Views: 11,547
On my oldish core i7 6700, I can only get this...
On my oldish core i7 6700, I can only get this quickly:
gerbicz@gerbicz-MS-7972:~/cmexp3/cm-0.4.1dev/src$ mpirun -np 4 ecpp-mpi -g -n '10^1000+453' -c -f cert-1000
MPI with 3 workers initialised,...
|
Forum: And now for something completely different
2022-05-18, 16:27
|
Replies: 184
Views: 11,547
It gives: ...
It gives:
root@gerbicz-MS-7972:/home/gerbicz/cmexp3/cm-0.4.1dev# mpirun --bind-to core ecpp-mpi
MPI with 0 workers initialised, of which 0 are local....
|
Forum: And now for something completely different
2022-05-18, 13:13
|
Replies: 184
Views: 11,547
Some progress, but now
"MPI with 0 workers...
Some progress, but now
"MPI with 0 workers initialised, of which 0 are local."
which is quite few, but surprisingly all 8 threads are running, but no screen/file output (after 20 minutes killed...
|
Forum: And now for something completely different
2022-05-17, 21:28
|
Replies: 184
Views: 11,547
|
Forum: And now for something completely different
2022-05-15, 17:13
|
Replies: 184
Views: 11,547
Yeah. One very "trivial" improvement would come...
Yeah. One very "trivial" improvement would come to call a faster prp routine, so not call the gmp's built-in mpz_probab_prime_p function. Maybe use pfgw, or directly using the gw library. Notice that...
|
Forum: Factoring
2022-04-20, 23:46
|
Replies: 30
Views: 1,865
False, another way is to show a 1<d<n divisor,...
False, another way is to show a 1<d<n divisor, say an algebraic divisor, and then (easily) prove that d or n/d is composite, then n is not semiprime. What is also a possible case in this sequence of...
|
Forum: Puzzles
2022-04-17, 20:33
|
Replies: 3
Views: 940
All non-negative integers are reachable! ...
All non-negative integers are reachable!
consider the following 9 ways of reductions, the first number is always the starter, then we show each following numbers in the routine:
8*N+1 -> 24*N+3 ->...
|
Forum: Dobri
2022-04-11, 15:47
|
Replies: 16
Views: 1,511
On quantum computer we already have the...
On quantum computer we already have the polynomial time factorization Shor's algorithm.
I'd say it is quite unlikely that the quad binary approach would be in polynomial time using quantum [because...
|
Forum: Dobri
2022-04-11, 15:09
|
Replies: 16
Views: 1,511
|
Forum: Miscellaneous Math
2022-04-10, 22:37
|
Replies: 14
Views: 1,325
|
Forum: GMP-ECM
2022-04-01, 16:17
|
Replies: 24
Views: 2,217
|
Forum: Lounge
2022-03-15, 18:58
|
Replies: 169
Views: 33,232
Recent video about William Shanks, who hold the...
Recent video about William Shanks, who hold the record computation of pi for almost a century: https://www.youtube.com/watch?v=DmfxIhmGPP4
And a follow up video to find the first 100 digits of pi by...
|
Forum: Puzzles
2022-02-23, 15:17
|
Replies: 13
Views: 1,880
|
Forum: Puzzles
2022-02-22, 16:09
|
Replies: 13
Views: 1,880
That is a very nice puzzle, complete solution...
That is a very nice puzzle, complete solution (with little maths):
Work mod 5, since there are 5 different things that Penn and Teller can choose, say they have chosen x on the left and y on the...
|
Forum: Puzzles
2022-02-21, 12:41
|
Replies: 14
Views: 1,318
Hm, it is even faster:
static inline bool...
Hm, it is even faster:
static inline bool issquare(uint64_t x)
{
uint64_t sqr = 0.5+sqrt(x);
return sqr * sqr == x;
}
and gives correct answer for the full [0,2^64) range (for the same...
|
Forum: Puzzles
2022-02-20, 21:13
|
Replies: 14
Views: 1,318
It is easier:
uint64_t sqr = sqrtl(x);
return...
It is easier:
uint64_t sqr = sqrtl(x);
return sqr * sqr == x;
if you call it for 64 bits number, so 0<=x<2^64, then 0<=sqr<2^32, so it couldn't report a nonsquare number as a square, because in...
|
Forum: Puzzles
2022-02-20, 20:57
|
Replies: 14
Views: 1,318
Using one core that is true, and it is almost...
Using one core that is true, and it is almost true for many cores/threads, because we're testing res values in increasing order, just check a%M values.
Good question, but it seems that the...
|