]> gitweb.factorcode.org Git - factor.git/blob - basis/math/combinatorics/combinatorics-docs.factor
f34f537cf02f1ab67da8bc5476b5df88fb8d8bd2
[factor.git] / basis / math / combinatorics / combinatorics-docs.factor
1 USING: help.markup help.syntax kernel math math.combinatorics
2 math.combinatorics.private math.order sequences ;
3
4 HELP: factorial
5 { $values { "n" "a non-negative integer" } { "n!" integer } }
6 { $description "Outputs the product of all positive integers less than or equal to " { $snippet "n" } "." }
7 { $examples
8     { $example "USING: math.combinatorics prettyprint ;"
9         "4 factorial ." "24" }
10 } ;
11
12 HELP: nPk
13 { $values { "n" "a non-negative integer" } { "k" "a non-negative integer" } { "nPk" integer } }
14 { $description "Outputs the total number of unique permutations of size " { $snippet "k" } " (order does matter) that can be taken from a set of size " { $snippet "n" } "." }
15 { $examples
16     { $example "USING: math.combinatorics prettyprint ;"
17         "10 4 nPk ." "5040" }
18 } ;
19
20 HELP: nCk
21 { $values { "n" "a non-negative integer" } { "k" "a non-negative integer" } { "nCk" integer } }
22 { $description "Outputs the total number of unique combinations of size " { $snippet "k" } " (order does not matter) that can be taken from a set of size " { $snippet "n" } ". Commonly written as \"n choose k\"." }
23 { $examples
24     { $example "USING: math.combinatorics prettyprint ;"
25         "10 4 nCk ." "210" }
26 } ;
27
28 HELP: permutation
29 { $values { "n" "a non-negative integer" } { "seq" sequence } { "seq'" sequence } }
30 { $description "Outputs the " { $snippet "nth" } " lexicographical permutation of " { $snippet "seq" } "." }
31 { $notes "Permutations are 0-based and a bounds error will be thrown if " { $snippet "n" } " is larger than " { $snippet "seq length factorial 1 -" } "." }
32 { $examples
33     { $example "USING: math.combinatorics prettyprint ;"
34         "1 { 0 1 2 } permutation ." "{ 0 2 1 }" }
35     { $example "USING: math.combinatorics prettyprint ;"
36         "5 { \"apple\" \"banana\" \"orange\" } permutation ." "{ \"orange\" \"banana\" \"apple\" }" }
37 } ;
38
39 HELP: <permutations>
40 { $values { "seq" sequence } { "permutations" sequence } }
41 { $description "An efficient sequence containing the lexicographical permutations of " { $snippet "seq" } "." } ;
42
43 HELP: <k-permutations>
44 { $values { "seq" sequence } { "k" integer } { "permutations" sequence } }
45 { $description "An efficient sequence containing the " { $snippet "k" } " lexicographical permutations of " { $snippet "seq" } "." } ;
46
47 HELP: all-permutations
48 { $values { "seq" sequence } { "seq'" sequence } }
49 { $description "Outputs a sequence containing all permutations of " { $snippet "seq" } " in lexicographical order." }
50 { $examples
51     { $example "USING: math.combinatorics prettyprint ;"
52         "{ 0 1 2 } all-permutations ." "{ { 0 1 2 } { 0 2 1 } { 1 0 2 } { 1 2 0 } { 2 0 1 } { 2 1 0 } }" }
53 } ;
54
55 HELP: each-permutation
56 { $values { "seq" sequence } { "quot" { $quotation ( ... elt -- ... ) } } }
57 { $description "Applies the quotation to each permutation of " { $snippet "seq" } " in order." } ;
58
59 HELP: inverse-permutation
60 { $values { "seq" sequence } { "permutation" sequence } }
61 { $description "Outputs a sequence of indices representing the lexicographical permutation of " { $snippet "seq" } "." }
62 { $notes "All items in " { $snippet "seq" } " must be comparable by " { $link <=> } "." }
63 { $examples
64     { $example "USING: math.combinatorics prettyprint ;"
65         "\"dcba\" inverse-permutation ." "{ 3 2 1 0 }" }
66     { $example "USING: math.combinatorics prettyprint ;"
67         "{ 12 56 34 78 } inverse-permutation ." "{ 0 2 1 3 }" }
68 } ;
69
70 HELP: combination
71 { $values { "m" "a non-negative integer" } { "seq" sequence } { "k" "a non-negative integer" } { "seq'" sequence } }
72 { $description "Outputs the " { $snippet "mth" } " lexicographical combination of " { $snippet "seq" } " choosing " { $snippet "k" } " elements." }
73 { $notes "Combinations are 0-based and a bounds error will be thrown if " { $snippet "m" } " is larger than " { $snippet "seq length k nCk" } "." }
74 { $examples
75     { $example "USING: math.combinatorics sequences prettyprint ;"
76         "6 7 <iota> 4 combination ." "{ 0 1 3 6 }" }
77     { $example "USING: math.combinatorics prettyprint ;"
78         "0 { \"a\" \"b\" \"c\" \"d\" } 2 combination ." "{ \"a\" \"b\" }" }
79 } ;
80
81 HELP: <combinations>
82 { $values { "seq" sequence } { "k" "a non-negative integer" } { "combinations" sequence } }
83 { $description "An efficient sequence containing the combinations of " { $snippet "seq" } " choosing " { $snippet "k" } " elements." } ;
84
85 HELP: all-combinations
86 { $values { "seq" sequence } { "k" "a non-negative integer" } { "seq'" sequence } }
87 { $description "Outputs a sequence containing all combinations of " { $snippet "seq" } " choosing " { $snippet "k" } " elements, in lexicographical order." }
88 { $examples
89     { $example "USING: math.combinatorics prettyprint ;"
90         "{ \"a\" \"b\" \"c\" \"d\" } 2 all-combinations ."
91 "{
92     { \"a\" \"b\" }
93     { \"a\" \"c\" }
94     { \"a\" \"d\" }
95     { \"b\" \"c\" }
96     { \"b\" \"d\" }
97     { \"c\" \"d\" }
98 }" } } ;
99
100 HELP: each-combination
101 { $values { "seq" sequence } { "k" "a non-negative integer" } { "quot" { $quotation ( ... elt -- ... ) } } }
102 { $description "Applies the quotation to each combination of " { $snippet "seq" } " choosing " { $snippet "k" } " elements, in order." } ;
103
104 HELP: factoradic
105 { $values { "n" integer } { "factoradic" sequence } }
106 { $description "Converts a positive integer " { $snippet "n" } " to factoradic form. The factoradic of an integer is its representation based on a mixed radix numerical system that corresponds to the values of " { $snippet "n" } " factorial." }
107 { $examples { $example "USING: math.combinatorics.private prettyprint ;" "859 factoradic ." "{ 1 1 0 3 0 1 0 }" } } ;
108
109 HELP: >permutation
110 { $values { "factoradic" sequence } { "permutation" sequence } }
111 { $description "Converts an integer represented in factoradic form into its corresponding unique permutation (0-based)." }
112 { $notes "For clarification, the following two statements are equivalent:" { $code "10 factoradic >permutation" "{ 1 2 0 0 } >permutation" } }
113 { $examples { $example "USING: math.combinatorics.private prettyprint ;" "{ 0 0 0 0 } >permutation ." "{ 0 1 2 3 }" } } ;
114
115 HELP: next-permutation
116 { $values { "seq" sequence } }
117 { $description "Rearranges the elements in " { $snippet "seq" } " into the lexicographically next greater permutation of elements." }
118 { $notes "Performs an in-place modification of " { $snippet "seq" } "." }
119 { $examples { $example "USING: math.combinatorics prettyprint ;" "\"ABC\" next-permutation ." "\"ACB\"" } } ;
120
121 HELP: all-unique-permutations
122 { $values { "seq" sequence } { "seq'" sequence } }
123 { $description "Outputs a sequence containing all " { $strong "unique" } " permutations of " { $snippet "seq" } " in lexicographical order." }
124 { $examples
125     { $example "USING: math.combinatorics prettyprint ;"
126         "{ 1 1 2 } all-unique-permutations ."
127         "{ { 1 1 2 } { 1 2 1 } { 2 1 1 } }" }
128 } ;
129
130 HELP: each-unique-permutation
131 { $values { "seq" sequence } { "quot" { $quotation ( ... elt -- ... ) } } }
132 { $description "Applies the quotation to each " { $strong "unique" } " permutation of " { $snippet "seq" } " in order." } ;
133
134 HELP: all-subsets
135 { $values { "seq" sequence } { "subsets" sequence } }
136 { $description
137     "Returns all the subsets of a sequence."
138 }
139 { $examples
140     { $example
141         "USING: math.combinatorics prettyprint ;"
142         "{ 1 2 3 } all-subsets ."
143         "{ { } { 1 } { 2 } { 3 } { 1 2 } { 1 3 } { 2 3 } { 1 2 3 } }"
144     }
145 } ;
146
147 HELP: all-selections
148 { $values { "seq" sequence } { "n" integer } { "seq'" sequence } }
149 { $description
150     "Returns all the ways to take n (possibly the same) items from the "
151     "sequence of items."
152 }
153 { $examples
154     { $example
155         "USING: math.combinatorics prettyprint ;"
156         "{ 1 2 } 2 all-selections ."
157         "{ { 1 1 } { 1 2 } { 2 1 } { 2 2 } }"
158     }
159 } ;