Search

The Online Encyclopedia and Dictionary

 
     
 

Encyclopedia

Dictionary

Quotes

 

Factorial

In mathematics, the factorial of a natural number n is the product of the positive integers less than or equal to n. This is written as n! and pronounced "n factorial". The notation n! was introduced by Christian Kramp in 1808.

Since the exclamation mark, "!", is sometimes pronounced "bang" or "shriek", these words are occasionally used colloquially for "factorial" in pronouncing terms like n!.

Contents

Definition

The factorial function is formally defined by

n!=\prod_{k=1}^n k\qquad\mbox{for all }n \ge 0 \!

For example,

5! = 1 \times 2 \times 3 \times 4 \times 5 = 120

We have

0! = 1

because the product of no numbers at all is 1. This fact for factorials is useful, because

  • the recursive relation (n + 1)! = n! × (n + 1) works for n = 0;
  • this definition makes many identities in combinatorics valid for zero sizes.

The factorial function can also be defined (for non-integer in addition to the usual integer values of z), via the gamma function:

z!=\Gamma(z+1)=\int_{0}^{\infty} t^z e^{-t}\, dt \!

The latter representation points at a generalization of the notion of factorial for the set of complex numbers, with the exception of negative integers.

The sequence of factorials for n = 0, 1, 2,... starts:

1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800,...

Properties

All factorials are highly abundant numbers.

Applications

  • Factorials are important in combinatorics. For example, there are n! different ways of arranging n distinct objects in a sequence. (The arrangements are called permutations.) And the number of ways one can choose k objects from among a given set of n objects (the number of combinations), is given by the so-called binomial coefficient
{n\choose k}={n!\over k!(n-k)!}.
  • The volume of an n-dimensional hypersphere can be expressed as:
V_n={\pi^{n/2}R^n\over (n/2)!}

Note that the Gamma function is required for odd dimensions and that its value cancels out the apparent fractional power of π in those cases.

  • Factorials are often used as a simple example when teaching recursion in computer science because they satisfy the following recursive relationship (if n ≥ 1):
n! = n \times (n-1)! \,

Calculating factorials

The numeric value of n! can be calculated by repeated multiplication if n is not too large. That is basically what pocket calculators do. The largest factorial that most calculators can handle is 69!, because 70! > 10100.

When n is large, n! can be estimated quite accurately using Stirling's approximation:

n!\sim \sqrt{2\pi n}\left(\frac{n}{e}\right)^n

Here is a simple weak version that can be proved using secondary-school mathematics; the essential tool is mathematical induction:

\left({n \over 3}\right)^n < n! < \left({n \over 2}\right)^n\ \mbox{if}\ n\geq 6\,

Logarithm of the factorial

The logarithm of the factorial can be used to calculate the number of digits in a given base the factorial of a given number will take. log n! can easily be calculated as follows:

\sum_{k=1}^n{\log k}

Note that this function, if graphed, is approximately linear, for small values; but the factor {\log n!} \over n does grow arbitrarily large, although quite slowly. The graph of log(n!) for n between 0 and 20,000 is shown in the figure on the right.

A good approximation for log n! is to take the logarithm of Stirling's approximation:

\ln(n!) \approx n\ln(n) - n + \ln(n)/2 + \ln(2 \pi)/2

One can see from this that log(n!) is Ο(n log n). This result plays a key role in the analysis of the computational complexity of sorting algorithms.

Generalizations

The gamma function

The related gamma function Γ(z) is defined for all complex numbers z except for the nonpositive integers (z = 0, −1, −2, −3, ...). It is related to factorials in that it satisfies a recursive relationship similar to that of the factorial function:

n!=n(n-1)! \,
\Gamma(n+1)=n\Gamma(n) \,

Together with the definition Γ(1) = 1 this yields the equation

\Gamma(n+1)=n!\qquad\mbox{for all }n\in\mathbb{N},n \ge 1

Because of this relationship, the gamma function is often thought of as a generalization of the factorial function to the domain of complex numbers. This is justified for the following reasons.

  • Shared meaning—The canonical definition of the factorial function is the mentioned recursive relationship, shared by both.
  • Uniqueness—The gamma function is the only function which satisfies the mentioned recursive relationship for the domain of complex numbers and is holomorphic and whose restriction to the positive real axis is log-convex. That is, it is the only function that could possibly be a generalization of the factorial function.
  • Context—The gamma function is generally used in a context similar to that of the factorials (but, of course, where a more general domain is of interest).

Multifactorials

A common related notation is to use multiple exclamation points to denote a multifactorial, the product of integers in steps of two (n!!), three (n!!!), or more.

n!! denotes the double factorial of n and is defined recursively by

n!!= \left\{ \begin{matrix} 1,\qquad\quad\ &&\mbox{if }n=0\mbox{ or }n=1; \\ n(n-2)!!&&\mbox{if }n\ge2.\qquad\qquad \end{matrix} \right.

For example, 8!! = 2 · 4 · 6 · 8 = 384 and 9!! = 1 · 3 · 5 · 7 · 9 = 945. The sequence of double factorials (sequence A006882 in OEIS) for n = 0, 1, 2,... starts

1, 1, 2, 3, 8, 15, 48, 105, 384, 945, 3840, ...

Some identities involving double factorials are:

n!=n!!(n-1)!! \,
(2n)!!=2^nn! \,
(2n+1)!!={(2n+1)!\over(2n)!!}={(2n+1)!\over2^nn!}
\Gamma\left(n+{1\over2}\right)=\sqrt\pi{(2n-1)!!\over2^n}

One should be careful not to interpret n!! as the factorial of n!, which would be written (n!)! and is a much larger number (for n>2).

The double factorial is the most commonly used variant, but one can similarly define the triple factorial (n!!!) and so on. In general, the k-th factorial, denoted by n!(k), is defined recursively as

n!^{(k)}= \left\{ \begin{matrix} 1,\qquad\qquad\ &&\mbox{if }0\le n<k; \\ n(n-k)!^{(k)},&&\mbox{if }n\ge k.\quad\ \ \, \end{matrix} \right.

Hyperfactorials

Occasionally the hyperfactorial of n is considered. It is written as H(n) and defined by

H(n) =\prod_{k=1}^n k^k =1^1\cdot2^2\cdot3^3\cdots(n-1)^{n-1}\cdot n^n

For n = 1, 2, 3, 4,... the values of H(n) are 1, 4, 108, 27648,... (sequence A002109 in OEIS).

The hyperfactorial function is similar to the factorial, but produces larger numbers. The rate of growth of this function, however, is not much larger than a regular factorial.

Superfactorials

Neil Sloane and Simon Plouffe defined the superfactorial in 1995 as the product of the first n factorials. So the superfactorial of 4 is

\mathrm{sf}(4)=1! \times 2! \times 3! \times 4!=288 \,

In general

\mathrm{sf}(n) =\prod_{k=1}^n k! =\prod_{k=1}^n k^{n-k+1} =1^n\cdot2^{n-1}\cdot3^{n-2}\cdots(n-1)^2\cdot n^1.

The sequence of superfactorials starts (from n=0) as

1, 1, 2, 12, 288, 34560, 24883200, ... (sequence A000178 in OEIS)

This idea can easily be extended to the superduperfactorial as the product of the first n superfactorials, starting (from n=0) as

1, 1, 2, 24, 6912, 238878720, 5944066965504000, ... (sequence A055462 in OEIS)

and thus recursively to any multiple-level factorial where the mth-level factorial of n is the product of the first n (m-1)th-level factorials, i.e.

\mathrm{mf}(n,m) = \mathrm{mf}(n-1,m)\mathrm{mf}(n,m-1) =\prod_{k=1}^n k^{n-k+m-1 \choose n-k}

where mf(n,0) = n for n > 0 and mf(0,m) = 1.

Superfactorials (alternative definition)

Clifford Pickover in his 1995 book Keys to Infinity defined the superfactorial of n, written as n$ (the $ should really be a factorial sign ! with an S superimposed) as

n$\equiv \begin{matrix} \underbrace{ n!^{{n!}^{{\cdot}^{{\cdot}^{{\cdot}^{n!}}}}}} \\ n! \end{matrix} \,,

or as,

n$=n^{(4)}n \,

where the (4) notation denotes the hyper4 operator, or using Knuth's up-arrow notation,

n$=(n!)\uparrow\uparrow(n!) \,

This sequence of superfactorials starts:

1$=1 \,
2$=2^2=4 \,
3$=6\uparrow\uparrow6=6^{6^{6^{6^{6^6}}}} \!

Prime factorization of factorials

The power of p occurring in the prime factorization of n! is

\sum_{i=1}^{\infty} \lfloor n/p^i \rfloor

See also

External links

Last updated: 08-10-2005 11:30:54
The contents of this article are licensed from Wikipedia.org under the GNU Free Documentation License. How to see transparent copy