[Math] computing probability that at least one letter matches with envelope

probability

Four letters to different insurers are prepared along with
accompanying envelopes. The letters are put into the envelopes
randomly. Calculate the probability that at least one letter ends up
in its accompanying envelope.

Attempt

Since this is tedioues, we can do

$$ P(at \; least \; one ) = 1 – P( no \; match ) $$

We notice that sample space is $4!$ since for letter 1 it has 4 choices but letter 2 has 3 choices and so on. Now, we wanna count in how many ways we get no match.

Let start with first one, we only have $3$ choices for this since it can go to either 2,3,4 envelope.

Now, as for the second one, we have to possibilities. If the first letter went to the second envelope, then the second letter now will have 3 different choices, but if the first letter didnt go to second letter, then the second letter will have 2 choices. Assume the former. Then we have 3 choices for this stage.

Now, for the third one (envelope 2 is taken already and assume letter 2 went to letter 1) then it would have 1 choice only and

last one must go to envelope 3.

Thus, we have $3 \times 3 \times 1 \times 1 = 9$ choices in total

Thus,

$$ P(at \; least \; 1 \; letter) = 1 – \frac{9}{24} $$

IS this correct? I still feel as is something wrong because I assumed the letter 2 went to 1 and letter 1 went to envelope 2. Can we do that?

Best Answer

The probability of at least one letter ending in the correct envelope is equal to 1 - p(no letter ends up in correct envelope)

the probability of no letter ending up in its correct envelope is given by derangement. The derangement of 4 comes out to be

$$ D(4) = 4! \left( 1-\frac{1}{1!}+\frac{1}{2!}-\frac{1}{3!}+\frac{1}{4!} \right) $$ $$ = 9$$

Therefore, the probability of at least one letter ending in the correct envelope is

$$ P = 1- \frac{9}{24} $$ $$ = \frac{15}{24} $$

The problem with your solution is that it does not take into account the different branches of decisions that can be made while placing letters. Such a method would ultimately reduce to just counting the cases in which derangement happens.

Related Question