Prime Numbers - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Number Theory: Prime Numbers

Getting Started

While any command in the package can be referred to using the long form, for example, NumberTheory:-Divisors, it is often easier to load the package and then use the short form command names.

restart;

with(NumberTheory):

Examples

A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. The top-level ithprime command returns the ith prime. For example, the first ten primes are given by the following sequence:

(1)

The top-level isprime command determines if a given number is prime:

(2)

(3)

The Divisors command can verify that a number is prime. If the divisors of a given integer are only 1 and itself, the number is prime.

(4)

(5)

The SumOfDivisors command returns the sum of the divisors of an integer:

(6)

The top-level ifactor command gives the integer factorization of an integer:

(7)

The PrimeFactors command returns a list of factors for a given integer that are primes without multiplicity:

(8)

The NumberOfPrimeFactors command returns the number of prime factors of an integer, counted with multiplicity:

(9)

The Radical command returns the product of the prime divisors of an integer:

(10)

The top-level nextprime (or prevprime) command returns the next (or previous) prime numbers after (or before) the given integer:

(11)

The PrimeCounting command returns the number of primes less than a given integer:

(12)

Two integers are relatively prime (coprime) if the greatest common divisor of the values is 1. The AreCoprime command tests if a sequence of integers or Gaussian integers are coprime:

(13)

(14)

The following plot shows the coprimes for the integers 1 to 15:

An integer is called square-free if it is not divisible by the square of another number other than 1. All prime numbers are square-free:

(15)

(16)

(17)

See Also

NumberTheory


Download Help Document