- #1
Raziel2701
- 128
- 0
Homework Statement
Let S(n,r) denote the number of elements of [tex]A_n[/tex] of rank r. Then S(n,r) satisfies the recursion [tex]S(n,r)=(n-r)S(n-1,r-1) + S(n-1,r)[/tex] Verify this formula for n=4 and r=0,1,2,3,4, using the values
S(3,0) = 1
S(3,1)=3
S(3,2)=1
Homework Equations
The Attempt at a Solution
So I had already done by hand what the different partitions of A_n are. The set I'm taking the partitions from is {1,2,3,4}. Now for all of the calculations using the formula I get the right number of elements, but for S(4,2) I get 7 according to the formula, when I get 3 when I calculate this by hand.
So let me show you:
The partitions of the set {1,2,3,4} of rank 2 are:
{{1,2},{3,4}}, {{1,3},{2,4}}, {{1,4},{2,3}} Correct? So am I doing something wrong? There are three elements of A_n of rank 2.