So the problem is: What is the probability of rolling eleven dice such that their product is prime. The dice is numbered from 1 to 6 and there is an equal chance of getting each number.
So in order for the product to be prime, all but one of the numbers must be 1. The number that is not 1 must be either 2, 3, or 5. So the total number of ways that 2, 3, or 5 can be formed through multiplication is 3*11 = 33. I then divided 33 by the total number of products that can be formed, or $6^{11}$.
My original solution yields basically the same numerical value, but I'm doubtful of it's correctness. By the binomial probability theorem, the probability of rolling a 1 ten times and a number besides 1 is
$$_{11}C_{10} \left(\frac{1}{6}\right)^{10}\left(\frac{5}{6}\right)^{1} $$
Given that the remaining number is not 1, the probability of rolling 2, 3, or 5 is $\frac{3}{5}$. Hence we multiply them together to get the probability $$_{11}C_{10} \left(\frac{1}{6}\right)^{10}\left(\frac{5}{6}\right)^{1}\left(\frac{3}{5}\right)$$
This problem was originally a test question, but many of my peers got a different answer of $$ \left(\frac{(3*11)}{6^{11}}\right)\left(\frac{11!}{10!}\right)$$
If their answer is correct could someone please explain to me why mines is incorrect? I would also greatly appreciate it if you could explain how to get the correct answer.