In [0]:
 

Section 1.4 Primes, Unique Factorisation and Finite Fields 

We want to work with big primes. Here are some functions we will need.

In [0]:
is_prime(651)
In [0]:
next_prime(651)
In [0]:
random_prime(10000)
In [0]:
factor(3615557496)
In [0]: