A postman has to deliver four letters to four different houses in a street. Unfortunately the rain has erased the addresses, so he just distributes them randomly, one letter per house. What is the probability that every house gets the wrong letter (you should express it as a percentage)?
This problem is not original. It is roughly the level of difficulty of a standard problem from the Intermediate Challenge.This problem is part of this set .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
N o o f w a y s t o d i s a r r a n g e n i t e m s A = ( n ! ) [ 0 ! 1 − 1 ! 1 + 2 ! 1 − 3 ! 1 + 4 ! 1 . . . . . n ! ( − 1 ) n ] I n o u r c a s e n = 4 A = ( 4 ! ) [ 0 ! 1 − 1 ! 1 + 2 ! 1 − 3 ! 1 + 4 ! 1 ] = 9 N o w P r o b a b i l i t y = 4 ! 9 = 0 . 3 7 5 P e r c e n t a g e = 3 7 . 5 %
Simple standard approach.
Let the four letters be { A , B , C , D } .
1 s t letter A can be delivered to 3 houses.
2 n d letter corresponding to the house where letter A had been delivered could be delivered to any 3 remaining houses.
The remaining letters can be delivered in only one way.
Hence total ways to deliver letter such that no letter is delivered correctly = 3 × 3
Required probability = 4 ! 9 × 1 0 0 = 2 4 9 0 0 = 3 7 . 5 %
Problem Loading...
Note Loading...
Set Loading...
Using complementary counting..... t o t a l c h o i c e s = 4 ! = 2 4
c h o i c e s f o r a l l c o r r e c t = 1
c h o i c e s f o r 3 c o r r e c t = 0
c h o i c e s f o r 2 c o r r e c t = 6 (you correctly allocate 2 letters in ( 2 4 ) ways, then you are left with 1 possibility to satisfy the condition of 2 correctly sent letters)
c h o i c e s f o r 1 c o r r e c t = 8 (correctly send a letter, then you are left with 2 choices to incorrectly send the next, then you are left with 1 possibility to satisfy the condition of 1 correctly sent letter. This is done for 4 letters, so we calculate 2 × 4)
∴ p ( n o n e c o r r e c t l y s e n t ) = 2 4 9 = 8 3 = 3 7 . 5 p e r c e n t