406 views

2 Answers

Best answer
6 votes
6 votes
The number of non-empty partitions of a set of size $n$ (same as the number of equivalence relations on the set) is given by the $n^{th}$ Bell number denoted by $B_n$. We can use Bell triangle to derive $B_n.$ Bell number $B_n$ is given by the first number in the $n^{th}$ row (starting from 0) of the Bell triangle which can be formed by the following equation.

$E(i,j) = E(i,j-1) + E(i-1,j-1), j > 1$

$E(i,1) = E(i-1,i-1) = B_n$ (last entry in the previous row)

$E(0,0) = 1$

Thus, we can form the Bell triangle as

$\begin{array}{cccccc}
1 \\
1 & 2\\
2&3&5\\
5&7&10&15 \\
15&20&27&37&52\\
52
\end{array}
$

Thus, $B_5 = 52$
selected by
4 votes
4 votes

Different possible partitions are
5                              => one partition with five elements
4+1  ,       3+2         => two partitions with 4,1 or 3,2 elements
3+1+1   ,    2+2+1  => 3 partitions with  3,2  or 2,2,1 elements
2+1+1+1                 => 4 partitions with 2,1,1,1 elements
1+1+1+1+1            => 5 partitions with one elements each.

Now we just need to calculate the number of ways of placing the five elements of our set into these sized bins.

5 (one partition with 5 elements) = 5c5 = 1 way
4+1 = 5c4 = 5 ways
3+2  = 5c3 = 10 ways
3+1+1 = 5c3 = 10 ways
2+2+1 = 5c2 * 3c2 / 2! = 15ways
2+1+1+1 = 5c2  = 10 ways
1+1+1+1+1 = 1 way

total = 1+5+10+10+15+10+1 = 52 ways 

Answer:

Related questions

2 votes
2 votes
1 answer
1
gatecse asked Jun 28, 2020
222 views
The minimum number of people that must be in a room to ensure that at least three were born on the same day of the week is $\_\_\_\_\_$
4 votes
4 votes
1 answer
2
gatecse asked Jun 28, 2020
299 views
Consider a set $A$ with $6$ elements. Let $N_1$ denote the number of bijective functions from $A$ to $A$ and let $N_2$ denote the number of onto (surjective) functions fr...
4 votes
4 votes
1 answer
3
gatecse asked Jun 28, 2020
190 views
Number of bit strings of length $10$ that do not end in “$111$” is $\_\_\_\_$
7 votes
7 votes
1 answer
4
gatecse asked Jun 28, 2020
393 views
The number of bit strings of length $6$ that do not contain “$1111$” as a substring is $\_\_\_\_$