Number Theory - 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

The NumberTheory package updates and replaces the numtheory package. There are several new applications and examples that use the new NumberTheory commands and, in addition, many commands have been added to the context menu.

 

(1)

 

MathApps


Sieve of Eratosthenes


abc Conjecture


Collatz Conjecture


Fibonacci Numbers


Goldbach's Conjecture


Pascal's Triangle


GCD and Euclid's Algorithm


Euler's Identity


The Juggler Sequence


The 196 Algorithm

 

Many NumberTheory commands are available in the right-click context menu. For example, fractions can be shown as either a RepeatingDecimal or a ContinuedFraction:

 

Repeated Decimal

1. 

Enter a fraction. For example, enter 3/7.

2. 

Right-click (Control-click for Macintosh) the fraction, and then select Show as Repeating Decimal.

Continued Fraction

1. 

Enter a fraction. For example, enter 3/7.

2. 

Right-click (Control-click for Macintosh) the fraction, and then select Show as Continued Fraction.

 

 

Examples: Prime Numbers

Examples: Arithmetic Functions

Examples: Calkin-Wilf Tree

Examples: Prime Numbers

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

(1.1)

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

(1.2)

(1.3)

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

(1.4)

(1.5)

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

(1.6)


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

(1.7)

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

(1.8)

The NumberOfPrimeFactors command returns the number of Prime Factors of an integer, counted with multiplicity:

(1.9)

The top level nextprime (or prevprime) commands return the next (or previous) prime number after (or before) the given integer:

(1.10)

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

(1.11)

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

(1.12)

(1.13)

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:

(1.14)

(1.15)

(1.16)

Mersenne Primes

Mersenne Primes are prime numbers that are one less than a power of 2. These are numbers of the form:

, where n is a positive integer.

The IthMersenne(i) command returns the exponent for the ith Mersenne prime number:

(1.1.1)

(1.1.2)

(1.1.3)

The nextprime command returns the next prime number after the current value.

(1.1.4)

The IsMersenne(n) command checks if a positive integer, n, is a Mersenne exponent such that  is a Mersenne prime:

(1.1.5)

(1.1.6)

(1.1.7)

(1.1.8)

(1.1.9)

Examples: Arithmetic Functions

Euler's Totient Function

Euler's totient function is an arithmetic function that counts the positive integers less than or equal to a given value  that are coprime to . For a positive integer , another number  is said to be coprime, or relatively prime, if the greatest common divisor . For example, 14 and 15 are coprime because the gcd of 14 and 15 is 1, but 14 and 21 are not coprime since their gcd is 7.

 

Euler's totient function is also known as Euler's phi function, denoted as  or .  As such, phi(n) and varphi(n) are aliases for the Totient command.

(2.1.1)

To visualize the first thousand values for :

The PrimeCounting(n) (or pi(n)) command returns the number of primes less than an integer n. The following plot compares pi(n) with phi(n) for the first 40 values for n:

Möbius function

The Möbius function is defined as a multiplicative arithmetic function, , where:

• 

 when r is a square-free positive integer with an even number of prime factors

• 

 when r is a square-free positive integer with an odd number of prime factors

• 

 when r has a squared prime factor

For example,  because 2 is a square-free positive integer which has 1 prime factor.  since 4 is not a square-free positive integer.

The first 75 values for the Möbius function are plotted below:

Examples: Calkin-Wilf Tree

The vertices of the Calkin-Wilf tree are labeled with rational numbers . The root vertex is defined to be  and for any vertex , its children are  and . Every positive rational number occurs exactly once in the Calkin-Wilf tree.

The first 16 terms of the Calkin-Wilf sequence are:

(3.1)

The Calkin-Wilf tree can be created using the GraphTheory package:

n = 15

n = 31

 


Download Help Document