Derangement
A derangement is a permutation in which none of the objects appear in their "natural" (i.e., ordered) place. For example, the
only derangements of
are
and
, so
. Similarly,
the derangements of
are
,
,
,
,
,
,
,
, and
. Derangements
are permutations without fixed points (i.e., having no cycles of length one). The
derangements of a list of
elements can be computed in the Wolfram
Language using
Derangements[l_List] := With[
{perms = Permutations[l]},
{supp = PermutationSupport /@ perms},
Pick[perms, Length /@ supp, Length[l]]
]
The derangement problem was formulated by P. R. de Montmort in 1708, and solved by him in 1713 (de Montmort 1713-1714). Nicholas Bernoulli also solved
the problem using the inclusion-exclusion
principle (de Montmort 1713-1714, p. 301; Bhatnagar 1995, p. 8).
Derangements are also called rencontres numbers (named after rencontres solitaire) or complete permutations, and the number of derangements
on
elements is called
the subfactorial of
.
The function giving the number of distinct derangements on
elements is called
the subfactorial
and is equal
to
(Bhatnagar 1995, pp. 8-9), where
is the
incomplete gamma function, or
![!n=[(n!)/e],](/images/equations/Derangement/NumberedEquation1.gif) |
(3)
|
where
is the usual factorial
and
is the nearest
integer function.
As the number of objects increases, the probability
that none appears
in its correct position approaches
 |
(4)
|
(Wells 1986, p. 27). In fact, the probability is very close to
already even
for as few as four points.
The number of derangements
of length
satisfy the recurrence
relations
![d(n)=(n-1)[d(n-1)+d(n-2)]](/images/equations/Derangement/NumberedEquation3.gif) |
(5)
|
and
 |
(6)
|
with
and
(Skiena 1990,
p. 33). The first few are 0, 1, 2, 9, 44, 265, 1854, ... (OEIS A000166).
The recurrence can be solved exactly, although the sequence of
cannot be expressed
as a fixed number of hypergeometric terms
(Petkovšek et al. 1996, pp. 157-160; Koepf 1998, p. 159).
SEE ALSO: Married Couples Problem,
Partial Derangement,
Permutation,
Root,
Subfactorial
REFERENCES:
Aitken, A. C. Determinants
and Matrices. Westport, CT: Greenwood Pub., p. 135, 1983.
Ball, W. W. R. and Coxeter, H. S. M. Mathematical
Recreations and Essays, 13th ed. New York: Dover, pp. 46-47, 1987.
Bhatnagar, G. Inverse Relations, Generalized Bibasic Series, and their U(n) Extensions.
Ph.D. thesis. Ohio State University, 1995.
Comtet, L. "The 'Problème des Rencontres.' " §4.2 in Advanced
Combinatorics: The Art of Finite and Infinite Expansions, rev. enl. ed. Dordrecht,
Netherlands: Reidel, pp. 180-183, 1974.
Coolidge, J. L. An Introduction to Mathematical Probability. Oxford, England: Oxford University
Press, p. 24, 1925.
Courant, R. and Robbins, H. What Is Mathematics?: An Elementary Approach to Ideas and Methods, 2nd ed. Oxford,
England: Oxford University Press, pp. 115-116, 1996.
de Montmort, P. R. Essai d'analyse sur les jeux de hasard. Paris, 1708. Second edition published 1713-1714. Third edition reprinted in New York: Chelsea,
pp. 131-138, 1980.
Dickau, R. M. "Derangements." https://mathforum.org/advanced/robertd/derangements.html.
Durell, C. V. and Robson, A. Advanced
Algebra. London, p. 459, 1937.
Graham, R. L.; Knuth, D. E.; and Patashnik, O. Concrete Mathematics: A Foundation for Computer Science, 2nd ed. Reading, MA: Addison-Wesley,
1994.
Hassani, M. "Derangements and Applications." J. Integer Seq. 6,
No. 03.1.2, 1-8, 2003. https://www.math.uwaterloo.ca/JIS/VOL6/Hassani/hassani5.html.
Koepf, W. Hypergeometric Summation: An Algorithmic Approach to Summation and Special Function Identities.
Braunschweig, Germany: Vieweg, 1998.
Petkovšek, M.; Wilf, H. S.; and Zeilberger, D. A=B.
Wellesley, MA: A K Peters, 1996. https://www.cis.upenn.edu/~wilf/AeqB.html.
Roberts, F. S. Applied
Combinatorics. Englewood Cliffs, NJ: Prentice-Hall, 1984.
Ruskey, F. "Information on Derangements." https://www.theory.csc.uvic.ca/~cos/inf/perm/Derangements.html.
Skiena, S. "Derangements." §1.4.2 in Implementing Discrete Mathematics: Combinatorics and Graph Theory with Mathematica. Reading,
MA: Addison-Wesley, pp. 33-34, 1990.
Sloane, N. J. A. Sequence A000166/M1937
in "The On-Line Encyclopedia of Integer Sequences."
Stanley, R. P. Enumerative Combinatorics, Vol. 1. New York: Cambridge University Press, p. 67,
1986.
Vardi, I. Computational
Recreations in Mathematica. Reading, MA: Addison-Wesley, p. 123, 1991.
Wells, D. The Penguin Dictionary of Curious and Interesting Numbers. Middlesex, England:
Penguin Books, p. 27, 1986.
Referenced on Wolfram|Alpha:
Derangement
CITE THIS AS:
Weisstein, Eric W. "Derangement." From
MathWorld--A Wolfram Web Resource. https://mathworld.wolfram.com/Derangement.html