Permutation: Difference between revisions
m Reverted 1 edit by 68.100.8.26 identified as vandalism to last revision by Geekygator. using TW |
removed vendor specific text in the spreadsheet and calculator sections, moved further reading above see also, added references section |
||
Line 113: | Line 113: | ||
* <tt>s[n]</tt> denotes the ''n''th element of list ''s'' (''s'' is not zero-based). |
* <tt>s[n]</tt> denotes the ''n''th element of list ''s'' (''s'' is not zero-based). |
||
== Built-in calculator functions for calculating the number of permutations == |
|||
==How to use with a calculator== |
|||
Most [[calculator]]s have a built-in function for calculating the number of permutations, called nPr or PERM on many. The permutations function is often only available through several layers of menus; how to access the function is usually indicated in the documentation for calculators that support it. |
|||
Most [[calculator]]s have an nPr key. In most advanced desktop calculators, however, the key is hidden. Example: in [[TI-83]], press MATH, left once (or right three times), and press 2 (nPr). For [[Casio]] [[graphing calculator]]s, press OPTN, right once (F6), PROB (F3), nPr (F2). |
|||
== Calculating the number of permutations using spreadsheet software == |
|||
==Using spreadsheets== |
|||
Most spreadsheet software also provides a built-in function for calculating the number of permutations, called PERMUT in most popular spreadsheets<-- this is true for excel and ooo calc-->. [[Apple Inc.|Apple's]] [[Numbers (software)|Numbers]] software notably does not currently include such a function<ref>{{cite web|url=http://curmi.com/blog/wp-content/uploads/2007/08/functions-in-excel-and-numbers.pdf|title=Summary of Functions in Excel and Numbers|accessdate=2007-10-19|format=PDF|date=2007-08-26|last=Curmi|first=Jamie}}</ref>. |
|||
In most [[spreadsheet]]s a [[Function (mathematics)|function]] PERMUT(''number'',''number chosen'') allows calculation of permutations. ''Number'' is an integer that describes the number of objects. ''Number chosen'' is an integer that describes the number of objects in each permutation. |
|||
== |
== Further reading == |
||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
== See also == |
|||
{{MultiCol}} |
{{MultiCol}} |
||
*[[Binomial coefficient]] |
*[[Binomial coefficient]] |
||
Line 146: | Line 152: | ||
{{EndMultiCol}} |
{{EndMultiCol}} |
||
== |
== References == |
||
⚫ | |||
</references> |
|||
⚫ | |||
⚫ | |||
⚫ | |||
==External links== |
== External links == |
||
*[http://www.plainmath.net/index.php?page=permutations A review of permutations from plainmath.net] |
*[http://www.plainmath.net/index.php?page=permutations A review of permutations from plainmath.net] |
||
*[http://mathforum.org/library/drmath/sets/high_perms_combs.html Many Common types of permutation and combination math problems, with detailed solutions] |
*[http://mathforum.org/library/drmath/sets/high_perms_combs.html Many Common types of permutation and combination math problems, with detailed solutions] |
Revision as of 03:02, 20 October 2007
Permutation is the rearrangement of objects or symbols into distinguishable sequences. Each unique ordering is called a permutation. (For cases wherein the ordering of elements is irrelevant, compare combination and set.) For example, with the numerals one to six, each possible ordering consists of a complete list of the numerals, without repetitions. There are 720 total permutations of these numerals, one of which is: "4, 5, 6, 1, 2, 3".
The general concept of permutation can be defined more formally in different contexts:
- In set theory, a permutation is an ordered sequence containing each symbol from a set once, and only once. Neither "1, 2, 2, 3, 4, 5, 6" nor "1, 2, 4, 5, 6" are permutations of the sequence "1, 2, 3, 4, 5, 6". A permutation is distinct from a set or combination, in that the ordering of elements in a set is not considered relevant for sets or combinations. In other words, the set-theoretic definition of permutation is that of a one-to-one correspondence, or bijection, of labeled elements with "positions" or "places" which are arranged in a straight line.
- In abstract algebra and related areas, the elements of permutation may not be arranged in a linear order, or indeed in any order at all. Under this refined definition, a permutation is a bijection from a finite set, X, onto itself. This allows for the definition of groups of permutations; see permutation group.
- In combinatorics, the term permutation also has a traditional meaning which includes ordered lists without repetition and where one or more elements from the list are omitted from the distinguishable orderings; for example, a permutation of "1,2,4,3" with "5" and "6" omitted.
Counting permutations
In this section only, the traditional definition is used: a permutation is an ordered list without repetitions, perhaps missing some (n−r) elements. The number of permutations of a sequence is:
where:
- r is the size of each permutation,
- n is the size of the set from which elements are permuted, and
- ! is the factorial operator.
For example, if we have a total of 10 elements, the integers {1, 2 .. 10}, one sequence of three elements from this set would be (5, 3, 4). In this case, n = 10 and r = 3. To find out how many unique sequences we can find, we need to calculate P(10,3) = 10! / (10−3)! = (1×2×3×4×5×6×7×8×9×10) / (1×2×3×4×5×6×7) = 8×9×10 = 720
In the case only where n = r then the formula above as in pure mathematics simplifies to:
The reason why 0! (zero factorial) is 1, is because in set theory an empty set can only be ordered one way, so 0! = 1. If n = 0 then there is also one unique sequence.
In the example given in the header of this article, with 6 integers {1..6}, this would be: P(6,6) = 6! / (6−6)! = (1×2×3×4×5×6×) / 0! = 720 / 1 = 720.
If n > 1 and r > 1, each permutations element order becomes significant. For example the permutations of 3 elements in the set {1, 2, 3} taken in sequence lengths of 2 is:
(1,2), (1,3), (2,1), (2,3), (3,1) and (3,2). 6 permutations for sequence lengths of 2
This should not be confused with combination where the order of the elements is not taken into account and the above elements in the same set combine into just the 3 combinations for the same lengths:
(1,2), (1,3) and (2,3). 3 combinations for collection lengths of 2
Other, older notations include nPr, Pn,r, or nPr. A common modern notation is (n)r which is called a falling factorial. However, the same notation is used for the rising factorial (also called Pochhammer symbol)
- n(n + 1)(n + 2)⋯(n + r − 1)r.
With the rising factorial notation, the number of permutations is (n − r + 1)r.
Abstract algebra
As explained in a previous section, in abstract algebra and other mathematical fields, the term permutation (of a set) is now reserved for a bijective map (bijection) from a finite set onto itself. The earlier example, of making permutations out of numbers 1 to 10, would be translated as a map from the set {1, …, 10} to itself.
Notation
There are two main notations for such permutations. In relation notation, one can just arrange the "natural" ordering of the elements being permuted on a row, and the new ordering on another row:
stands for the permutation s of the set {1,2,3,4,5} defined by s(1)=2, s(2)=5, s(3)=4, s(4)=3, s(5)=1.
If we have a finite set E of n elements, it is by definition in bijection with the set {1,…,n}, where this bijection f corresponds just to numbering the elements. Once they are numbered, we can identify the permutations of the set E with permutations of the set {1,…,n}. (In more mathematical terms, the function that maps a permutation s of E to the permutation f o s o f−1 of {1,…,n} is a morphism from the symmetric group of E into that of {1,…,n}, see below.)
Alternatively, we can write the permutation in terms of how the elements change when the permutation is successively applied. This is referred to as the permutation's decomposition in a product of disjoint cycles. It works as follows: starting from one element x, we write the sequence (x s(x) s2(x) …) until we get back the starting element (at which point we close the parenthesis without writing it for a second time). This is called the cycle associated to x's orbit following s. Then we take an element we did not write yet and do the same thing, until we have considered all elements. In the above example, we get: s = (1 2 5) (3 4).
Each cycle (x1 x2 … xL) stands for the permutation that maps xi on xi+1 (i=1…L−1) and xL on x1, and leaves all other elements invariant. L is called the length of the cycle. Since these cycles have by construction disjoint supports (i.e. they act non-trivially on disjoint subsets of E), they do commute (for example, (1 2 5) (3 4) = (3 4)(1 2 5)). The order of the cycles in the (composition) product does not matter, while the order of the elements in each cycles does matter (up to cyclic change; see also cycles and fixed points).
Obviously, a 1-cycle (cycle of length 1) is the same as fixing the element contained in it, so there is no use in writing it explicitly. Some authors' definition of a cycle do not include cycles of length 1.
Cycles of length two are called transpositions; such permutations merely exchange ("the place of") two elements. (Conversely, a matrix transposition is itself an important example of a permutation.)
Special permutations
If we think of a permutation that "changes" the position of the first element to the first element, the second to the second, and so on, we really have not changed the positions of the elements at all. Because of its action, we describe it as the identity permutation because it acts as an identity function. Conversely, a permutation which changes the position of all elements (no element is mapped to itself) is called a derangement.
If one has some permutation, called P, one may describe a permutation, written P−1, which undoes the action of applying P. In essence, performing P then P−1 is equivalent to performing the identity permutation. One always has such a permutation since a permutation is a bijective map. Such a permutation is called the inverse permutation. It is computed by exchanging each number and the number of the place which it occupies.
One can define the product of two permutations. If we have two permutations, P and Q, the action of performing P and Q will be the same as performing some other permutation, R, itself. Note that R could be P or Q. The product of P and Q is defined to be the permutation R. For more, see symmetric group and permutation group.
An even permutation is a permutation which can be expressed as the product of an even number of transpositions, and the identity permutation is an even permutation as it equals (1 2)(1 2). An odd permutation is a permutation which can be expressed as the product of an odd number of transpositions. It can be shown that every permutation is either odd or even and can't be both.
One theorem regarding the inverse permutation is the effect of a conjugation of a permutation by a permutation in a permutation group. If we have a permutation Q=(i1 i2 … in) and a permutation P, then PQP−1 = (P(i1) P(i2) … P(in)).
We can also represent a permutation in matrix form; the resulting matrix is known as a permutation matrix.
Permutations in computing
Some of the older textbooks look at permutations as assignments, as mentioned above. In computer science terms, these are assignment operations, with values
- 1, 2, …, n
assigned to variables
- x1, x2, …, xn.
Each value should be assigned only once.
The assignment/substitution difference is then illustrative of one way in which functional programming and imperative programming differ — pure functional programming has no assignment mechanism. The mathematics convention is nowadays that permutations are just functions and the operation on them is function composition; functional programmers follow this. In the assignment language a substitution is an instruction to switch round the values assigned, simultaneously; a well-known problem.
Numbering permutations
Factoradic numbers can be used to assign unique numbers to permutations, such that given a factoradic of k one can quickly find the corresponding permutation.
Algorithm to generate permutations
For every number k, with 0 ≤ k < n!, the following algorithm generates the corresponding permutation of the initial sequence sj, j=1…n:
function permutation(k, s) { var int factorial:= 1; for j= 2 to length(s) { factorial:= factorial* (j-1); // factorial= (j-1)! swap s[j- ((k / factorial) mod j)] with s[j]; } return s; }
Notation
- k / j denotes integer division of k by j, i.e. the integral quotient without any remainder, and
- k mod j is the remainder following integer division of k by j.
- s[n] denotes the nth element of list s (s is not zero-based).
Built-in calculator functions for calculating the number of permutations
Most calculators have a built-in function for calculating the number of permutations, called nPr or PERM on many. The permutations function is often only available through several layers of menus; how to access the function is usually indicated in the documentation for calculators that support it.
Calculating the number of permutations using spreadsheet software
Most spreadsheet software also provides a built-in function for calculating the number of permutations, called PERMUT in most popular spreadsheets<-- this is true for excel and ooo calc-->. Apple's Numbers software notably does not currently include such a function[1].
Further reading
- Miklos Bona. "Combinatorics of Permutations", Chapman Hall-CRC, 2004. ISBN 1-58488-434-7.
- Donald Knuth. The Art of Computer Programming, Volume 4: Generating All Tuples and Permutations, Fascicle 2, first printing. Addison-Wesley, 2005. ISBN 0-201-85393-0.
- Donald Knuth. The Art of Computer Programming, Volume 3: Sorting and Searching, Second Edition. Addison-Wesley, 1998. ISBN 0-201-89685-0. Section 5.1: Combinatorial Properties of Permutations, pp.11–72.
See also
| class="col-break " |
- Even and odd permutations
- Factoradic
- Superpattern
- Josephus permutation
- List of permutation topics
- Levi-Civita symbol
- Permutation group
- Probability
| class="col-break " |
- Random permutation
- Rencontres numbers
- Sorting network
- Substitution cipher
- Symmetric group
- Twelvefold way
- Weak order of permutations
References
</references>
External links
- A review of permutations from plainmath.net
- Many Common types of permutation and combination math problems, with detailed solutions
- Permutations and Puzzles on Graphs
- Free Permutation/Combination/Factorial Calculator (with source code)
- ^ Curmi, Jamie (2007-08-26). "Summary of Functions in Excel and Numbers" (PDF). Retrieved 2007-10-19.