5

If I have three letters, A, B, and C, and I want to use each letter exactly three times (9 places), what is the probability that I randomly pull out a nine-string of letters that starts with ABC?

I need help figuring out

  1. How to find out how many possibilities there are for nine places, three letters that can be repeated exactly three times
  2. What is the probability that my randomly selected string will start with ABC.

2 Answers2

1

Total number of possibilities is $T=\frac{9!}{3!3!3!}$. Number of cases where string starts with "ABC" is $S=\frac{6!}{2!2!2!}$. So probability is $\frac{S}{T}$. All this comes from the basic formula that if we have $n$ items with $r_1$ of one type, $r_2$ of another and so on such that $r_1+r_2+...r_k=n$. Then number of distinct permutation of these $n$ items is given by $\frac{n!}{r_1!r_2!...r_k!}$.

0

There are $9!$ ways to arrange $9$ objects. If $3$ are the same, then $1/3!=1/6$ of these will be the same. For example consider $\{a_0,a_1,b\}, \{a_1,a_0,b\}, \{a_0,b,a_1\}, \{a_1,b,a_0\}, \{b,a_0,a_1\}, \{b,a_1,a_0\}$. There are $3!=6$ possibilities, but if we let $a_1=a_0$, then we only have $3$ possibilities, which is $3!/2!$. So with $\{A,A,A,B,B,B,C,C,C\}$ there are $9!/(3!3!3!)=1680$ possibilities.

Of these, $3/9=1/3$ start with an $A$, of these $3/8$ have a $B$ second, and $3/7$ have a $C$ third. So the final answer is $9!/(3!3!3!) \times (3.3.3)/(9.8.7)=6!/(2!2!2!)=90$.

JMP
  • 21,771