In ML i want to get the prime divisors of a number. How can I do this, I am beginner.
|
|
Using the simple trial division, this starts with
|
||
|
|
|
|
There are several general algorithms for finding the prime divisors of an integer: see wikipedia. Trial division with a simple primality test is simplest to understand. Find or devise an algorithm in pseudocode; only then worry about how to put it into ML. |
||
|
|
