The total number of ways in which 5 balls of $different$ colours can be distributed among 3 $persons$ so that each person gets at least one ball.
This is a case of distinct to distinct.
Case 1. groups of 1, 1, 3 gives ${5 \choose 1}$ ${4 \choose 1}$ ${3\choose 3}$= 20
Case 2 groups of 1, 2, 2 gives ${5 \choose 1}$ ${4 \choose 2}$ ${2 \choose 2}$ = 30
Now here my problem arises.
Take case 1
Assume balls to be A B C D E. You make groups A, B, CDE.
Let persons be 1 2 3.
The following distributions can be done (one column is one distribution)
PERSON 1 A A B B CDE CDE
PERSON 2 B CDE A CDE A B
PERSON 3 CDE B CDE A B A
That is in case 1, each group made can be distributed in 6 ways (3!). Therefore 20 groups can be distributed in 20 x 6 = 120 ways.
Similarly for case 2 we get 30 x 6 = 180 ways.
Therefore total is equal to 600 ways.
But the answer given is 150. Each distribution is taken as 3!/2!. Why is that ? The question specifies different colour balls and to person and persons are always different.