2

There are six balls and six boxes numbered 1 to 6.

So I have to find the probablity that at least 2 balls are placed in corresponding number boxes.

My approach.

Out of 6 balls , select 2 which will be placed in right boxes.

So it will be $\binom62$.

Now remaining 4 balls can be arranged in any ways so it will be .

So total will be $\binom62 \times 4!$.

And the denominator will be $6!$.

So answer comes to be $0.5$ .

But the answer is $1/60$ .

Where am i wrong ?

Because i think that i have done it a right way.

Thanks in advance.

Ricbit
  • 1,080
vikiiii
  • 2,681
  • 2
  • 34
  • 45

1 Answers1

2

You’re counting many arrangements more than once. As an extreme case, consider the arrangement that has every ball in the right box: it gets counted $\binom62=15$ times, once for every pair of balls.

It’s probably easier to count the arrangements that don’t have at least two balls in the right boxes; here’s a start. Those arrangements are of two types: the derangements of the $6$ balls $-$ the arrangements that have no ball in the right box $-$ and the arrangements that have exactly one ball in the right box. The derangements are a bit messy to count, but the link has a good deal of information to help you with that. Once you know how to count derangements, you can count the arrangements that have exactly one ball in the right box: multiply $6$ ways to choose the ball that’s correctly placed by the number of derangements of the other $5$ balls.

Brian M. Scott
  • 616,228