Question

Suppose, there are N ordered boxes (Box1, Box2, Box3, ... , BoxN). My question is, what is the probability of the event that strictly only M boxes are in their rightful position? (M boxes need not be contiguous).

For example, there are three boxes, ie N=3. Permutations are:

([Box1,Box2,Box3] [Box1,Box3,Box2] [Box2,Box1,Box3] [Box2,Box3,Box1] [Box3,Box1,Box2] [Box3,Box2,Box1])

If M=1, the favourable outcomes are ([Box1,Box3,Box2] [Box3,Box2,Box1] [Box2,Box1,Box3]). Hence, probability that strictly only one box is in its rightful position = 3/6.

I'll appreciate any help. I just can't find the solution.

Was it helpful?

Solution

You can determine the probability inductively, based on the first slot holding the correct item or not: p(n,m) = (1/n)*p(n-1,m-1) + ((n-1)/n)*p(n-1,m).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top