numtheory(deprecated)
phi
totient function
invphi
inverse of totient function
Calling Sequence
Parameters
Description
Examples
phi(n)
invphi(n)
n
-
integer
Important: The numtheory package has been deprecated. Use the superseding commands NumberTheory[Totient] and NumberTheory[InverseTotient] instead.
The phi(n) calling sequence computes Euler's totient function of n, which is the number of positive integers not exceeding n and relatively prime to n.
The invphi(n) calling sequence returns a list of increasing integers [m1, m2, ..., mk] such that phi(mi) = n for i from 1 to k.
These functions are part of the numtheory package, and so can be used in the form phi(..) only after performing the command with(numtheory) or with(numtheory,phi) (and similarly for invphi). The functions can always be accessed in the long form numtheory[phi](..) or numtheory[invphi](..).
with⁡numtheory:
φ⁡6
2
invphi⁡
3,4,6
φ⁡15
8
15,16,20,24,30
map⁡φ,
8,8,8,8,8
invphi⁡15
See Also
igcd
NumberTheory[InverseTotient]
NumberTheory[Totient]
numtheory(deprecated)[lambda]
numtheory(deprecated)[order]
Download Help Document