Iterator
Permute
generate permutations of a list
Calling Sequence
Parameters
Options
Description
Examples
References
Compatibility
Permute(L, r, opts)
L
-
{nonnegint,range(integer),list}; specifies elements to permute
r
nonnegint; (optional) size of permutations
opts
(optional) equation(s) of the form option = value; specify options for the Permute command
compile = truefalse
True means compile the iterator. The default is true.
plain = truefalse
True selects an algorithm that interchanges adjacent pairs of elements between each step. Can only be used with full permutations of lists of distinct elements. The default is false.
rank = nonnegint
Specify the starting rank of the iterator. The default is one. Passing a value greater than one causes the iterator to skip the lower ranks; this can be useful when parallelizing iterators. The starting rank reverts to one when the iterator is reset, reused, or copied.
The Permute command returns an iterator that generates all permutations of the specified elements. The elements do not have to be distinct. A permutation of a list consists of all distinct arrangements of its elements.
The L parameter specifies the elements to permute. It may be
a list; if it contains any elements that are not of type integer[4], a transformation is used to map the permutation to the elements of L. Consequently, the iteration is somewhat slower.
a nonnegative integer; the permuted list is the integers from 1 to L; 0 is equivalent to the empty list.
a range of integers; the permuted list is integers in that range.
The optional r parameter specifies the size of the permutations. The default is to permute the full list.
Methods
In addition to the common iterator methods, this iterator object has the following methods. The self parameter is the iterator object.
Number(self): return the number of iterations required to step through the iterator, assuming it started at rank one.
Rank(self,L): return the rank of the current iteration. Optionally pass L, a list or one-dimensional rtable, and return its rank.
Unrank(self,rnk): return a one-dimensional Array corresponding to the iterator output with rank rnk.
with⁡Iterator:
Create an iterator that generates all permutations of the integers 1 to 4.
P≔Permute⁡4:
Print⁡P,showrank:
1: 1 2 3 4 2: 1 2 4 3 3: 1 3 2 4 4: 1 3 4 2 5: 1 4 2 3 6: 1 4 3 2 7: 2 1 3 4 8: 2 1 4 3 9: 2 3 1 4 10: 2 3 4 1 11: 2 4 1 3 12: 2 4 3 1 13: 3 1 2 4 14: 3 1 4 2 15: 3 2 1 4 16: 3 2 4 1 17: 3 4 1 2 18: 3 4 2 1 19: 4 1 2 3 20: 4 1 3 2 21: 4 2 1 3 22: 4 2 3 1 23: 4 3 1 2 24: 4 3 2 1
Compute the number of iterations.
Number⁡P
24
Generate all permutations of three elements from a list with a repeated element.
P≔Permute⁡a,b,b,c,3:
1: a b b 2: a b c 3: a c b 4: b a b 5: b a c 6: b b a 7: b b c 8: b c a 9: b c b 10: c a b 11: c b a 12: c b b
Alphametics
An alphametic is a puzzle in which the user is given an arithmetic equation, with characters substituted for the digits. The goal is to determine the digits which satisfy the equation. The usual alphametic is a summation, or linear combination of words, however, a more general alphametic allows multiplication.
A brute-force solution of base-10 alphametics can be achieved in several seconds by iterating through all 10! permutations of the digits. Here is a procedure, written as an appliable module, that uses the Permute constructor to do that.
alphametic := module() export ModuleApply; local SymbolToAlg; ModuleApply := proc(eq :: string , base :: posint := 10 , { compile :: truefalse := true } , $ ) local chars , ex,i,n,vars,x,pred,iter , p ; uses ST=StringTools; # Parse the input string and convert an equation to an expression. ex := parse(eq); ex := ifelse(ex :: equation , (lhs-rhs)(ex) , ex ); # Extract the symbols (names). vars := indets(ex,symbol); # Convert each symbol in ex to an algebraic equivalent # in terms of the characters in the symbol. ex := subs([seq(x = SymbolToAlg(x,base), x=vars)],ex); # Assign vars the characters in ex vars := indets(ex,symbol); n := numelems(vars); if n > base then error "too many characters (%1) for base %2", n, base; end if; # Convert characters to indexed names of V ex := subs([seq(vars[i]='V'[i],i=1..n)],ex); ex := expand(ex); # Assign a predicate that returns true if the permutation # evaluates ex to 0 (evalb does not work in Compiler:-Compile). pred := subs('_ex'=ex, proc(V :: Array(datatype=integer[4])) local ex := _ex; if ex=0 then return true; else return false; end if; end proc ); # Optionally compile the predicate if compile then pred := Compiler:-Compile(pred); end if; # Construct an iterator to iterate over all permutations. iter := Iterator:-Permute(0..(base-1),n , _options['compile'] ); # Find solutions and format as equations. vars := map(convert,vars,string); chars := ST:-Explode(eq); seq(ifelse(pred(p) , ST:-Join(subs([seq(vars[i]=convert(p[i],string), i = 1..n)] , chars) ,"") , NULL) , p=iter ); end proc: # Convert a symbol into a multinomial # over the characters of the symbol. SymbolToAlg := proc(symb,base::posint:=10) local val,char; val := 0; for char in convert(symb,string) do val := base*val+cat(``,char); end do; val; end proc: end module:
Solve the alphametic: maple*sim = modelica + model:
alphametic⁡maple*sim = modelica + model
16540*781 = 12904836 + 12904
Knuth, Donald Ervin. The Art of Computer Programming, volume 4, fascicle 2; generating all tuples and permutations, sec. 7.2.1.2, generating all permutations, pp. 39-44.
ibid, Algorithm L, lexicographic permutation generation, p. 39.
ibid, Algorithm T, plain change transitions, p. 43.
ibid, Algorithm R, answer 9, p. 102.
The Iterator[Permute] command was introduced in Maple 2016.
For more information on Maple 2016 changes, see Updates in Maple 2016.
The Iterator[Permute] command was updated in Maple 2022.
The L and r parameters were updated in Maple 2022.
See Also
combinat[permute]
Download Help Document