In how many ways can four distinctive letters be posted in 6 post boxes such that any two go in same post box and remaining go to different boxes

combinationscombinatoricspermutations

I have tried to solve it in two different ways. But I ended up with different answers.

  • First method
    There are $\binom{4}{2}=6$ different $2$ letter combinations from a set of $4$ letters.
    With the remaining letters, the first has $5$ possible choices, and the last one has $4$.
    So there are in total $(6×6)×5×4=720$ ways to arrange the letters in the post boxes within the given criteria.

  • Second method
    The first letter (among $4$ possible choices) has $6$ possible choices for the post box.
    The second one has $5$ possible choices among the $3$ remaining letters.
    The remaining two can go in any of the four postboxes left, in order to satisfy the requirement that there must be a post box with 2 letters.
    So, in total there are $(4×6)×(3×5)×4=1440$ ways.

I do not see any logical flaws in the arguments made in each method.
I do think the first one is correct.

Please, point out any flaws in my reasoning.

Best Answer

Denote letters in {A, B, C, D} and boxes in {u, v, x, y, z, w}.

In the 2nd way you mentioned:

  • Choose letter A, and it goes into box u.
  • Choose letter B, and it goes into box v.
  • Other two letters (C and D) goes into box x.

compared with

  • Choose letter B, and it goes into box v.
  • Choose letter A, and it goes into box u.
  • Other two letters (C and D) goes into box x.

They are two identical ways, but counted twice. (Not surprisingly, 1440 divided by 2 gives 720.)