CombinatorialCase101: Difference between revisions
(Created page with "This case produces '''Partitions of the set''' <apll>{⍳L}</apll> into at most <apll>R</apll> parts. Partitioning a set is different from partitioning a number in that the f...") |
mNo edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
This case produces '''Partitions of the set | This case produces '''Partitions of the set <apll>{⍳M}</apll> into at most <apll>N</apll> parts'''. Partitioning a set is different from partitioning a number in that the former subdivides the set into non-empty disjoint subsets. | ||
* <apll> | * <apll>M</apll> labeled balls (1), <apll>N</apll> unlabeled boxes (0), any # balls per box (1) | ||
* Sensitive to <apll>⎕IO</apll> | * Sensitive to <apll>⎕IO</apll> | ||
* Counted result is an integer scalar | * Counted result is an integer scalar | ||
* Generated result is a nested vector of nested integer vectors. | * Generated result is a nested vector of nested integer vectors. | ||
The count for this function is <apll>+/ | The count for this function is <apll>+/M SN2¨0..N</apll> where <apll>M SN2 N</apll> returns the [https://en.wikipedia.org/wiki/Stirling_numbers_of_the_second_kind Stirling numbers of the 2<sup>nd</sup> kind]. | ||
For example: | For example: | ||
Line 91: | Line 91: | ||
1 4 2 3 | 1 4 2 3 | ||
1 2 3 4 | 1 2 3 4 | ||
⍝ Partitions of { | ⍝ Partitions of {⍳M} into at most N parts | ||
⍝ Labeled balls, unlabeled boxes, any # Balls per Box | ⍝ Labeled balls, unlabeled boxes, any # Balls per Box | ||
101 0‼4 4 | 101 0‼4 4 |
Latest revision as of 17:13, 14 May 2017
This case produces Partitions of the set {⍳M} into at most N parts. Partitioning a set is different from partitioning a number in that the former subdivides the set into non-empty disjoint subsets.
- M labeled balls (1), N unlabeled boxes (0), any # balls per box (1)
- Sensitive to ⎕IO
- Counted result is an integer scalar
- Generated result is a nested vector of nested integer vectors.
The count for this function is +/M SN2¨0..N where M SN2 N returns the Stirling numbers of the 2nd kind.
For example:
If we have 4 labeled balls (❶❷❸❹) and 2 unlabeled boxes with any # of balls per box, there are 8 (↔ +/4 SN2¨0..2 ↔ +/0 1 7) ways to meet these criteria:
|
|
|
|
|
|
|
|
The diagram above corresponds to the nested array
⍪101 1‼4 2 1 2 3 4 1 2 3 4 1 2 4 3 1 2 3 4 1 3 4 2 1 3 2 4 1 4 2 3 1 2 3 4 ⍝ Partitions of {⍳M} into at most N parts ⍝ Labeled balls, unlabeled boxes, any # Balls per Box 101 0‼4 4 15 101 0‼4 3 14 101 0‼4 2 8 101 0‼4 1 1 101 0‼4 0 0
The first column in the following table serves to number the rows and is referenced in 102. The second column illustrates the result of 101 1‼4 4 as a nested array with 15 elements. The third column includes visual separators to make it clearer where one subset stops and another begins:
1 | 1 2 3 4 | 1 2 3 4 |
2 | 1 2 3 4 | 1 2 3|4 |
3 | 1 2 4 3 | 1 2 4|3 |
4 | 1 2 3 4 | 1 2|3 4 |
5 | 1 2 3 4 | 1 2|3|4 |
6 | 1 3 4 2 | 1 3 4|2 |
7 | 1 3 2 4 | 1 3|2 4 |
8 | 1 3 2 4 | 1 3|2|4 |
9 | 1 4 2 3 | 1 4|2 3 |
10 | 1 2 3 4 | 1|2 3 4 |
11 | 1 2 3 4 | 1|2 3|4 |
12 | 1 4 2 3 | 1 4|2|3 |
13 | 1 2 4 3 | 1|2 4|3 |
14 | 1 2 3 4 | 1|2|3 4 |
15 | 1 2 3 4 | 1|2|3|4 |