Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
4answers
603 views

How does being able to factor large numbers determine the security of popular encryption algorithms?

How is the an encryption algorithm's security dependent on factoring large numbers? For example, I've read on some math-programming forums that by using the Quadratic Sieve or the General Number ...
2
votes
2answers
81 views

ANTLR: resolving non-LL(*) problems

assume following rules in EBNF: <datum> --> <simple datum> | <compound datum> <simple datum> --> <boolean> | <number> | <character> | ...
2
votes
1answer
101 views

How can I factor out repeated expressions in an SQL Query? Column aliases don't seem to be the ticket

So, I've got a query that looks something like this: SELECT id, DATE_FORMAT(CONVERT_TZ(callTime,'+0:00','-7:00'),'%b %d %Y') as callDate, ...
2
votes
20answers
4k views

Prime factor of 300 000 000 000?

I need to find out the prime factors of over 300 billion. I have a function that is adding to the list of them...very slowly! It has been running for about an hour now and i think its got a fair ...
1
vote
1answer
109 views

Automatic integer factoring for 310-digit decimal numbers

Is here some software, which is capable of factoring a 310-digit decimal integer number into primes? There was msieve, which I successfully used for 120-digit factoring, but 310 digit is greater than ...
1
vote
3answers
220 views

non-prime factorings with some repeats

Let's say we have numbers factors, for example 1260: >>> factors(1260) [2, 2, 3, 3, 5, 7] Which would be best way to do in Python combinations with every subproduct possible from these ...
0
votes
1answer
58 views

Java Concurrent Dixon's Algorithm

I have endeavored to concurrently implement Dixon's algorithm, with poor results. For small numbers <~40 bits, it operates in about twice the time as other implementations in my class, and after ...