How Many ways the pairs can be formed from the group of size odd(like 3,5), one may be left alone?
Eg: there are 5 students, so 2 pairs can be formed and one guy left alone...
|Consider (a,b,c,d,e) are 5 distinct person , According to me only 6 ways are possible
| (a,b) | (a,c) | (a,d) | (a,e) |
___________________________________________________________________
| (c,d) | (b,e) | (b,c) | (b,c)(redundant) |
| (c,e) | (b,d) | (b,e)(redundant)| (b,d)(redundant) |
| (d,e) | (d,e)(redundant)| (c,e)(redundant)| (c,d)(redundant) |
__________________________________________________________________
Is it correct? what will be the formula for this?
If there are $n$ people you can choose the first pair in $n \choose 2$ ways, then the next in $n-2 \choose 2$ ways, and so on. You have made $\frac 12(n-1)$ groups and you could have made the groups in any order, so the number of ways is $${n \choose 2}{n-2 \choose 2}\ldots {2\choose 2}\frac 1{(\frac 12(n-1))!}=\frac{n!}{2^{(\frac 12(n-1))}}\frac 1{(\frac 12(n-1))!}$$ For $n=5$ this evaluates to $15$. There are $10$ ways to pick the first pair, $3$ ways to pick the second, and you divide by $2$ for the orders to pick the pairs. There are the twelve cases you list in your table (including the redundant ones) plus three where $a$ is alone.