CombinatorialCase110: Difference between revisions
From NARS2000
Jump to navigationJump to search
(Created page with "This case produces <apll>L</apll>-'''Permutations''' (also called '''Partial Permutations''' or '''Sequences Without Repetition''') of <apll>R</apll> items, where when <apll>L...") |
No edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
This case produces <apll> | This case produces '''<apll>M</apll>-Permutations of <apll>N</apll> items''' (also called '''Partial Permutations''' or '''Sequences Without Repetition'''), where when <apll>M=N</apll> produces the familiar permutations <apll>!N</apll>. The length of each permutation returned is always <apll>M</apll>. | ||
* <apll> | * <apll>M</apll> labeled balls (1), <apll>N</apll> labeled boxes (1), at most one ball per box (0) | ||
* Sensitive to ⎕IO | * Sensitive to <apll>⎕IO</apll> | ||
* Allows Lexicographic and Gray Code order | |||
* Counted result is an integer scalar | * Counted result is an integer scalar | ||
* Generated result is an integer matrix. | * Generated result is an integer matrix. | ||
The count for this function is <apll> | The count for this function is <apll>!⍠(-M) N</apll> where <apll>!⍠(M) N</apll> calculates the [[Variant#Rising_and_Falling_Factorials|'''Rising and Falling Factorial''']]. | ||
For example: | For example: | ||
Line 78: | Line 79: | ||
<pre> | <pre> | ||
110 1‼3 3 | 110 1‼3 ⍝ Permutations in unspecified order | ||
1 2 3 | |||
1 3 2 | |||
3 1 2 | |||
3 2 1 | |||
2 3 1 | |||
2 1 3 | |||
110 2‼3 ⍝ Permutations in Lexicographic order when L=R | |||
1 2 3 | 1 2 3 | ||
1 3 2 | |||
2 1 3 | 2 1 3 | ||
2 3 1 | 2 3 1 | ||
3 1 2 | |||
3 2 1 | |||
110 3‼3 ⍝ Permutations in Gray Code order when L=R | |||
1 2 3 | |||
1 3 2 | 1 3 2 | ||
3 1 2 | 3 1 2 | ||
3 2 1 | 3 2 1 | ||
⍝ Permutations of length | 2 3 1 | ||
⍝ Labeled balls & boxes, ≤1 # | 2 1 3 | ||
⍝ Permutations of length M of N items | |||
⍝ Labeled balls & boxes, ≤1 # Balls per Box | |||
!3 | !3 | ||
6 | 6 | ||
Line 97: | Line 112: | ||
110 1‼3 3 | 110 1‼3 3 | ||
1 2 3 | 1 2 3 | ||
1 3 2 | 1 3 2 | ||
3 1 2 | 3 1 2 | ||
3 2 1 | 3 2 1 | ||
2 3 1 | |||
2 1 3 | |||
110 1‼2 3 | 110 1‼2 3 | ||
1 2 | 1 2 | ||
2 1 | 2 1 | ||
2 3 | |||
3 2 | |||
1 3 | 1 3 | ||
3 1 | 3 1 | ||
110 2‼2 3 ⍝ Lexicographic order for Permutations with L≠R not implemented as yet | |||
3 | NONCE ERROR | ||
110 2‼2 3 | |||
∧ | |||
110 3‼2 3 ⍝ Gray Code order for Permutations with L≠R not implemented as yet | |||
NONCE ERROR | |||
110 3‼2 3 | |||
∧ | |||
110 1‼1 3 | 110 1‼1 3 | ||
1 | 1 | ||
Line 115: | Line 138: | ||
</pre> | </pre> | ||
A function to calculate the permutations of <apll> | A function to calculate the permutations of <apll>M</apll> items could be defined as | ||
<pre> | <pre> | ||
perm←{110 1‼⍵ | perm←{110 1‼⍵} | ||
</pre> | </pre> |
Latest revision as of 16:42, 21 October 2017
This case produces M-Permutations of N items (also called Partial Permutations or Sequences Without Repetition), where when M=N produces the familiar permutations !N. The length of each permutation returned is always M.
- M labeled balls (1), N labeled boxes (1), at most one ball per box (0)
- Sensitive to ⎕IO
- Allows Lexicographic and Gray Code order
- Counted result is an integer scalar
- Generated result is an integer matrix.
The count for this function is !⍠(-M) N where !⍠(M) N calculates the Rising and Falling Factorial.
For example:
If we have 3 labeled balls (❶❷❸) and 3 labeled boxes (123) with at most one ball per box, there are 6 (↔ (!⍠¯3)3 ↔ 3×2×1) ways to meet these criteria:
|
|
|
|
|
|
The diagram above corresponds to
110 1‼3 ⍝ Permutations in unspecified order 1 2 3 1 3 2 3 1 2 3 2 1 2 3 1 2 1 3 110 2‼3 ⍝ Permutations in Lexicographic order when L=R 1 2 3 1 3 2 2 1 3 2 3 1 3 1 2 3 2 1 110 3‼3 ⍝ Permutations in Gray Code order when L=R 1 2 3 1 3 2 3 1 2 3 2 1 2 3 1 2 1 3 ⍝ Permutations of length M of N items ⍝ Labeled balls & boxes, ≤1 # Balls per Box !3 6 110‼3 3 6 110 0‼3 3 6 ⍴110 1‼3 3 6 3 110 1‼3 3 1 2 3 1 3 2 3 1 2 3 2 1 2 3 1 2 1 3 110 1‼2 3 1 2 2 1 2 3 3 2 1 3 3 1 110 2‼2 3 ⍝ Lexicographic order for Permutations with L≠R not implemented as yet NONCE ERROR 110 2‼2 3 ∧ 110 3‼2 3 ⍝ Gray Code order for Permutations with L≠R not implemented as yet NONCE ERROR 110 3‼2 3 ∧ 110 1‼1 3 1 2 3
A function to calculate the permutations of M items could be defined as
perm←{110 1‼⍵}