Factorial
0 | 1 |
1 | 1 |
2 | 2 |
3 | 6 |
4 | 24 |
5 | 120 |
6 | 720 |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
25 | |
50 | |
70 | |
100 | |
450 | |
googol| | 10 |
In mathematics, the factorial of a positive integer, denoted by, is the product of all positive integers less than or equal to :
For example,
The value of 0! is 1, according to the convention for an empty product.
The factorial operation is encountered in many areas of mathematics, notably in combinatorics, algebra, and mathematical analysis. Its most basic use counts the possible distinct sequences – the permutations – of distinct objects: there are.
The factorial function can also be extended to non-integer arguments while retaining its most important properties by defining, where is the gamma function; this is undefined when is a negative integer.
History
Factorials were used to count permutations at least as early as the 12th century, by Indian scholars. In 1677, Fabian Stedman described factorials as applied to change ringing, a musical art involving the ringing of many tuned bells. After describing a recursive approach, Stedman gives a statement of a factorial :The notation was introduced by the French mathematician Christian Kramp in 1808.
Definition
The factorial function is defined by the productfor integer. This may be written in pi product notation as
This leads to the recurrence relation
For example,
and so on.
Factorial of zero
The factorial of is, or in symbols,.There are several motivations for this definition:
- For, the definition of as a product involves the product of no numbers at all, and so is an example of the broader convention that the product of no factors is equal to the multiplicative identity.
- There is exactly one permutation of zero objects.
- It makes many identities in combinatorics valid for all applicable sizes. The number of ways to choose 0 elements from the empty set is given by the binomial coefficient
- It allows for the compact expression of many formulae, such as the exponential function, as a power series:
- It extends the recurrence relation to 0.
Applications
- There are different ways of arranging distinct objects into a sequence, the permutations of those objects.
- Often factorials appear in the denominator of a formula to account for the fact that ordering is to be ignored. A classical example is counting -combinations from a set with elements. One can obtain such a combination by choosing a -permutation: successively selecting and removing one element of the set, times, for a total of
- Factorials occur in algebra for various reasons, such as via the already mentioned coefficients of the binomial formula, or through averaging over permutations for symmetrization of certain operations.
- Factorials also turn up in calculus; for example, they occur in the denominators of the terms of Taylor's formula, where they are used as compensation terms due to the th derivative of being equivalent to.
- Factorials are also used extensively in probability theory and number theory.
- Factorials can be useful to facilitate expression manipulation. For instance the number of -permutations of can be written as
- The factorial function can be shown, using the power rule, to be
Rate of growth and approximations for large ''''
Most approximations for n! are based on approximating its natural logarithm
The graph of the function is shown in the figure on the right. It looks approximately linear for all reasonable values of, but this intuition is false. We get one of the simplest approximations for by bounding the sum with an integral from above and below as follows:
which gives us the estimate
Hence . This result plays a key role in the analysis of the computational complexity of sorting algorithms. From the bounds on deduced above we get that
It is sometimes practical to use weaker but simpler estimates. Using the above formula it is easily shown that for all we have, and for all we have.
For large we get a better estimate for the number using Stirling's approximation:
This in fact comes from an asymptotic series for the logarithm, and factorial lies between this and the next approximation:
Another approximation for is given by Srinivasa Ramanujan
Both this and Stirling's approximation give a relative error on the order of, but Ramanujan's is about four times more accurate. However, if we use two correction terms in a Stirling-type approximation, as with Ramanujan's approximation, the relative error will be of order :
Computation
If efficiency is not a concern, computing factorials is trivial from an algorithmic point of view: successively multiplying a variable initialized to 1 by the integers up to will compute, provided the result fits in the variable. In functional languages, the recursive definition is often implemented directly to illustrate recursive functions.The main practical difficulty in computing factorials is the size of the result. To assure that the exact result will fit for all legal values of even the smallest commonly used integral type would require more than 700 bits, so no reasonable specification of a factorial function using fixed-size types can avoid questions of overflow. The values 12! and 20! are the largest factorials that can be stored in, respectively, the 32-bit and 64-bit integers commonly used in personal computers, however many languages support variable length integer types capable of calculating very large values. Floating-point representation of an approximated result allows going a bit further, but this also remains quite limited by possible overflow. Most calculators use scientific notation with 2-digit decimal exponents, and the largest factorial that fits is then 69!, because. Other implementations can often handle larger values.
Most software applications will compute small factorials by direct multiplication or table lookup. Larger factorial values can be approximated using Stirling's formula. Wolfram Alpha can calculate exact results for the ceiling function and floor function applied to the binary, natural and common logarithm of for values of up to, and up to for the integers.
If the exact values of large factorials are needed, they can be computed using arbitrary-precision arithmetic. Instead of doing the sequential multiplications, a program can partition the sequence into two parts, whose products are roughly the same size, and multiply them using a divide-and-conquer method. This is often more efficient.
The asymptotically best efficiency is obtained by computing from its prime factorization. As documented by Peter Borwein, prime factorization allows to be computed in time, provided that a fast multiplication algorithm is used. Peter Luschny presents source code and benchmarks for several efficient factorial algorithms, with or without the use of a prime sieve.
Number theory
Factorials have many applications in number theory. In particular, is necessarily divisible by all prime numbers up to and including . As a consequence, is a composite number if and only ifA stronger result is Wilson's theorem, which states that
if and only if is prime.
Legendre's formula gives the multiplicity of the prime occurring in the prime factorization of as
or, equivalently,
where denotes the sum of the standard base- digits of.
Adding 1 to a factorial yields a number that is only divisible by primes that are larger than. This fact can be used to prove Euclid's theorem that the number of primes is infinite. Primes of the form are called factorial primes.
Series of reciprocals
The reciprocals of factorials produce a convergent series whose sum is the exponential base :Although the sum of this series is an irrational number, it is possible to multiply the factorials by positive integers to produce a convergent series with a rational sum:
The convergence of this series to 1 can be seen from the fact that its partial sums are less than one by an inverse factorial.
Therefore, the factorials do not form an irrationality sequence.
Factorial of non-integer values
The gamma and pi functions
Besides nonnegative integers, the factorial can also be defined for non-integer values, but this requires more advanced tools from mathematical analysis.One function that fills in the values of the factorial, that is often used, is called the gamma function, denoted. It is defined for all complex numbers except for the non-positive integers, and given when the real part of is positive by
Its relation to the factorial is that for every nonnegative integer.
Euler's original formula for the gamma function was
Carl Friedrich Gauss used the notation to denote the same function, but with argument shifted by 1, so that it agrees with the factorial for nonnegative integers. This pi function is defined by
The pi function and gamma function are related by the formula. Likewise, for any nonnegative integer.
In addition to this, the pi function satisfies the same recurrence as factorials do, but at every complex value where it is defined
This is no longer a recurrence relation but a functional equation. In terms of the gamma function, it is
The values of these functions at half-integer values is therefore determined by a single one of them:
from which it follows that for ,
For example,
It also follows that for ,
For example,
The pi function is certainly not the only way to extend factorials to a function defined at almost all complex values, and not even the only one that is analytic wherever it is defined. Nonetheless it is usually considered the most natural way to extend the values of the factorials to a complex function. For instance, the Bohr–Mollerup theorem states that the gamma function is the only function that takes the value 1 at 1, satisfies the functional equation, is meromorphic on the complex numbers, and is log-convex on the positive real axis. A similar statement holds for the pi function as well, using the functional equation.
However, there exist complex functions that are probably simpler in the sense of analytic function theory and which interpolate the factorial values. For example, Hadamard's 'gamma' function which, unlike the gamma function, is an entire function.
Euler also developed a convergent product approximation for the non-integer factorials, which can be seen to be equivalent to the formula for the gamma function above:
However, this formula does not provide a practical means of computing the pi function or the gamma function, as its rate of convergence is slow.
Applications of the gamma function
The volume of an -dimensional hypersphere of radius isFactorial in the complex plane
Representation through the gamma function allows evaluation of factorial of complex argument. Equilines of amplitude and phase of factorial are shown in figure. LetSeveral levels of constant modulus and constant phase are shown. The grid covers the range,, with unit steps. The scratched line shows the level.
Thin lines show intermediate levels of constant modulus and constant phase. At the poles at every negative integer, phase and amplitude are not defined. Equilines are dense in vicinity of singularities along negative integer values of the argument.
For, the Taylor expansions can be used:
The first coefficients of this expansion are
Approximation | ||
0 | 1 | 1 |
1 | ||
2 | ||
3 |
where is the Euler–Mascheroni constant and is the Riemann zeta function. Computer algebra systems such as SageMath can generate many terms of this expansion.
Approximations of the factorial
For the large values of the argument, the factorial can be approximated through the integral of the digamma function, using the continued fraction representation. This approach is due to T. J. Stieltjes. Writing where isStieltjes gave a continued fraction for :
The first few coefficients are
There is a misconception that or for any complex. Indeed, the relation through the logarithm is valid only for a specific range of values of in the vicinity of the real axis, where. The larger the real part of the argument, the smaller the imaginary part should be. However, the inverse relation,, is valid for the whole complex plane apart from. The convergence is poor in the vicinity of the negative part of the real axis; it is difficult to have good convergence of any approximation in the vicinity of the singularities. When or, the six coefficients above are sufficient for the evaluation of the factorial with complex double precision. For higher precision more coefficients can be computed by a rational QD scheme.
Non-extendability to negative integers
The relation allows one to compute the factorial for an integer given the factorial for a smaller integer. The relation can be inverted so that one can compute the factorial for an integer given the factorial for a larger integer:However, this recursion does not permit us to compute the factorial of a negative integer; use of the formula to compute ! would require a division of a nonzero value by zero, and thus blocks us from computing a factorial value for every negative integer. Similarly, the gamma function is not defined for zero or negative integers, though it is defined for all other complex numbers.
Factorial-like products and functions
There are several other integer sequences similar to the factorial that are used in mathematics:Double factorial
The product of all the odd integers up to some odd positive integer is called the double factorial of, and denoted by. That is,For example,.
The sequence of double factorials for starts as
Double factorial notation may be used to simplify the expression of certain trigonometric integrals, to provide an expression for the values of the gamma function at half-integer arguments and the volume of hyperspheres, and to solve many counting problems in combinatorics including counting binary trees with labeled leaves and perfect matchings in complete graphs.
Multifactorials
A common related notation is to use multiple exclamation points to denote a multifactorial, the product of integers in steps of two, three, or more. The double factorial is the most commonly used variant, but one can similarly define the triple factorial and so on. One can define the -tuple factorial, denoted by, recursively for positive integers asIn addition, similarly to, one can define:
For sufficiently large, the ordinary single factorial function is expanded through the multifactorial functions as follows:
In the same way that is not defined for negative integers, and is not defined for negative even integers, is not defined for negative integers divisible by.
Primorial
The primorial of a natural number , denoted, is similar to the factorial, but with the product taken only over the prime numbers less than or equal to. That is,where ranges over the prime numbers less than or equal to. For example, the primorial of 11 is
Superfactorial
and Simon Plouffe defined a superfactorial in The Encyclopedia of Integer Sequences to be the product of the first factorials. So the superfactorial of 4 isIn general
Equivalently, the superfactorial is given by the formula
which is the determinant of a Vandermonde matrix.
The superfactorials can be extended to all complex numbers with the Barnes G-function, such that for all positive integers. The sequence of superfactorials starts as
By this definition, we can define the -superfactorial of as:
The 2-superfactorials of are
The 0-superfactorial of is.
Pickover’s superfactorial
In his 1995 book Keys to Infinity, Clifford Pickover defined a different function that he called the superfactorial. It is defined byThis sequence of superfactorials starts
This operation may also be expressed as the tetration
or using Knuth's up-arrow notation as
Hyperfactorial
Occasionally the hyperfactorial of n is considered. It is written as and defined byFor the values of are 1, 4, 108,,....
The asymptotic growth rate is
where = 1.2824... is the Glaisher–Kinkelin constant. ≈ is already almost equal to a googol, and ≈ is almost of the same magnitude as the Shannon number, the theoretical number of possible chess games. Compared to the Pickover definition of the superfactorial, the hyperfactorial grows relatively slowly.
The hyperfactorial function can be generalized to complex numbers in a similar way as the factorial function. The resulting function is called the -function.