602 views
1 votes
1 votes
Q .) The number of ways can 5 letter be put in 3 boxes A, B,C such that A has at least 2 letters.

 

My approach: Number of ways to choose  2 letters out of 5 is 5C2. And for each such combination the remaining 3 letter have 3 choice.

Therefore 5C2 * 3^3, but this is incorrect. Please point out the fault in my understanding and also the correct way to solve it

1 Answer

Best answer
3 votes
3 votes

A               B   +   C

0                 5                (2^5)   => 5C0* (2^5) = 32

1                 4                (2^4)   => 5C1* (2^4) = 80

2                 3                (2^3)   => 5C2* (2^3) = 80

3                 2                (2^2)   => 5C3* (2^2) = 40

4                 1                (2^1)   => 5C4* (2^1) = 10

5                 0                (2^0)   => 5C5* (2^0) = 1

Total                            243

With A>=2, 80 + 40 + 10 + 1 = 131

Explanation:

Let me explain the case where A = 2 and B + C = 3

we can chose 2 out of 5 letters in 5C2 ways and now B+C will have 3 letters which can be put in 2^3 ways

selected by

Related questions

6 votes
6 votes
0 answers
2
[ Jiren ] asked Aug 22, 2022
483 views
How many ways are there to Distribute 7 distinct objects to 3 Distinct boxes andNo box should be EmptyAny box can be Empty
1 votes
1 votes
1 answer
4
Na462 asked Jun 8, 2018
2,601 views
How many number of ways are there to put 4 different Employees into 3 indistinguishable offices,when each office can contain any number of Employees?Please tell me the ap...