HaskellForMaths-0.4.1: Combinatorics, group theory, commutative algebra, non-commutative algebra

Math.NumberTheory.Prime

Synopsis

Documentation

primes :: [Integer]Source

A (lazy) list of the primes

isPrime :: Integer -> BoolSource

Is this number prime? The algorithm consists of using trial division to test for very small factors, followed if necessary by the Miller-Rabin probabilistic test.

prevPrime :: Integer -> IntegerSource

Given n, prevPrime n returns the greatest p, p < n, such that p is prime

nextPrime :: Integer -> IntegerSource

Given n, nextPrime n returns the least p, p > n, such that p is prime