Tagged Questions
The factorisation tag has no wiki summary.
4
votes
4answers
296 views
RSA Factorization problem
At class we found this programming problem, and currently, we have no idea how to solve it.
The positive integer n is given. It is known that n = p * q, where p and q are primes, p<=q and ...
1
vote
2answers
741 views
Implementing a factorisation method in Haskell
I am doing question 266 at project euler and after a bit of searching, found this method of quickly finding the factors of a number. What you do is find all the permutations of the prime factors of a ...